* [PATCH i-g-t] tests/xe_gt_freq: Use sync reset
@ 2024-09-25 22:09 Vinay Belgaumkar
2024-09-26 9:53 ` ✓ Fi.CI.BAT: success for " Patchwork
` (8 more replies)
0 siblings, 9 replies; 13+ messages in thread
From: Vinay Belgaumkar @ 2024-09-25 22:09 UTC (permalink / raw)
To: intel-gfx, igt-dev; +Cc: Vinay Belgaumkar, Badal Nilawar
Some recent WAs reduce the GT freq during driver load/reset. Use sync
reset so that we give enough time for GT frequency to be restored after
reset has completed.
Also, stash/restore frequencies per GT as they can be different.
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2676
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2711
Cc: Badal Nilawar <badal.nilawar@intel.com>
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
---
tests/intel/xe_gt_freq.c | 24 +++++++++++++++++-------
1 file changed, 17 insertions(+), 7 deletions(-)
diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c
index 427e12c55..de4d111ea 100644
--- a/tests/intel/xe_gt_freq.c
+++ b/tests/intel/xe_gt_freq.c
@@ -341,7 +341,8 @@ static void test_reset(int fd, int gt_id, int cycles)
igt_assert_f(get_freq(fd, gt_id, "cur") == rpn,
"Failed after %d good cycles\n", i);
- xe_force_gt_reset_async(fd, gt_id);
+ xe_force_gt_reset_sync(fd, gt_id);
+
usleep(SLPC_FREQ_LATENCY_US);
igt_assert_f(get_freq(fd, gt_id, "min") == rpn,
@@ -433,16 +434,23 @@ igt_main
int fd;
int gt;
struct drm_xe_engine_class_instance *hwe;
- uint32_t stash_min;
- uint32_t stash_max;
+ uint32_t *stash_min, *stash_max;
+ int num_gts;
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
igt_require(xe_sysfs_gt_has_node(fd, 0, "freq0"));
+ num_gts = xe_number_gt(fd);
+
/* The defaults are the same. Stashing the gt0 is enough */
- stash_min = get_freq(fd, 0, "min");
- stash_max = get_freq(fd, 0, "max");
+ stash_min = (uint32_t *) malloc(sizeof(uint32_t) * num_gts);
+ stash_max = (uint32_t *) malloc(sizeof(uint32_t) * num_gts);
+
+ xe_for_each_gt(fd, gt) {
+ stash_min[gt] = get_freq(fd, gt, "min");
+ stash_max[gt] = get_freq(fd, gt, "max");
+ }
}
igt_subtest("throttle_basic_api") {
@@ -517,9 +525,11 @@ igt_main
igt_fixture {
xe_for_each_gt(fd, gt) {
- set_freq(fd, gt, "min", stash_min);
- set_freq(fd, gt, "max", stash_max);
+ set_freq(fd, gt, "max", stash_max[gt]);
+ set_freq(fd, gt, "min", stash_min[gt]);
}
+ free(stash_min);
+ free(stash_max);
drm_close_driver(fd);
}
}
--
2.38.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* ✓ Fi.CI.BAT: success for tests/xe_gt_freq: Use sync reset 2024-09-25 22:09 [PATCH i-g-t] tests/xe_gt_freq: Use sync reset Vinay Belgaumkar @ 2024-09-26 9:53 ` Patchwork 2024-09-26 10:21 ` ✗ CI.xeBAT: failure " Patchwork ` (7 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-09-26 9:53 UTC (permalink / raw) To: Vinay Belgaumkar; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8600 bytes --] == Series Details == Series: tests/xe_gt_freq: Use sync reset URL : https://patchwork.freedesktop.org/series/139120/ State : success == Summary == CI Bug Log - changes from CI_DRM_15446 -> IGTPW_11806 ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_11806 need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11806, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_11806/index.html Participating hosts (38 -> 36) ------------------------------ Missing (2): bat-rpls-4 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11806: ### IGT changes ### #### Warnings #### * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-twl-2: [SKIP][1] ([i915#11731]) -> [SKIP][2] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-twl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-twl-1: [SKIP][3] ([i915#11731]) -> [SKIP][4] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-twl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html Known issues ------------ Here are the changes found in IGTPW_11806 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-6: [PASS][5] -> [DMESG-WARN][6] ([i915#10341]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-mtlp-6/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-mtlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@hangcheck: - bat-mtlp-6: [PASS][7] -> [DMESG-WARN][8] ([i915#11349]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@sanitycheck: - bat-apl-1: [PASS][9] -> [DMESG-WARN][10] ([i915#11621]) +46 other tests dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@i915_selftest@live@sanitycheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-apl-1/igt@i915_selftest@live@sanitycheck.html * igt@kms_busy@basic@flip: - bat-apl-1: [PASS][11] -> [DMESG-WARN][12] ([i915#180] / [i915#1982]) +4 other tests dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_busy@basic@flip.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-apl-1/igt@kms_busy@basic@flip.html * igt@kms_flip@basic-flip-vs-modeset@b-dp1: - bat-apl-1: [PASS][13] -> [DMESG-WARN][14] ([i915#11621] / [i915#180]) +32 other tests dmesg-warn [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1: - bat-apl-1: [PASS][15] -> [DMESG-WARN][16] ([i915#11621] / [i915#180] / [i915#1982]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-apl-1: [PASS][17] -> [DMESG-WARN][18] ([i915#180]) +9 other tests dmesg-warn [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html #### Possible fixes #### * igt@i915_selftest@live: - bat-twl-1: [INCOMPLETE][19] ([i915#9413]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-1/igt@i915_selftest@live.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-twl-1/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_lrc: - bat-twl-1: [INCOMPLETE][21] ([i915#10886] / [i915#9413]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-1/igt@i915_selftest@live@gt_lrc.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-twl-1/igt@i915_selftest@live@gt_lrc.html #### Warnings #### * igt@gem_mmap@basic: - bat-arls-2: [SKIP][23] ([i915#4083]) -> [SKIP][24] ([i915#11343] / [i915#4083]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-2/igt@gem_mmap@basic.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-arls-2/igt@gem_mmap@basic.html - bat-arls-1: [SKIP][25] ([i915#4083]) -> [SKIP][26] ([i915#11343] / [i915#4083]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-1/igt@gem_mmap@basic.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-arls-1/igt@gem_mmap@basic.html - bat-arls-5: [SKIP][27] ([i915#4083]) -> [SKIP][28] ([i915#11343] / [i915#4083]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-5/igt@gem_mmap@basic.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-arls-5/igt@gem_mmap@basic.html * igt@i915_pm_rpm@module-reload: - bat-apl-1: [DMESG-WARN][29] ([i915#11621]) -> [DMESG-WARN][30] ([i915#11621] / [i915#180]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@i915_pm_rpm@module-reload.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-apl-1/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - bat-arls-5: [DMESG-WARN][31] ([i915#10341] / [i915#12133]) -> [ABORT][32] ([i915#12061] / [i915#12133]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-5/igt@i915_selftest@live.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-arls-5/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-WARN][33] ([i915#10341] / [i915#11637]) -> [ABORT][34] ([i915#12061]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-5/igt@i915_selftest@live@workarounds.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/bat-arls-5/igt@i915_selftest@live@workarounds.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#10886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10886 [i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343 [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637 [i915#11731]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11731 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8032 -> IGTPW_11806 CI-20190529: 20190529 CI_DRM_15446: 6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11806: 38b2e82bf1fc1b891e22947ab39bb1a8407db805 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8032: 8032 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/index.html [-- Attachment #2: Type: text/html, Size: 11209 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.xeBAT: failure for tests/xe_gt_freq: Use sync reset 2024-09-25 22:09 [PATCH i-g-t] tests/xe_gt_freq: Use sync reset Vinay Belgaumkar 2024-09-26 9:53 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-09-26 10:21 ` Patchwork 2024-09-27 18:02 ` Belgaumkar, Vinay 2024-09-26 12:43 ` ✗ Fi.CI.IGT: " Patchwork ` (6 subsequent siblings) 8 siblings, 1 reply; 13+ messages in thread From: Patchwork @ 2024-09-26 10:21 UTC (permalink / raw) To: Vinay Belgaumkar; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4459 bytes --] == Series Details == Series: tests/xe_gt_freq: Use sync reset URL : https://patchwork.freedesktop.org/series/139120/ State : failure == Summary == CI Bug Log - changes from XEIGT_8032_BAT -> XEIGTPW_11806_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11806_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11806_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11806_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-dg2-oem2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html #### Warnings #### * igt@xe_pat@pat-index-xelpg: - bat-bmg-1: [SKIP][3] ([Intel XE#2236]) -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm_residency@gt-c6-on-idle: - bat-adlp-vf: [SKIP][5] ([Intel XE#2468]) -> [SKIP][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-adlp-vf/igt@xe_pm_residency@gt-c6-on-idle.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/bat-adlp-vf/igt@xe_pm_residency@gt-c6-on-idle.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@xe_pat@pat-index-xelpg: - {bat-bmg-2}: [SKIP][7] ([Intel XE#2236]) -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html Known issues ------------ Here are the changes found in XEIGTPW_11806_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_psr@psr-primary-page-flip@edp-1: - bat-lnl-1: [PASS][9] -> [FAIL][10] ([Intel XE#1649]) +5 other tests fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-lnl-1/igt@kms_psr@psr-primary-page-flip@edp-1.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/bat-lnl-1/igt@kms_psr@psr-primary-page-flip@edp-1.html #### Warnings #### * igt@kms_frontbuffer_tracking@basic: - bat-lnl-2: [SKIP][11] ([Intel XE#2235]) -> [SKIP][12] ([Intel XE#2235] / [Intel XE#2548]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649 [Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2468 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 Build changes ------------- * IGT: IGT_8032 -> IGTPW_11806 * Linux: xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 -> xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da IGTPW_11806: 38b2e82bf1fc1b891e22947ab39bb1a8407db805 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8032: 8032 xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47: abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da: 6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/index.html [-- Attachment #2: Type: text/html, Size: 5328 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: ✗ CI.xeBAT: failure for tests/xe_gt_freq: Use sync reset 2024-09-26 10:21 ` ✗ CI.xeBAT: failure " Patchwork @ 2024-09-27 18:02 ` Belgaumkar, Vinay 0 siblings, 0 replies; 13+ messages in thread From: Belgaumkar, Vinay @ 2024-09-27 18:02 UTC (permalink / raw) To: igt-dev [-- Attachment #1: Type: text/plain, Size: 4798 bytes --] On 9/26/2024 3:21 AM, Patchwork wrote: > Project List - Patchwork *Patch Details* > *Series:* tests/xe_gt_freq: Use sync reset > *URL:* https://patchwork.freedesktop.org/series/139120/ > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/index.html > > > CI Bug Log - changes from XEIGT_8032_BAT -> XEIGTPW_11806_BAT > > > Summary > > *FAILURE* > > Serious unknown changes coming with XEIGTPW_11806_BAT absolutely need > to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_11806_BAT, please notify your bug team > (I915-ci-infra@lists.freedesktop.org) to allow them > to document this new failure mode, which will reduce false positives > in CI. > > > Participating hosts (9 -> 9) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > XEIGTPW_11806_BAT: > > > IGT changes > > > Possible regressions > > * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: > o bat-dg2-oem2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> > +1 other test incomplete > Failure is not related to this change. This patch only affects a specific xe_gt_freq subtest. Thanks, Vinay. > * > > > Warnings > > * > > igt@xe_pat@pat-index-xelpg: > > o bat-bmg-1: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html> > (Intel XE#2236 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html> > * > > igt@xe_pm_residency@gt-c6-on-idle: > > o bat-adlp-vf: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-adlp-vf/igt@xe_pm_residency@gt-c6-on-idle.html> > (Intel XE#2468 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2468>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/bat-adlp-vf/igt@xe_pm_residency@gt-c6-on-idle.html> > > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@xe_pat@pat-index-xelpg: > o {bat-bmg-2}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html> > (Intel XE#2236 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html> > > > Known issues > > Here are the changes found in XEIGTPW_11806_BAT that come from known > issues: > > > IGT changes > > > Issues hit > > * igt@kms_psr@psr-primary-page-flip@edp-1: > o bat-lnl-1: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-lnl-1/igt@kms_psr@psr-primary-page-flip@edp-1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/bat-lnl-1/igt@kms_psr@psr-primary-page-flip@edp-1.html> > (Intel XE#1649 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649>) +5 > other tests fail > > > Warnings > > * igt@kms_frontbuffer_tracking@basic: > o bat-lnl-2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html> > (Intel XE#2235 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html> > (Intel XE#2235 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235> / > Intel XE#2548 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548>) > > {name}: This element is suppressed. This means it is ignored when > computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Build changes > > * IGT: IGT_8032 -> IGTPW_11806 > * Linux: xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 -> > xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da > > IGTPW_11806: 38b2e82bf1fc1b891e22947ab39bb1a8407db805 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8032: 8032 > xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47: > abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 > xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da: > 6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da > [-- Attachment #2: Type: text/html, Size: 7482 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/xe_gt_freq: Use sync reset 2024-09-25 22:09 [PATCH i-g-t] tests/xe_gt_freq: Use sync reset Vinay Belgaumkar 2024-09-26 9:53 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-09-26 10:21 ` ✗ CI.xeBAT: failure " Patchwork @ 2024-09-26 12:43 ` Patchwork 2024-09-27 18:04 ` Belgaumkar, Vinay 2024-09-26 14:36 ` [PATCH i-g-t] " Rodrigo Vivi ` (5 subsequent siblings) 8 siblings, 1 reply; 13+ messages in thread From: Patchwork @ 2024-09-26 12:43 UTC (permalink / raw) To: Vinay Belgaumkar; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100252 bytes --] == Series Details == Series: tests/xe_gt_freq: Use sync reset URL : https://patchwork.freedesktop.org/series/139120/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15446_full -> IGTPW_11806_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11806_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11806_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_11806/index.html Participating hosts (8 -> 8) ------------------------------ Additional (1): shard-glk-0 Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11806_full: ### IGT changes ### #### Possible regressions #### * igt@gem_busy@close-race: - shard-tglu: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-7/igt@gem_busy@close-race.html * igt@gem_exec_schedule@preemptive-hang@bcs0: - shard-mtlp: [PASS][2] -> [INCOMPLETE][3] +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-4/igt@gem_exec_schedule@preemptive-hang@bcs0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@gem_exec_schedule@preemptive-hang@bcs0.html * igt@gem_softpin@noreloc-s3: - shard-snb: [PASS][4] -> [DMESG-WARN][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb4/igt@gem_softpin@noreloc-s3.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb5/igt@gem_softpin@noreloc-s3.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: [PASS][6] -> [ABORT][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb7/igt@i915_suspend@basic-s2idle-without-i915.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb6/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_atomic_transition@modeset-transition-nonblocking: - shard-tglu: NOTRUN -> [SKIP][8] +24 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_atomic_transition@modeset-transition-nonblocking.html * igt@kms_cursor_crc@cursor-sliding-128x128: - shard-tglu: [PASS][9] -> [SKIP][10] +10 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x128.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x128.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-edp1: - shard-mtlp: [PASS][11] -> [FAIL][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-edp1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-edp1.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][13] +11 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][14] +19 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_plane@pixel-format-source-clamping: - shard-tglu: [PASS][15] -> [ABORT][16] +1 other test abort [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_plane@pixel-format-source-clamping.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-6/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][17] +24 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][18] +4 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-on.html #### Warnings #### * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [SKIP][19] ([i915#5286]) -> [SKIP][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-tglu: [SKIP][21] ([i915#6095]) -> [SKIP][22] +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: [SKIP][23] ([i915#3116] / [i915#3299]) -> [SKIP][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_content_protection@dp-mst-type-0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-tglu: [SKIP][25] ([i915#3555]) -> [SKIP][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-5/igt@kms_cursor_crc@cursor-random-max-size.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: [SKIP][27] ([i915#11453]) -> [SKIP][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: [SKIP][29] ([i915#4103]) -> [SKIP][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: [SKIP][31] ([i915#5354]) -> [SKIP][32] +6 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-tglu: [SKIP][33] ([i915#9906]) -> [SKIP][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-9/igt@kms_vrr@seamless-rr-switch-virtual.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-virtual.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_create@create-ext-cpu-access-sanity-check: - {shard-tglu-1}: NOTRUN -> [SKIP][35] +60 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_exec_fair@basic-throttle: - {shard-tglu-1}: NOTRUN -> [FAIL][36] +1 other test fail [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-1/igt@gem_exec_fair@basic-throttle.html Known issues ------------ Here are the changes found in IGTPW_11806_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#8411]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#8411]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@api_intel_bb@object-reloc-keep-cache.html * igt@drm_fdinfo@most-busy-check-all: - shard-rkl: NOTRUN -> [FAIL][39] ([i915#12179]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][40] ([i915#7742]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#8414]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@drm_fdinfo@virtual-busy-hang.html * igt@drm_fdinfo@virtual-busy-idle: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#8414]) +14 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@drm_fdinfo@virtual-busy-idle.html * igt@fbdev@nullptr: - shard-dg2: [PASS][43] -> [SKIP][44] ([i915#2582]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@fbdev@nullptr.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@fbdev@nullptr.html - shard-tglu: [PASS][45] -> [SKIP][46] ([i915#2582]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-9/igt@fbdev@nullptr.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@fbdev@nullptr.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#9323]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#6335]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html - shard-dg2: NOTRUN -> [ABORT][49] ([i915#9846]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html - shard-rkl: NOTRUN -> [SKIP][50] ([i915#6335]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_engines@invalid-engines: - shard-tglu: NOTRUN -> [FAIL][51] ([i915#12027]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@gem_ctx_engines@invalid-engines.html - shard-mtlp: [PASS][52] -> [FAIL][53] ([i915#12027]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-2/igt@gem_ctx_engines@invalid-engines.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_freq@sysfs: - shard-dg2: [PASS][54] -> [FAIL][55] ([i915#9561]) +1 other test fail [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-8/igt@gem_ctx_freq@sysfs.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@gem_ctx_freq@sysfs.html * igt@gem_ctx_persistence@heartbeat-many: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8555]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@hostile: - shard-snb: NOTRUN -> [SKIP][57] ([i915#1099]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb2/igt@gem_ctx_persistence@hostile.html - shard-mtlp: NOTRUN -> [FAIL][58] ([i915#11980]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#280]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][60] ([i915#280]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#280]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4812]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-15/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4525]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@gem_exec_balancer@parallel.html * igt@gem_exec_big@single: - shard-tglu: NOTRUN -> [ABORT][64] ([i915#11713]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-2/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#6334]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@gem_exec_capture@capture-invisible.html - shard-rkl: NOTRUN -> [SKIP][66] ([i915#6334]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@gem_exec_capture@capture-invisible.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#6334]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#6334]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-deadline: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3539] / [i915#4852]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3539] / [i915#4852]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@gem_exec_fair@basic-none-rrul.html - shard-tglu: NOTRUN -> [FAIL][71] ([i915#2842]) +1 other test fail [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3539]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@gem_exec_fair@basic-pace-solo.html - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4473]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-rkl: [PASS][74] -> [FAIL][75] ([i915#2842]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-3/igt@gem_exec_fair@basic-pace@vcs0.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4473] / [i915#4771]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle: - shard-rkl: NOTRUN -> [FAIL][77] ([i915#2842]) +3 other tests fail [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@gem_exec_fair@basic-throttle.html - shard-dg1: NOTRUN -> [SKIP][78] ([i915#3539]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3281]) +6 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3281]) +6 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-read-active.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3281]) +10 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3281]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4537] / [i915#4812]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4537] / [i915#4812]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4860]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4860]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4860]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#4613]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#4613]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@gem_lmem_swapping@smem-oom.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4613]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@verify-ccs: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#12193]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4565]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_mmap@big-bo: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4083]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4077]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4077]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-15/igt@gem_mmap_gtt@basic-small-copy-odd.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4083]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@gem_mmap_wc@bad-object.html - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4083]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@gem_mmap_wc@bad-object.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#3282]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#3282]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3282]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-regular-context-1: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4270]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@display-protected-crc: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#4270]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-6/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4270]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-10/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4270]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3282]) +5 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#5190] / [i915#8428]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#8428]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4079]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-12/igt@gem_render_tiled_blits@basic.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4885]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@gem_softpin@evict-snoop.html - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#4885]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4885]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4079]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@gem_tiled_pread_basic.html - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4079]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@gem_tiled_pread_basic.html * igt@gem_tiling_max_stride: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4077]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@gem_tiling_max_stride.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#3297]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#3297]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3282] / [i915#3297]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3297]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@basic-rejected: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#2527]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-snb: NOTRUN -> [SKIP][120] +106 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb6/igt@gen9_exec_parse@basic-rejected-ctx-param.html - shard-tglu: NOTRUN -> [SKIP][121] ([i915#2527] / [i915#2856]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#2856]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html - shard-dg1: NOTRUN -> [SKIP][123] ([i915#2527]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#2856]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-snb: NOTRUN -> [SKIP][125] ([i915#6227]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb6/igt@i915_module_load@load.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#6227]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@i915_module_load@load.html - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6227]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@i915_module_load@load.html - shard-rkl: NOTRUN -> [SKIP][128] ([i915#6227]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [PASS][129] -> [ABORT][130] ([i915#9820]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#8399]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#6590]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu: NOTRUN -> [SKIP][133] ([i915#6590]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6590]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#5723]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock: - shard-snb: NOTRUN -> [DMESG-WARN][136] ([i915#9311]) +1 other test dmesg-warn [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb7/igt@i915_selftest@mock.html - shard-tglu: NOTRUN -> [DMESG-WARN][137] ([i915#9311]) +1 other test dmesg-warn [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@i915_selftest@mock.html - shard-mtlp: NOTRUN -> [DMESG-WARN][138] ([i915#9311]) +1 other test dmesg-warn [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@i915_selftest@mock.html - shard-dg1: NOTRUN -> [DMESG-WARN][139] ([i915#1982] / [i915#9311]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@i915_selftest@mock.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][140] ([i915#9311]) +1 other test dmesg-warn [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@i915_selftest@mock@memory_region.html - shard-rkl: NOTRUN -> [DMESG-WARN][141] ([i915#9311]) +1 other test dmesg-warn [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@i915_selftest@mock@memory_region.html - shard-dg1: NOTRUN -> [DMESG-WARN][142] ([i915#9311]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@i915_selftest@mock@memory_region.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#7707]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#4212]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html - shard-dg2: NOTRUN -> [SKIP][145] ([i915#4212]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html - shard-dg1: NOTRUN -> [SKIP][146] ([i915#4212]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#8709]) +11 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#8709]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#8709]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3555]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][151] ([i915#9531]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#1769] / [i915#3555]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#1769] / [i915#3555]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][154] ([i915#1769] / [i915#3555]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][155] ([i915#1769] / [i915#3555]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4: - shard-dg1: [PASS][156] -> [FAIL][157] ([i915#5956]) +1 other test fail [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][158] +15 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][159] -> [FAIL][160] ([i915#5138]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#5286]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#5286]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#4538] / [i915#5286]) +5 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3638]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3638]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#5190] / [i915#9197]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#4538] / [i915#5190]) +7 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#4538]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#6095]) +127 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#6095]) +49 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#10307] / [i915#6095]) +150 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#12042]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#12042]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#12042]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#12042]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#12042]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-19/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#6095]) +103 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#6095]) +80 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#11616] / [i915#7213]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#3742]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#4087]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#7828]) +9 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#7828]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#7828]) +5 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#7828]) +8 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#7828]) +8 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#9979]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_color@deep-color.html * igt@kms_color@legacy-gamma: - shard-dg2: [PASS][189] -> [SKIP][190] ([i915#5354]) +9 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-5/igt@kms_color@legacy-gamma.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_color@legacy-gamma.html * igt@kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#7116] / [i915#9424]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@kms_content_protection@atomic.html - shard-rkl: NOTRUN -> [SKIP][192] ([i915#7118] / [i915#9424]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#6944] / [i915#9424]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-4/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3116]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][195] ([i915#3116] / [i915#3299]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3299]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#9424]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_content_protection@mei-interface.html - shard-rkl: NOTRUN -> [SKIP][198] ([i915#9424]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#6944] / [i915#9424]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8814]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#11453]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x512.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#11453]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_cursor_crc@cursor-random-512x512.html - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3359]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3555]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8814]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#4213]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg2: NOTRUN -> [SKIP][207] ([i915#4103] / [i915#4213]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][208] ([i915#4103]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][209] ([i915#4103] / [i915#4213]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-tglu: NOTRUN -> [SKIP][210] ([i915#4103]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#9723]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#9833]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#9723]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][214] ([i915#9723]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3804]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3804]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#8812]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3840]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#3840]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#3840]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][221] ([i915#3840]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3840]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc.html - shard-dg2: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_dsc@dsc-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#3840]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#1839]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#1839]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#658]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][231] ([i915#658]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][232] ([i915#658]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#658]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#3637]) +7 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3637]) +5 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@blocking-wf_vblank: - shard-mtlp: [PASS][236] -> [FAIL][237] ([i915#2122]) +3 other tests fail [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-2/igt@kms_flip@blocking-wf_vblank.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-3/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: [PASS][238] -> [FAIL][239] ([i915#2122]) +3 other tests fail [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html - shard-rkl: [PASS][240] -> [FAIL][241] ([i915#2122]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1: - shard-snb: [PASS][242] -> [FAIL][243] ([i915#2122]) +1 other test fail [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][244] ([i915#11961]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a2.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1: - shard-mtlp: [PASS][245] -> [FAIL][246] ([i915#12138]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1: - shard-tglu: [PASS][247] -> [FAIL][248] ([i915#2122]) +2 other tests fail [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#2672]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#2672]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html - shard-tglu: NOTRUN -> [SKIP][253] ([i915#2587] / [i915#2672] / [i915#3555]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#2672]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8813]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8810]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-dg2: [PASS][258] -> [SKIP][259] ([i915#3555]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][261] ([i915#2672] / [i915#3555]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#2587] / [i915#2672]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#2672] / [i915#3555]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555] / [i915#5190]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-tglu: [PASS][266] -> [SKIP][267] ([i915#1849]) +6 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#1825]) +33 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-snb: [PASS][269] -> [SKIP][270] +3 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][271] +23 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][272] +37 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#1825]) +20 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#3458]) +11 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#3458]) +8 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#5354]) +36 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#1849]) +6 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#3023]) +18 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][279] +72 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#6118]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-10/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8228]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_hdr@static-swap.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#6301]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][285] ([i915#6301]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][286] +15 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane@plane-position-hole-dpms: - shard-dg2: [PASS][287] -> [SKIP][288] ([i915#8825]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@kms_plane@plane-position-hole-dpms.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_alpha_blend@coverage-7efc: - shard-dg2: [PASS][289] -> [SKIP][290] ([i915#7294]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@kms_plane_alpha_blend@coverage-7efc.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_alpha_blend@coverage-7efc.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#8806]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#9809]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - shard-dg2: NOTRUN -> [SKIP][293] ([i915#5354] / [i915#8152] / [i915#9423]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [PASS][294] -> [SKIP][295] ([i915#6953] / [i915#9423]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][296] ([i915#8292]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#12247] / [i915#8152] / [i915#9423]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#12247] / [i915#8152]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - shard-dg2: [PASS][299] -> [SKIP][300] ([i915#12247] / [i915#8152] / [i915#9423]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d: - shard-dg2: [PASS][301] -> [SKIP][302] ([i915#12247] / [i915#8152]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-dg2: [PASS][303] -> [SKIP][304] ([i915#3555] / [i915#8152] / [i915#9423]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b: - shard-dg2: [PASS][305] -> [SKIP][306] ([i915#12247]) +11 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#3555]) +4 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - shard-dg1: NOTRUN -> [SKIP][308] ([i915#3555]) +2 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#12247]) +19 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#12247]) +23 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#12247] / [i915#9423]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#12247]) +14 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#12247]) +6 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#12247] / [i915#6953]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-dg2: [PASS][315] -> [SKIP][316] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-tglu: [PASS][317] -> [SKIP][318] ([i915#6953] / [i915#8152]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b: - shard-tglu: [PASS][319] -> [SKIP][320] ([i915#12247]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d: - shard-tglu: [PASS][321] -> [SKIP][322] ([i915#12247] / [i915#8152]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2: [PASS][323] -> [SKIP][324] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#12247] / [i915#3555] / [i915#6953]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#12247]) +17 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d: - shard-dg2: [PASS][327] -> [SKIP][328] ([i915#8152]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][329] ([i915#5354]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@kms_pm_backlight@basic-brightness.html - shard-tglu: NOTRUN -> [SKIP][330] ([i915#9812]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#5354]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#9685]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#10139]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@kms_pm_dc@dc6-dpms.html - shard-dg2: NOTRUN -> [SKIP][334] ([i915#5978]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][335] ([i915#3361]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][336] ([i915#3361]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][337] ([i915#9301]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-4/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#9519]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][339] ([i915#9519]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][340] -> [SKIP][341] ([i915#9519]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-dg1: [PASS][342] -> [DMESG-WARN][343] ([i915#4423]) +1 other test dmesg-warn [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-tglu: NOTRUN -> [SKIP][344] ([i915#9519]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#6524]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html - shard-dg1: NOTRUN -> [SKIP][346] ([i915#6524]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][347] ([i915#6524]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-7/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#6524]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][349] ([i915#6524] / [i915#6805]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#9808]) +7 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html * igt@kms_psr@fbc-pr-cursor-render: - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#9688]) +21 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#1072] / [i915#9732]) +17 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#1072] / [i915#9732]) +14 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-7/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr-sprite-plane-move: - shard-dg1: NOTRUN -> [SKIP][354] ([i915#1072] / [i915#9732]) +16 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][355] ([i915#9732]) +22 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-7/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][356] ([i915#9685]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-dg2: NOTRUN -> [SKIP][357] ([i915#9685]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#11131]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#5289]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#5289]) +2 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#5289]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#3555]) +5 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic: - shard-tglu: [PASS][363] -> [SKIP][364] ([i915#3555]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_setmode@basic.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_setmode@basic.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#8623]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][366] ([i915#8623]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-idle-hang: - shard-dg2: [PASS][367] -> [SKIP][368] ([i915#9197]) +35 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-4/igt@kms_vblank@ts-continuation-idle-hang.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_vblank@ts-continuation-idle-hang.html * igt@kms_vblank@ts-continuation-modeset: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#9197]) +17 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_vblank@ts-continuation-modeset.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][370] ([i915#3555] / [i915#8808]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#11920]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][372] ([i915#11920]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_vrr@lobf.html - shard-dg1: NOTRUN -> [SKIP][373] ([i915#11920]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][374] ([i915#9906]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#9906]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][376] ([i915#9906]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-dg1: NOTRUN -> [SKIP][377] ([i915#9906]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-mtlp: NOTRUN -> [SKIP][378] ([i915#8808] / [i915#9906]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-3/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][379] ([i915#2437] / [i915#9412]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#7387]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@perf@global-sseu-config.html * igt@perf_pmu@all-busy-idle-check-all: - shard-mtlp: [PASS][381] -> [FAIL][382] ([i915#11943]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@most-busy-check-all: - shard-rkl: [PASS][383] -> [FAIL][384] ([i915#4349]) +1 other test fail [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-6/igt@perf_pmu@most-busy-check-all.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@perf_pmu@most-busy-check-all.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#8516]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html - shard-dg1: NOTRUN -> [SKIP][386] ([i915#8516]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][387] ([i915#3708] / [i915#4077]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][388] ([i915#3708] / [i915#4077]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][389] ([i915#3708] / [i915#4077]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][390] ([i915#3291] / [i915#3708]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][391] ([i915#3708]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][392] ([i915#3708]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@prime_vgem@fence-write-hang.html - shard-rkl: NOTRUN -> [SKIP][393] ([i915#3708]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@prime_vgem@fence-write-hang.html - shard-dg1: NOTRUN -> [SKIP][394] ([i915#3708]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@prime_vgem@fence-write-hang.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-rkl: NOTRUN -> [FAIL][395] ([i915#9781]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-tglu: NOTRUN -> [FAIL][396] ([i915#9781]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [FAIL][397] ([i915#7742]) -> [PASS][398] +1 other test pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-7/igt@drm_fdinfo@idle@rcs0.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@drm_fdinfo@idle@rcs0.html * igt@fbdev@unaligned-write: - shard-tglu: [SKIP][399] ([i915#2582]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@fbdev@unaligned-write.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@fbdev@unaligned-write.html * igt@gem_eio@hibernate: - shard-dg1: [ABORT][401] ([i915#7975] / [i915#8213]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-14/igt@gem_eio@hibernate.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-12/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-mtlp: [INCOMPLETE][403] -> [PASS][404] +2 other tests pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-1/igt@gem_eio@reset-stress.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-3/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@nop: - shard-dg2: [INCOMPLETE][405] -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@gem_exec_balancer@nop.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@gem_exec_balancer@nop.html - shard-dg1: [INCOMPLETE][407] -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-16/igt@gem_exec_balancer@nop.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@gem_exec_balancer@nop.html * igt@gem_exec_params@no-blt: - shard-dg2: [INCOMPLETE][409] ([i915#2295]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@gem_exec_params@no-blt.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@gem_exec_params@no-blt.html * igt@gem_exec_reloc@basic-scanout@vcs0: - shard-tglu: [SKIP][411] ([i915#3639]) -> [PASS][412] +5 other tests pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@gem_exec_reloc@basic-scanout@vcs0.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@gem_exec_reloc@basic-scanout@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][413] ([i915#9820]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][415] ([i915#3591]) -> [PASS][416] +1 other test pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg1: [DMESG-WARN][417] ([i915#4423]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-15/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [ABORT][419] ([i915#12216]) -> [PASS][420] +1 other test pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-3/igt@i915_selftest@live@workarounds.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: [FAIL][421] ([i915#11808] / [i915#5956]) -> [PASS][422] +1 other test pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs: - shard-tglu: [SKIP][423] -> [PASS][424] +55 other tests pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html * igt@kms_feature_discovery@display-1x: - shard-dg2: [SKIP][425] -> [PASS][426] [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_feature_discovery@display-1x.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_feature_discovery@display-1x.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][427] ([i915#2122]) -> [PASS][428] +9 other tests pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-modeset-vs-hang: - shard-tglu: [SKIP][429] ([i915#3637]) -> [PASS][430] +5 other tests pass [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_flip@flip-vs-modeset-vs-hang.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-6/igt@kms_flip@flip-vs-modeset-vs-hang.html * igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1: - shard-tglu: [FAIL][431] ([i915#2122]) -> [PASS][432] +3 other tests pass [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling: - shard-dg2: [SKIP][433] ([i915#3555]) -> [PASS][434] +3 other tests pass [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-tglu: [SKIP][435] ([i915#3555]) -> [PASS][436] +2 other tests pass [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][437] ([i915#5354]) -> [PASS][438] +9 other tests pass [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-tglu: [SKIP][439] ([i915#1849]) -> [PASS][440] +10 other tests pass [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [SKIP][441] ([i915#3555] / [i915#8228]) -> [PASS][442] [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@pixel-format: - shard-tglu: [ABORT][443] -> [PASS][444] +1 other test pass [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-5/igt@kms_plane@pixel-format.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_plane@pixel-format.html * igt@kms_plane@planar-pixel-format-settings: - shard-dg2: [SKIP][445] ([i915#9581]) -> [PASS][446] [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_plane@planar-pixel-format-settings.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-10/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-tglu: [SKIP][447] ([i915#7294]) -> [PASS][448] [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/index.html [-- Attachment #2: Type: text/html, Size: 108655 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for tests/xe_gt_freq: Use sync reset 2024-09-26 12:43 ` ✗ Fi.CI.IGT: " Patchwork @ 2024-09-27 18:04 ` Belgaumkar, Vinay 0 siblings, 0 replies; 13+ messages in thread From: Belgaumkar, Vinay @ 2024-09-27 18:04 UTC (permalink / raw) To: igt-dev [-- Attachment #1: Type: text/plain, Size: 103673 bytes --] On 9/26/2024 5:43 AM, Patchwork wrote: > Project List - Patchwork *Patch Details* > *Series:* tests/xe_gt_freq: Use sync reset > *URL:* https://patchwork.freedesktop.org/series/139120/ > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/index.html > > > CI Bug Log - changes from CI_DRM_15446_full -> IGTPW_11806_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_11806_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_11806_full, please notify your bug team > (I915-ci-infra@lists.freedesktop.org) 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_11806/index.html > > > Participating hosts (8 -> 8) > > Additional (1): shard-glk-0 > Missing (1): shard-glk > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_11806_full: > > > IGT changes > > > Possible regressions > > * > > igt@gem_busy@close-race: > > o shard-tglu: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-7/igt@gem_busy@close-race.html> > * > > igt@gem_exec_schedule@preemptive-hang@bcs0: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-4/igt@gem_exec_schedule@preemptive-hang@bcs0.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@gem_exec_schedule@preemptive-hang@bcs0.html> > +1 other test incomplete > * > > igt@gem_softpin@noreloc-s3: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb4/igt@gem_softpin@noreloc-s3.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb5/igt@gem_softpin@noreloc-s3.html> > * > > igt@i915_suspend@basic-s2idle-without-i915: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb7/igt@i915_suspend@basic-s2idle-without-i915.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb6/igt@i915_suspend@basic-s2idle-without-i915.html> > * > > igt@kms_atomic_transition@modeset-transition-nonblocking: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_atomic_transition@modeset-transition-nonblocking.html> > +24 other tests skip > * > > igt@kms_cursor_crc@cursor-sliding-128x128: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x128.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x128.html> > +10 other tests skip > * > > igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-edp1: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-edp1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-edp1.html> > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html> > +11 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html> > +19 other tests skip > * > > igt@kms_plane@pixel-format-source-clamping: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_plane@pixel-format-source-clamping.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-6/igt@kms_plane@pixel-format-source-clamping.html> > +1 other test abort > * > > igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html> > +24 other tests skip > * > > igt@sriov_basic@enable-vfs-autoprobe-on: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-on.html> > +4 other tests skip > None of these failures are related to this change. Thanks, Vinay. > * > > > Warnings > > * > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> > ([i915#5286]) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html> > ([i915#6095]) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html> > +2 other tests skip > * > > igt@kms_content_protection@dp-mst-type-0: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_content_protection@dp-mst-type-0.html> > ([i915#3116] / [i915#3299]) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_content_protection@dp-mst-type-0.html> > * > > igt@kms_cursor_crc@cursor-random-max-size: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-5/igt@kms_cursor_crc@cursor-random-max-size.html> > ([i915#3555]) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_cursor_crc@cursor-random-max-size.html> > * > > igt@kms_cursor_crc@cursor-rapid-movement-512x512: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> > ([i915#11453]) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> > * > > igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> > ([i915#4103]) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html> > ([i915#5354]) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html> > +6 other tests skip > * > > igt@kms_vrr@seamless-rr-switch-virtual: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-9/igt@kms_vrr@seamless-rr-switch-virtual.html> > ([i915#9906]) -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_vrr@seamless-rr-switch-virtual.html> > > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * > > igt@gem_create@create-ext-cpu-access-sanity-check: > > o {shard-tglu-1}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html> > +60 other tests skip > * > > igt@gem_exec_fair@basic-throttle: > > o {shard-tglu-1}: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-1/igt@gem_exec_fair@basic-throttle.html> > +1 other test fail > > > Known issues > > Here are the changes found in IGTPW_11806_full that come from known > issues: > > > IGT changes > > > Issues hit > > * > > igt@api_intel_bb@blit-reloc-purge-cache: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@api_intel_bb@blit-reloc-purge-cache.html> > ([i915#8411]) > * > > igt@api_intel_bb@object-reloc-keep-cache: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@api_intel_bb@object-reloc-keep-cache.html> > ([i915#8411]) +1 other test skip > * > > igt@drm_fdinfo@most-busy-check-all: > > o shard-rkl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all.html> > ([i915#12179]) > * > > igt@drm_fdinfo@most-busy-check-all@rcs0: > > o shard-rkl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html> > ([i915#7742]) > * > > igt@drm_fdinfo@virtual-busy-hang: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@drm_fdinfo@virtual-busy-hang.html> > ([i915#8414]) > * > > igt@drm_fdinfo@virtual-busy-idle: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@drm_fdinfo@virtual-busy-idle.html> > ([i915#8414]) +14 other tests skip > * > > igt@fbdev@nullptr: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@fbdev@nullptr.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@fbdev@nullptr.html> > ([i915#2582]) > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-9/igt@fbdev@nullptr.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@fbdev@nullptr.html> > ([i915#2582]) > * > > igt@gem_ccs@block-multicopy-compressed: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@gem_ccs@block-multicopy-compressed.html> > ([i915#9323]) > * > > igt@gem_create@create-ext-cpu-access-big: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html> > ([i915#6335]) > o shard-dg2: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html> > ([i915#9846]) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@gem_create@create-ext-cpu-access-big.html> > ([i915#6335]) > * > > igt@gem_ctx_engines@invalid-engines: > > o shard-tglu: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@gem_ctx_engines@invalid-engines.html> > ([i915#12027]) > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-2/igt@gem_ctx_engines@invalid-engines.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@gem_ctx_engines@invalid-engines.html> > ([i915#12027]) > * > > igt@gem_ctx_freq@sysfs: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-8/igt@gem_ctx_freq@sysfs.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@gem_ctx_freq@sysfs.html> > ([i915#9561]) +1 other test fail > * > > igt@gem_ctx_persistence@heartbeat-many: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-many.html> > ([i915#8555]) > * > > igt@gem_ctx_persistence@hostile: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb2/igt@gem_ctx_persistence@hostile.html> > ([i915#1099]) > o shard-mtlp: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@gem_ctx_persistence@hostile.html> > ([i915#11980]) > * > > igt@gem_ctx_sseu@invalid-sseu: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html> > ([i915#280]) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@gem_ctx_sseu@invalid-sseu.html> > ([i915#280]) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@gem_ctx_sseu@invalid-sseu.html> > ([i915#280]) > * > > igt@gem_exec_balancer@bonded-semaphore: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-15/igt@gem_exec_balancer@bonded-semaphore.html> > ([i915#4812]) +3 other tests skip > * > > igt@gem_exec_balancer@parallel: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@gem_exec_balancer@parallel.html> > ([i915#4525]) +1 other test skip > * > > igt@gem_exec_big@single: > > o shard-tglu: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-2/igt@gem_exec_big@single.html> > ([i915#11713]) > * > > igt@gem_exec_capture@capture-invisible: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@gem_exec_capture@capture-invisible.html> > ([i915#6334]) +2 other tests skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@gem_exec_capture@capture-invisible.html> > ([i915#6334]) +1 other test skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@gem_exec_capture@capture-invisible.html> > ([i915#6334]) +2 other tests skip > * > > igt@gem_exec_capture@capture-invisible@smem0: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@gem_exec_capture@capture-invisible@smem0.html> > ([i915#6334]) +1 other test skip > * > > igt@gem_exec_fair@basic-deadline: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@gem_exec_fair@basic-deadline.html> > ([i915#3539] / [i915#4852]) +4 other tests skip > * > > igt@gem_exec_fair@basic-none-rrul: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@gem_exec_fair@basic-none-rrul.html> > ([i915#3539] / [i915#4852]) +3 other tests skip > o shard-tglu: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@gem_exec_fair@basic-none-rrul.html> > ([i915#2842]) +1 other test fail > * > > igt@gem_exec_fair@basic-pace-solo: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@gem_exec_fair@basic-pace-solo.html> > ([i915#3539]) +1 other test skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@gem_exec_fair@basic-pace-solo.html> > ([i915#4473]) > * > > igt@gem_exec_fair@basic-pace@vcs0: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-3/igt@gem_exec_fair@basic-pace@vcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@gem_exec_fair@basic-pace@vcs0.html> > ([i915#2842]) > * > > igt@gem_exec_fair@basic-sync: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@gem_exec_fair@basic-sync.html> > ([i915#4473] / [i915#4771]) +4 other tests skip > * > > igt@gem_exec_fair@basic-throttle: > > o shard-rkl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@gem_exec_fair@basic-throttle.html> > ([i915#2842]) +3 other tests fail > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@gem_exec_fair@basic-throttle.html> > ([i915#3539]) +1 other test skip > * > > igt@gem_exec_reloc@basic-cpu-wc-active: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-wc-active.html> > ([i915#3281]) +6 other tests skip > * > > igt@gem_exec_reloc@basic-gtt-read-active: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-read-active.html> > ([i915#3281]) +6 other tests skip > * > > igt@gem_exec_reloc@basic-scanout: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@gem_exec_reloc@basic-scanout.html> > ([i915#3281]) +10 other tests skip > * > > igt@gem_exec_reloc@basic-wc-gtt-noreloc: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html> > ([i915#3281]) +5 other tests skip > * > > igt@gem_exec_schedule@preempt-queue-contexts-chain: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html> > ([i915#4537] / [i915#4812]) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-contexts-chain.html> > ([i915#4537] / [i915#4812]) +1 other test skip > * > > igt@gem_fence_thrash@bo-write-verify-threaded-none: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-threaded-none.html> > ([i915#4860]) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@gem_fence_thrash@bo-write-verify-threaded-none.html> > ([i915#4860]) +1 other test skip > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-threaded-none.html> > ([i915#4860]) > * > > igt@gem_lmem_swapping@parallel-random-verify: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html> > ([i915#4613]) +2 other tests skip > * > > igt@gem_lmem_swapping@smem-oom: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@gem_lmem_swapping@smem-oom.html> > ([i915#4613]) +4 other tests skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@gem_lmem_swapping@smem-oom.html> > ([i915#4613]) +1 other test skip > * > > igt@gem_lmem_swapping@verify-ccs: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@gem_lmem_swapping@verify-ccs.html> > ([i915#12193]) > * > > igt@gem_lmem_swapping@verify-ccs@lmem0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@gem_lmem_swapping@verify-ccs@lmem0.html> > ([i915#4565]) > * > > igt@gem_mmap@big-bo: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@gem_mmap@big-bo.html> > ([i915#4083]) +2 other tests skip > * > > igt@gem_mmap_gtt@bad-object: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@gem_mmap_gtt@bad-object.html> > ([i915#4077]) +4 other tests skip > * > > igt@gem_mmap_gtt@basic-small-copy-odd: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-15/igt@gem_mmap_gtt@basic-small-copy-odd.html> > ([i915#4077]) +4 other tests skip > * > > igt@gem_mmap_wc@bad-object: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@gem_mmap_wc@bad-object.html> > ([i915#4083]) +3 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@gem_mmap_wc@bad-object.html> > ([i915#4083]) +1 other test skip > * > > igt@gem_partial_pwrite_pread@reads-snoop: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@gem_partial_pwrite_pread@reads-snoop.html> > ([i915#3282]) +3 other tests skip > * > > igt@gem_pwrite@basic-exhaustion: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html> > ([i915#3282]) +4 other tests skip > * > > igt@gem_pwrite@basic-random: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@gem_pwrite@basic-random.html> > ([i915#3282]) +2 other tests skip > * > > igt@gem_pxp@create-regular-context-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@gem_pxp@create-regular-context-1.html> > ([i915#4270]) +3 other tests skip > * > > igt@gem_pxp@display-protected-crc: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-6/igt@gem_pxp@display-protected-crc.html> > ([i915#4270]) +2 other tests skip > * > > igt@gem_pxp@regular-baseline-src-copy-readible: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-10/igt@gem_pxp@regular-baseline-src-copy-readible.html> > ([i915#4270]) +2 other tests skip > * > > igt@gem_pxp@verify-pxp-stale-ctx-execution: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@gem_pxp@verify-pxp-stale-ctx-execution.html> > ([i915#4270]) +3 other tests skip > * > > igt@gem_readwrite@read-bad-handle: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@gem_readwrite@read-bad-handle.html> > ([i915#3282]) +5 other tests skip > * > > igt@gem_render_copy@y-tiled-ccs-to-y-tiled: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html> > ([i915#5190] / [i915#8428]) +2 other tests skip > * > > igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html> > ([i915#8428]) +4 other tests skip > * > > igt@gem_render_tiled_blits@basic: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-12/igt@gem_render_tiled_blits@basic.html> > ([i915#4079]) +1 other test skip > * > > igt@gem_softpin@evict-snoop: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@gem_softpin@evict-snoop.html> > ([i915#4885]) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@gem_softpin@evict-snoop.html> > ([i915#4885]) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@gem_softpin@evict-snoop.html> > ([i915#4885]) > * > > igt@gem_tiled_pread_basic: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@gem_tiled_pread_basic.html> > ([i915#4079]) +1 other test skip > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@gem_tiled_pread_basic.html> > ([i915#4079]) +1 other test skip > * > > igt@gem_tiling_max_stride: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@gem_tiling_max_stride.html> > ([i915#4077]) +4 other tests skip > * > > igt@gem_userptr_blits@coherency-unsync: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@gem_userptr_blits@coherency-unsync.html> > ([i915#3297]) > * > > igt@gem_userptr_blits@create-destroy-unsync: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@gem_userptr_blits@create-destroy-unsync.html> > ([i915#3297]) +2 other tests skip > * > > igt@gem_userptr_blits@forbidden-operations: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html> > ([i915#3282] / [i915#3297]) > * > > igt@gem_userptr_blits@unsync-overlap: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@gem_userptr_blits@unsync-overlap.html> > ([i915#3297]) +2 other tests skip > * > > igt@gen9_exec_parse@basic-rejected: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html> > ([i915#2527]) +2 other tests skip > * > > igt@gen9_exec_parse@basic-rejected-ctx-param: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb6/igt@gen9_exec_parse@basic-rejected-ctx-param.html> > +106 other tests skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html> > ([i915#2527] / [i915#2856]) +4 other tests skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html> > ([i915#2856]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@gen9_exec_parse@basic-rejected-ctx-param.html> > ([i915#2527]) > * > > igt@gen9_exec_parse@valid-registers: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@gen9_exec_parse@valid-registers.html> > ([i915#2856]) +2 other tests skip > * > > igt@i915_module_load@load: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb6/igt@i915_module_load@load.html> > ([i915#6227]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@i915_module_load@load.html> > ([i915#6227]) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@i915_module_load@load.html> > ([i915#6227]) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@i915_module_load@load.html> > ([i915#6227]) > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html> > ([i915#9820]) > * > > igt@i915_pm_freq_api@freq-basic-api: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@i915_pm_freq_api@freq-basic-api.html> > ([i915#8399]) > * > > igt@i915_pm_freq_mult@media-freq@gt0: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html> > ([i915#6590]) +1 other test skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@i915_pm_freq_mult@media-freq@gt0.html> > ([i915#6590]) +1 other test skip > * > > igt@i915_pm_freq_mult@media-freq@gt1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@i915_pm_freq_mult@media-freq@gt1.html> > ([i915#6590]) +2 other tests skip > * > > igt@i915_query@test-query-geometry-subslices: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@i915_query@test-query-geometry-subslices.html> > ([i915#5723]) > * > > igt@i915_selftest@mock: > > o shard-snb: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb7/igt@i915_selftest@mock.html> > ([i915#9311]) +1 other test dmesg-warn > o shard-tglu: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@i915_selftest@mock.html> > ([i915#9311]) +1 other test dmesg-warn > o shard-mtlp: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@i915_selftest@mock.html> > ([i915#9311]) +1 other test dmesg-warn > o shard-dg1: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@i915_selftest@mock.html> > ([i915#1982] / [i915#9311]) > * > > igt@i915_selftest@mock@memory_region: > > o shard-dg2: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@i915_selftest@mock@memory_region.html> > ([i915#9311]) +1 other test dmesg-warn > o shard-rkl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@i915_selftest@mock@memory_region.html> > ([i915#9311]) +1 other test dmesg-warn > o shard-dg1: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@i915_selftest@mock@memory_region.html> > ([i915#9311]) > * > > igt@intel_hwmon@hwmon-read: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@intel_hwmon@hwmon-read.html> > ([i915#7707]) > * > > igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html> > ([i915#4212]) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html> > ([i915#4212]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html> > ([i915#4212]) > * > > igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html> > ([i915#8709]) +11 other tests skip > * > > igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs.html> > ([i915#8709]) +3 other tests skip > * > > igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html> > ([i915#8709]) +7 other tests skip > * > > igt@kms_atomic@plane-primary-overlay-mutable-zpos: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> > ([i915#3555]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> > ([i915#9531]) > * > > igt@kms_atomic_transition@plane-all-modeset-transition-fencing: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> > ([i915#1769] / [i915#3555]) > * > > igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> > ([i915#1769] / [i915#3555]) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> > ([i915#1769] / [i915#3555]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> > ([i915#1769] / [i915#3555]) > * > > igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html> > ([i915#5956]) +1 other test fail > * > > igt@kms_big_fb@4-tiled-16bpp-rotate-90: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html> > +15 other tests skip > * > > igt@kms_big_fb@4-tiled-64bpp-rotate-180: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> > ([i915#5138]) > * > > igt@kms_big_fb@4-tiled-8bpp-rotate-90: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> > ([i915#5286]) +3 other tests skip > * > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> > ([i915#5286]) +3 other tests skip > * > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> > ([i915#4538] / [i915#5286]) +5 other tests skip > * > > igt@kms_big_fb@y-tiled-64bpp-rotate-270: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html> > ([i915#3638]) +2 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html> > ([i915#3638]) +2 other tests skip > * > > igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> > ([i915#5190] / [i915#9197]) > * > > igt@kms_big_fb@yf-tiled-64bpp-rotate-0: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> > ([i915#4538] / [i915#5190]) +7 other tests skip > * > > igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html> > ([i915#4538]) +2 other tests skip > * > > igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html> > ([i915#6095]) +127 other tests skip > * > > igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html> > ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip > * > > igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html> > ([i915#6095]) +49 other tests skip > * > > igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-2: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-2.html> > ([i915#10307] / [i915#6095]) +150 other tests skip > * > > igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> > ([i915#12042]) +1 other test skip > * > > igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html> > ([i915#12042]) > * > > igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> > ([i915#12042]) > * > > igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html> > ([i915#12042]) > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-19/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html> > ([i915#12042]) +1 other test skip > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html> > ([i915#6095]) +103 other tests skip > * > > igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> > ([i915#6095]) +80 other tests skip > * > > igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html> > ([i915#11616] / [i915#7213]) +3 other tests skip > * > > igt@kms_cdclk@plane-scaling: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_cdclk@plane-scaling.html> > ([i915#3742]) +1 other test skip > * > > igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html> > ([i915#4087]) +3 other tests skip > * > > igt@kms_chamelium_audio@hdmi-audio-edid: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_chamelium_audio@hdmi-audio-edid.html> > ([i915#7828]) +9 other tests skip > * > > igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html> > ([i915#7828]) +4 other tests skip > * > > igt@kms_chamelium_frames@dp-crc-multiple: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-multiple.html> > ([i915#7828]) +5 other tests skip > * > > igt@kms_chamelium_hpd@dp-hpd-fast: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-fast.html> > ([i915#7828]) +8 other tests skip > * > > igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html> > ([i915#7828]) +8 other tests skip > * > > igt@kms_color@deep-color: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_color@deep-color.html> > ([i915#3555] / [i915#9979]) > * > > igt@kms_color@legacy-gamma: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-5/igt@kms_color@legacy-gamma.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_color@legacy-gamma.html> > ([i915#5354]) +9 other tests skip > * > > igt@kms_content_protection@atomic: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@kms_content_protection@atomic.html> > ([i915#7116] / [i915#9424]) +1 other test skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@kms_content_protection@atomic.html> > ([i915#7118] / [i915#9424]) > * > > igt@kms_content_protection@content-type-change: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-4/igt@kms_content_protection@content-type-change.html> > ([i915#6944] / [i915#9424]) > * > > igt@kms_content_protection@dp-mst-type-1: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html> > ([i915#3116]) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_content_protection@dp-mst-type-1.html> > ([i915#3116] / [i915#3299]) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-1.html> > ([i915#3299]) > * > > igt@kms_content_protection@mei-interface: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_content_protection@mei-interface.html> > ([i915#9424]) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@kms_content_protection@mei-interface.html> > ([i915#9424]) +1 other test skip > * > > igt@kms_content_protection@uevent: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@kms_content_protection@uevent.html> > ([i915#6944] / [i915#9424]) +1 other test skip > * > > igt@kms_cursor_crc@cursor-random-128x42: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-128x42.html> > ([i915#8814]) > * > > igt@kms_cursor_crc@cursor-random-512x512: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x512.html> > ([i915#11453]) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_cursor_crc@cursor-random-512x512.html> > ([i915#11453]) +1 other test skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-512x512.html> > ([i915#3359]) > * > > igt@kms_cursor_crc@cursor-rapid-movement-max-size: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> > ([i915#3555]) +2 other tests skip > * > > igt@kms_cursor_crc@cursor-sliding-max-size: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-max-size.html> > ([i915#3555] / [i915#8814]) +1 other test skip > * > > igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> > ([i915#4213]) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> > ([i915#4103] / [i915#4213]) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> > ([i915#4103]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> > ([i915#4103] / [i915#4213]) +1 other test skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> > ([i915#4103]) > * > > igt@kms_dirtyfb@drrs-dirtyfb-ioctl: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> > ([i915#9723]) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> > ([i915#9833]) > * > > igt@kms_dirtyfb@psr-dirtyfb-ioctl: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> > ([i915#9723]) +1 other test skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> > ([i915#9723]) > * > > igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html> > ([i915#3804]) > * > > igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html> > ([i915#3804]) > * > > igt@kms_draw_crc@draw-method-mmap-wc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-wc.html> > ([i915#8812]) > * > > igt@kms_dsc@dsc-fractional-bpp-with-bpc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> > ([i915#3840]) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> > ([i915#3840]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> > ([i915#3840]) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> > ([i915#3840]) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> > ([i915#3840]) > * > > igt@kms_dsc@dsc-with-bpc: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc.html> > ([i915#3555] / [i915#3840]) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_dsc@dsc-with-bpc.html> > ([i915#3555] / [i915#3840]) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@kms_dsc@dsc-with-bpc.html> > ([i915#3555] / [i915#3840]) > * > > igt@kms_dsc@dsc-with-bpc-formats: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@kms_dsc@dsc-with-bpc-formats.html> > ([i915#3555] / [i915#3840]) +1 other test skip > * > > igt@kms_dsc@dsc-with-formats: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_dsc@dsc-with-formats.html> > ([i915#3555] / [i915#3840]) > * > > igt@kms_feature_discovery@display-3x: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@kms_feature_discovery@display-3x.html> > ([i915#1839]) > * > > igt@kms_feature_discovery@display-4x: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_feature_discovery@display-4x.html> > ([i915#1839]) +1 other test skip > * > > igt@kms_feature_discovery@psr1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_feature_discovery@psr1.html> > ([i915#658]) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@kms_feature_discovery@psr1.html> > ([i915#658]) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@kms_feature_discovery@psr1.html> > ([i915#658]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@kms_feature_discovery@psr1.html> > ([i915#658]) > * > > igt@kms_flip@2x-flip-vs-absolute-wf_vblank: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> > ([i915#3637]) +7 other tests skip > * > > igt@kms_flip@2x-flip-vs-rmfb: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb.html> > ([i915#3637]) +5 other tests skip > * > > igt@kms_flip@blocking-wf_vblank: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-2/igt@kms_flip@blocking-wf_vblank.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-3/igt@kms_flip@blocking-wf_vblank.html> > ([i915#2122]) +3 other tests fail > * > > igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> > ([i915#2122]) +3 other tests fail > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> > ([i915#2122]) > * > > igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html> > ([i915#2122]) +1 other test fail > * > > igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a2: > > o shard-rkl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a2.html> > ([i915#11961]) > * > > igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html> > ([i915#12138]) > * > > igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html> > ([i915#2122]) +2 other tests fail > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> > ([i915#2672]) +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html> > ([i915#2672] / [i915#3555]) +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html> > ([i915#2672]) +2 other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html> > ([i915#2672] / [i915#3555]) +1 other test skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html> > ([i915#2587] / [i915#2672] / [i915#3555]) > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html> > ([i915#2672]) +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html> > ([i915#2587] / [i915#2672]) +5 other tests skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html> > ([i915#3555] / [i915#8813]) > * > > igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html> > ([i915#3555] / [i915#8810]) > * > > igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html> > ([i915#3555]) +2 other tests skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> > ([i915#2672] / [i915#3555]) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> > ([i915#2672] / [i915#3555]) > * > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> > ([i915#2587] / [i915#2672]) > * > > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html> > ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html> > ([i915#2672] / [i915#3555]) +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html> > ([i915#2672] / [i915#3555] / [i915#5190]) > * > > igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html> > ([i915#1849]) +6 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> > ([i915#1825]) +33 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: > > o shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html> > +3 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html> > +23 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> > +37 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html> > ([i915#1825]) +20 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html> > ([i915#3458]) +11 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html> > ([i915#3458]) +8 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html> > ([i915#5354]) +36 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-move.html> > ([i915#1849]) +6 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-modesetfrombusy: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html> > ([i915#3023]) +18 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html> > +72 other tests skip > * > > igt@kms_getfb@getfb-reject-ccs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-10/igt@kms_getfb@getfb-reject-ccs.html> > ([i915#6118]) > * > > igt@kms_hdr@bpc-switch-dpms: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html> > ([i915#3555] / [i915#8228]) +1 other test skip > * > > igt@kms_hdr@static-swap: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_hdr@static-swap.html> > ([i915#3555] / [i915#8228]) +1 other test skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_hdr@static-swap.html> > ([i915#3555] / [i915#8228]) > * > > igt@kms_panel_fitting@legacy: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@kms_panel_fitting@legacy.html> > ([i915#6301]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@kms_panel_fitting@legacy.html> > ([i915#6301]) > * > > igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html> > +15 other tests skip > * > > igt@kms_plane@plane-position-hole-dpms: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@kms_plane@plane-position-hole-dpms.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane@plane-position-hole-dpms.html> > ([i915#8825]) +1 other test skip > * > > igt@kms_plane_alpha_blend@coverage-7efc: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@kms_plane_alpha_blend@coverage-7efc.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_alpha_blend@coverage-7efc.html> > ([i915#7294]) > * > > igt@kms_plane_multiple@tiling-y: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@kms_plane_multiple@tiling-y.html> > ([i915#8806]) > * > > igt@kms_plane_scaling@2x-scaler-multi-pipe: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> > ([i915#9809]) +1 other test skip > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> > ([i915#5354] / [i915#8152] / [i915#9423]) > * > > igt@kms_plane_scaling@intel-max-src-size: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_plane_scaling@intel-max-src-size.html> > ([i915#6953] / [i915#9423]) > * > > igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: > > o shard-rkl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html> > ([i915#8292]) > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html> > ([i915#12247] / [i915#8152] / [i915#9423]) > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html> > ([i915#12247] / [i915#8152]) > * > > igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html> > ([i915#12247] / [i915#8152] / [i915#9423]) > * > > igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d.html> > ([i915#12247] / [i915#8152]) +1 other test skip > * > > igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html> > ([i915#3555] / [i915#8152] / [i915#9423]) > * > > igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html> > ([i915#12247]) +11 other tests skip > * > > igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html> > ([i915#3555]) +4 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html> > ([i915#3555]) +2 other tests skip > * > > igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html> > ([i915#12247]) +19 other tests skip > * > > igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html> > ([i915#12247]) +23 other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> > ([i915#12247] / [i915#9423]) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html> > ([i915#12247]) +14 other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html> > ([i915#12247]) +6 other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-5: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html> > ([i915#12247] / [i915#6953]) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-75: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-75.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html> > ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / > [i915#9423]) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> > ([i915#6953] / [i915#8152]) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b.html> > ([i915#12247]) +2 other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html> > ([i915#12247] / [i915#8152]) > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html> > ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html> > ([i915#12247] / [i915#3555] / [i915#6953]) > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html> > ([i915#12247]) +17 other tests skip > * > > igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html> > ([i915#8152]) +1 other test skip > * > > igt@kms_pm_backlight@basic-brightness: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@kms_pm_backlight@basic-brightness.html> > ([i915#5354]) +1 other test skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@kms_pm_backlight@basic-brightness.html> > ([i915#9812]) > * > > igt@kms_pm_backlight@fade-with-suspend: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_pm_backlight@fade-with-suspend.html> > ([i915#5354]) > * > > igt@kms_pm_dc@dc3co-vpb-simulation: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-6/igt@kms_pm_dc@dc3co-vpb-simulation.html> > ([i915#9685]) > * > > igt@kms_pm_dc@dc6-dpms: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@kms_pm_dc@dc6-dpms.html> > ([i915#10139]) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_pm_dc@dc6-dpms.html> > ([i915#5978]) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@kms_pm_dc@dc6-dpms.html> > ([i915#3361]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html> > ([i915#3361]) > * > > igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1: > > o shard-tglu: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-4/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html> > ([i915#9301]) > * > > igt@kms_pm_rpm@modeset-lpsp: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html> > ([i915#9519]) +1 other test skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html> > ([i915#9519]) > * > > igt@kms_pm_rpm@modeset-non-lpsp-stress: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> > ([i915#9519]) > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> > ([i915#4423]) +1 other test dmesg-warn > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> > ([i915#9519]) > * > > igt@kms_prime@basic-modeset-hybrid: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html> > ([i915#6524]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_prime@basic-modeset-hybrid.html> > ([i915#6524]) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-7/igt@kms_prime@basic-modeset-hybrid.html> > ([i915#6524]) +1 other test skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@kms_prime@basic-modeset-hybrid.html> > ([i915#6524]) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_prime@basic-modeset-hybrid.html> > ([i915#6524] / [i915#6805]) > * > > igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-4/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html> > ([i915#9808]) +7 other tests skip > * > > igt@kms_psr@fbc-pr-cursor-render: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@kms_psr@fbc-pr-cursor-render.html> > ([i915#9688]) +21 other tests skip > * > > igt@kms_psr@fbc-psr2-sprite-render: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@kms_psr@fbc-psr2-sprite-render.html> > ([i915#1072] / [i915#9732]) +17 other tests skip > * > > igt@kms_psr@psr-cursor-mmap-cpu: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-7/igt@kms_psr@psr-cursor-mmap-cpu.html> > ([i915#1072] / [i915#9732]) +14 other tests skip > * > > igt@kms_psr@psr-sprite-plane-move: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@kms_psr@psr-sprite-plane-move.html> > ([i915#1072] / [i915#9732]) +16 other tests skip > * > > igt@kms_psr@psr2-cursor-plane-onoff: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-7/igt@kms_psr@psr2-cursor-plane-onoff.html> > ([i915#9732]) +22 other tests skip > * > > igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> > ([i915#9685]) +1 other test skip > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> > ([i915#9685]) > * > > igt@kms_rotation_crc@primary-rotation-90: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-90.html> > ([i915#11131]) > * > > igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html> > ([i915#5289]) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> > ([i915#5289]) +2 other tests skip > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> > ([i915#5289]) > * > > igt@kms_scaling_modes@scaling-mode-full-aspect: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html> > ([i915#3555]) +5 other tests skip > * > > igt@kms_setmode@basic: > > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_setmode@basic.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-8/igt@kms_setmode@basic.html> > ([i915#3555]) +2 other tests skip > * > > igt@kms_tiled_display@basic-test-pattern: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@kms_tiled_display@basic-test-pattern.html> > ([i915#8623]) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html> > ([i915#8623]) > * > > igt@kms_vblank@ts-continuation-idle-hang: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-4/igt@kms_vblank@ts-continuation-idle-hang.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_vblank@ts-continuation-idle-hang.html> > ([i915#9197]) +35 other tests skip > * > > igt@kms_vblank@ts-continuation-modeset: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-2/igt@kms_vblank@ts-continuation-modeset.html> > ([i915#9197]) +17 other tests skip > * > > igt@kms_vrr@flip-suspend: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-7/igt@kms_vrr@flip-suspend.html> > ([i915#3555] / [i915#8808]) > * > > igt@kms_vrr@lobf: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-5/igt@kms_vrr@lobf.html> > ([i915#11920]) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-4/igt@kms_vrr@lobf.html> > ([i915#11920]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-17/igt@kms_vrr@lobf.html> > ([i915#11920]) > * > > igt@kms_vrr@seamless-rr-switch-drrs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-drrs.html> > ([i915#9906]) > * > > igt@kms_vrr@seamless-rr-switch-vrr: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-vrr.html> > ([i915#9906]) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html> > ([i915#9906]) +1 other test skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-vrr.html> > ([i915#9906]) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-3/igt@kms_vrr@seamless-rr-switch-vrr.html> > ([i915#8808] / [i915#9906]) > * > > igt@kms_writeback@writeback-pixel-formats: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-3/igt@kms_writeback@writeback-pixel-formats.html> > ([i915#2437] / [i915#9412]) > * > > igt@perf@global-sseu-config: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@perf@global-sseu-config.html> > ([i915#7387]) > * > > igt@perf_pmu@all-busy-idle-check-all: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html> > ([i915#11943]) > * > > igt@perf_pmu@most-busy-check-all: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-6/igt@perf_pmu@most-busy-check-all.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@perf_pmu@most-busy-check-all.html> > ([i915#4349]) +1 other test fail > * > > igt@perf_pmu@rc6@other-idle-gt0: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html> > ([i915#8516]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@perf_pmu@rc6@other-idle-gt0.html> > ([i915#8516]) > * > > igt@prime_vgem@basic-fence-mmap: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@prime_vgem@basic-fence-mmap.html> > ([i915#3708] / [i915#4077]) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html> > ([i915#3708] / [i915#4077]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@prime_vgem@basic-fence-mmap.html> > ([i915#3708] / [i915#4077]) > * > > igt@prime_vgem@basic-fence-read: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-1/igt@prime_vgem@basic-fence-read.html> > ([i915#3291] / [i915#3708]) > * > > igt@prime_vgem@fence-write-hang: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-6/igt@prime_vgem@fence-write-hang.html> > ([i915#3708]) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-11/igt@prime_vgem@fence-write-hang.html> > ([i915#3708]) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-2/igt@prime_vgem@fence-write-hang.html> > ([i915#3708]) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@prime_vgem@fence-write-hang.html> > ([i915#3708]) > * > > igt@syncobj_timeline@invalid-wait-zero-handles: > > o shard-rkl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-3/igt@syncobj_timeline@invalid-wait-zero-handles.html> > ([i915#9781]) > * > > igt@syncobj_wait@invalid-wait-zero-handles: > > o shard-tglu: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@syncobj_wait@invalid-wait-zero-handles.html> > ([i915#9781]) > > > Possible fixes > > * > > igt@drm_fdinfo@idle@rcs0: > > o shard-rkl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-7/igt@drm_fdinfo@idle@rcs0.html> > ([i915#7742]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-rkl-7/igt@drm_fdinfo@idle@rcs0.html> > +1 other test pass > * > > igt@fbdev@unaligned-write: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@fbdev@unaligned-write.html> > ([i915#2582]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@fbdev@unaligned-write.html> > * > > igt@gem_eio@hibernate: > > o shard-dg1: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-14/igt@gem_eio@hibernate.html> > ([i915#7975] / [i915#8213]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-12/igt@gem_eio@hibernate.html> > * > > igt@gem_eio@reset-stress: > > o shard-mtlp: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-1/igt@gem_eio@reset-stress.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-3/igt@gem_eio@reset-stress.html> > +2 other tests pass > * > > igt@gem_exec_balancer@nop: > > o shard-dg2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@gem_exec_balancer@nop.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-6/igt@gem_exec_balancer@nop.html> > o shard-dg1: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-16/igt@gem_exec_balancer@nop.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-14/igt@gem_exec_balancer@nop.html> > * > > igt@gem_exec_params@no-blt: > > o shard-dg2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@gem_exec_params@no-blt.html> > ([i915#2295]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-1/igt@gem_exec_params@no-blt.html> > * > > igt@gem_exec_reloc@basic-scanout@vcs0: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@gem_exec_reloc@basic-scanout@vcs0.html> > ([i915#3639]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@gem_exec_reloc@basic-scanout@vcs0.html> > +5 other tests pass > * > > igt@i915_module_load@reload-with-fault-injection: > > o shard-tglu: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html> > ([i915#9820]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html> > * > > igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: > > o shard-dg1: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html> > ([i915#3591]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html> > +1 other test pass > * > > igt@i915_pm_rpm@system-suspend-execbuf: > > o shard-dg1: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html> > ([i915#4423]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg1-15/igt@i915_pm_rpm@system-suspend-execbuf.html> > * > > igt@i915_selftest@live@workarounds: > > o shard-mtlp: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-3/igt@i915_selftest@live@workarounds.html> > ([i915#12216]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-8/igt@i915_selftest@live@workarounds.html> > +1 other test pass > * > > igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html> > ([i915#11808] / [i915#5956]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-mtlp-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html> > +1 other test pass > * > > igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html> > +55 other tests pass > * > > igt@kms_feature_discovery@display-1x: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_feature_discovery@display-1x.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_feature_discovery@display-1x.html> > * > > igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: > > o shard-snb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html> > ([i915#2122]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-snb1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html> > +9 other tests pass > * > > igt@kms_flip@flip-vs-modeset-vs-hang: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_flip@flip-vs-modeset-vs-hang.html> > ([i915#3637]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-6/igt@kms_flip@flip-vs-modeset-vs-hang.html> > +5 other tests pass > * > > igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1: > > o shard-tglu: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html> > ([i915#2122]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-3/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html> > +3 other tests pass > * > > igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html> > ([i915#3555]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html> > +3 other tests pass > * > > igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html> > ([i915#3555]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html> > +2 other tests pass > * > > igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html> > ([i915#5354]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html> > +9 other tests pass > * > > igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: > > o shard-tglu: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> > ([i915#1849]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> > +10 other tests pass > * > > igt@kms_hdr@static-toggle-suspend: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html> > ([i915#3555] / [i915#8228]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html> > * > > igt@kms_plane@pixel-format: > > o shard-tglu: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-5/igt@kms_plane@pixel-format.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-tglu-9/igt@kms_plane@pixel-format.html> > +1 other test pass > * > > igt@kms_plane@planar-pixel-format-settings: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_plane@planar-pixel-format-settings.html> > ([i915#9581]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11806/shard-dg2-10/igt@kms_plane@planar-pixel-format-settings.html> > * > > igt@kms_plane_alpha_blend@alpha-7efc: > > o shard-tglu: SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/CI> > ([i915#7294]) -> [PASS][448] > [-- Attachment #2: Type: text/html, Size: 137263 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t] tests/xe_gt_freq: Use sync reset 2024-09-25 22:09 [PATCH i-g-t] tests/xe_gt_freq: Use sync reset Vinay Belgaumkar ` (2 preceding siblings ...) 2024-09-26 12:43 ` ✗ Fi.CI.IGT: " Patchwork @ 2024-09-26 14:36 ` Rodrigo Vivi 2024-09-27 2:33 ` ✗ CI.xeFULL: failure for " Patchwork ` (4 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Rodrigo Vivi @ 2024-09-26 14:36 UTC (permalink / raw) To: Vinay Belgaumkar; +Cc: intel-gfx, igt-dev, Badal Nilawar On Wed, Sep 25, 2024 at 03:09:23PM -0700, Vinay Belgaumkar wrote: > Some recent WAs reduce the GT freq during driver load/reset. Use sync > reset so that we give enough time for GT frequency to be restored after > reset has completed. > > Also, stash/restore frequencies per GT as they can be different. > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2676 > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2711 > > Cc: Badal Nilawar <badal.nilawar@intel.com> > Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > tests/intel/xe_gt_freq.c | 24 +++++++++++++++++------- > 1 file changed, 17 insertions(+), 7 deletions(-) > > diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c > index 427e12c55..de4d111ea 100644 > --- a/tests/intel/xe_gt_freq.c > +++ b/tests/intel/xe_gt_freq.c > @@ -341,7 +341,8 @@ static void test_reset(int fd, int gt_id, int cycles) > igt_assert_f(get_freq(fd, gt_id, "cur") == rpn, > "Failed after %d good cycles\n", i); > > - xe_force_gt_reset_async(fd, gt_id); > + xe_force_gt_reset_sync(fd, gt_id); > + > usleep(SLPC_FREQ_LATENCY_US); > > igt_assert_f(get_freq(fd, gt_id, "min") == rpn, > @@ -433,16 +434,23 @@ igt_main > int fd; > int gt; > struct drm_xe_engine_class_instance *hwe; > - uint32_t stash_min; > - uint32_t stash_max; > + uint32_t *stash_min, *stash_max; > + int num_gts; > > igt_fixture { > fd = drm_open_driver(DRIVER_XE); > > igt_require(xe_sysfs_gt_has_node(fd, 0, "freq0")); > + num_gts = xe_number_gt(fd); > + > /* The defaults are the same. Stashing the gt0 is enough */ > - stash_min = get_freq(fd, 0, "min"); > - stash_max = get_freq(fd, 0, "max"); > + stash_min = (uint32_t *) malloc(sizeof(uint32_t) * num_gts); > + stash_max = (uint32_t *) malloc(sizeof(uint32_t) * num_gts); > + > + xe_for_each_gt(fd, gt) { > + stash_min[gt] = get_freq(fd, gt, "min"); > + stash_max[gt] = get_freq(fd, gt, "max"); > + } > } > > igt_subtest("throttle_basic_api") { > @@ -517,9 +525,11 @@ igt_main > > igt_fixture { > xe_for_each_gt(fd, gt) { > - set_freq(fd, gt, "min", stash_min); > - set_freq(fd, gt, "max", stash_max); > + set_freq(fd, gt, "max", stash_max[gt]); > + set_freq(fd, gt, "min", stash_min[gt]); > } > + free(stash_min); > + free(stash_max); > drm_close_driver(fd); > } > } > -- > 2.38.1 > ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.xeFULL: failure for tests/xe_gt_freq: Use sync reset 2024-09-25 22:09 [PATCH i-g-t] tests/xe_gt_freq: Use sync reset Vinay Belgaumkar ` (3 preceding siblings ...) 2024-09-26 14:36 ` [PATCH i-g-t] " Rodrigo Vivi @ 2024-09-27 2:33 ` Patchwork 2024-09-27 18:07 ` Belgaumkar, Vinay 2024-10-03 18:54 ` ✓ CI.xeBAT: success for tests/xe_gt_freq: Use sync reset (rev2) Patchwork ` (3 subsequent siblings) 8 siblings, 1 reply; 13+ messages in thread From: Patchwork @ 2024-09-27 2:33 UTC (permalink / raw) To: Vinay Belgaumkar; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 102289 bytes --] == Series Details == Series: tests/xe_gt_freq: Use sync reset URL : https://patchwork.freedesktop.org/series/139120/ State : failure == Summary == CI Bug Log - changes from XEIGT_8032_full -> XEIGTPW_11806_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11806_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11806_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11806_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-lnl: NOTRUN -> [SKIP][1] +2 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format (NEW): - {shard-bmg}: [PASS][2] -> [SKIP][3] +6 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation (NEW): - {shard-bmg}: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1: - shard-lnl: [PASS][5] -> [FAIL][6] +45 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-3/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1: - shard-lnl: NOTRUN -> [FAIL][7] +2 other tests fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-5/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html * igt@kms_psr@psr-cursor-plane-move: - shard-lnl: [PASS][8] -> [DMESG-FAIL][9] +1 other test dmesg-fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_psr@psr-cursor-plane-move.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: [PASS][10] -> [SKIP][11] +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue: - shard-dg2-set2: [PASS][12] -> [FAIL][13] [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm: - shard-dg2-set2: NOTRUN -> [SKIP][14] +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html #### Warnings #### * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][15] ([Intel XE#1430]) -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch: - shard-dg2-set2: [SKIP][17] ([Intel XE#1201]) -> [SKIP][18] +13 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_async_flips@crc: - {shard-bmg}: [DMESG-FAIL][19] ([Intel XE#1033]) -> [SKIP][20] [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_async_flips@crc.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_async_flips@crc.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - {shard-bmg}: [SKIP][21] ([Intel XE#2385]) -> [SKIP][22] [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - {shard-bmg}: [SKIP][23] ([Intel XE#2327]) -> [SKIP][24] +6 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@linear-16bpp-rotate-180: - {shard-bmg}: [PASS][25] -> [SKIP][26] +158 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_big_fb@linear-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - {shard-bmg}: [SKIP][27] ([Intel XE#607]) -> [SKIP][28] [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - {shard-bmg}: [SKIP][29] ([Intel XE#1124]) -> [SKIP][30] +17 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - {shard-bmg}: [SKIP][31] ([Intel XE#367]) -> [SKIP][32] +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - {shard-bmg}: [PASS][33] -> [INCOMPLETE][34] +1 other test incomplete [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - {shard-bmg}: [SKIP][35] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][36] [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - {shard-bmg}: [SKIP][37] ([Intel XE#2251]) -> [SKIP][38] +21 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cdclk@mode-transition-all-outputs: - {shard-bmg}: [SKIP][39] ([Intel XE#2724]) -> [SKIP][40] [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-50: - {shard-bmg}: [SKIP][41] ([Intel XE#2325]) -> [SKIP][42] +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_chamelium_color@ctm-0-50.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - {shard-bmg}: [SKIP][43] ([Intel XE#2252]) -> [SKIP][44] +12 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic: - {shard-bmg}: [FAIL][45] ([Intel XE#1178]) -> [SKIP][46] [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_content_protection@atomic.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@uevent: - {shard-bmg}: [FAIL][47] ([Intel XE#1188]) -> [SKIP][48] [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-3/igt@kms_content_protection@uevent.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - {shard-bmg}: [SKIP][49] ([Intel XE#2320]) -> [SKIP][50] +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_dsc@dsc-with-output-formats: - {shard-bmg}: [SKIP][51] ([Intel XE#2244]) -> [SKIP][52] [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - {shard-bmg}: [SKIP][53] ([Intel XE#2380]) -> [SKIP][54] +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - {shard-bmg}: [SKIP][55] ([Intel XE#2311]) -> [SKIP][56] +42 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt: - {shard-bmg}: NOTRUN -> [FAIL][57] +1 other test fail [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - {shard-bmg}: [FAIL][58] ([Intel XE#2333]) -> [SKIP][59] +12 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - {shard-bmg}: [FAIL][60] -> [SKIP][61] +12 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - {shard-bmg}: [SKIP][62] ([Intel XE#2352]) -> [SKIP][63] [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - {shard-bmg}: [SKIP][64] ([Intel XE#2313]) -> [SKIP][65] +44 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - {shard-bmg}: [SKIP][66] ([Intel XE#2312]) -> [SKIP][67] +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_getfb@getfb-reject-ccs: - {shard-bmg}: [SKIP][68] ([Intel XE#2502]) -> [SKIP][69] [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_getfb@getfb-reject-ccs.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - {shard-bmg}: [SKIP][70] ([Intel XE#2501]) -> [SKIP][71] [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - {shard-bmg}: [SKIP][72] ([Intel XE#2763]) -> [SKIP][73] +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_pm_backlight@bad-brightness: - {shard-bmg}: [SKIP][74] ([Intel XE#870]) -> [SKIP][75] [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_pm_backlight@bad-brightness.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@deep-pkgc: - {shard-bmg}: [SKIP][76] ([Intel XE#2505]) -> [SKIP][77] [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_pm_dc@deep-pkgc.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - {shard-bmg}: NOTRUN -> [SKIP][78] +39 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area: - {shard-bmg}: [SKIP][79] ([Intel XE#1489]) -> [SKIP][80] +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html * igt@kms_psr@psr2-sprite-blt: - {shard-bmg}: [SKIP][81] ([Intel XE#2850]) -> [SKIP][82] +24 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_psr@psr2-sprite-blt.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_psr@psr2-sprite-blt.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - {shard-bmg}: [SKIP][83] ([Intel XE#2329]) -> [SKIP][84] +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - {shard-bmg}: [SKIP][85] ([Intel XE#1435]) -> [SKIP][86] [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vrr@flip-suspend: - {shard-bmg}: [SKIP][87] ([Intel XE#1499]) -> [SKIP][88] +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_vrr@flip-suspend.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - {shard-bmg}: [SKIP][89] ([Intel XE#756]) -> [SKIP][90] [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@sriov_basic@enable-vfs-autoprobe-off: - {shard-bmg}: [SKIP][91] ([Intel XE#2849]) -> [SKIP][92] [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - {shard-bmg}: [PASS][93] -> [FAIL][94] +3 other tests fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html New tests --------- New tests have been introduced between XEIGT_8032_full and XEIGTPW_11806_full: ### New IGT tests (200) ### * igt@kms_content_protection@content-type-change: - Statuses : 2 skip(s) - Exec time: [1.07, 1.12] s * igt@kms_content_protection@mei-interface: - Statuses : 3 skip(s) - Exec time: [0.00, 1.14] s * igt@kms_flip_event_leak@basic@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.42] s * igt@kms_flip_event_leak@basic@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.25] s * igt@kms_flip_event_leak@basic@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.25] s * igt@kms_lease@atomic-implicit-crtc: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 0.03] s * igt@kms_lease@atomic-implicit-crtc@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@kms_lease@atomic-implicit-crtc@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_lease@atomic-implicit-crtc@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@atomic-implicit-crtc@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_lease@atomic-implicit-crtc@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_lease@atomic-implicit-crtc@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_lease@atomic-implicit-crtc@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_lease@cursor-implicit-plane: - Statuses : 3 pass(s) - Exec time: [2.05, 3.23] s * igt@kms_lease@cursor-implicit-plane@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.40] s * igt@kms_lease@cursor-implicit-plane@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.25] s * igt@kms_lease@cursor-implicit-plane@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.56] s * igt@kms_lease@cursor-implicit-plane@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.26] s * igt@kms_lease@cursor-implicit-plane@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.25] s * igt@kms_lease@cursor-implicit-plane@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [1.33] s * igt@kms_lease@cursor-implicit-plane@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.27] s * igt@kms_lease@cursor-implicit-plane@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.23] s * igt@kms_lease@cursor-implicit-plane@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [1.33] s * igt@kms_lease@cursor-implicit-plane@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.26] s * igt@kms_lease@cursor-implicit-plane@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.24] s * igt@kms_lease@empty-lease: - Statuses : 3 pass(s) - Exec time: [0.00, 0.01] s * igt@kms_lease@empty-lease@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@empty-lease@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-again: - Statuses : 3 pass(s) - Exec time: [0.01] s * igt@kms_lease@lease-again@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_lease@lease-again@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-again@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_lease@lease-again@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-again@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-again@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-again@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-again@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-again@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-again@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-again@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-again@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-again@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-again@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-again@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-get: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_lease@lease-get@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_lease@lease-get@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-get@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector: - Statuses : 3 pass(s) - Exec time: [0.00, 0.01] s * igt@kms_lease@lease-invalid-connector@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-connector@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc: - Statuses : 3 pass(s) - Exec time: [0.00, 0.01] s * igt@kms_lease@lease-invalid-crtc@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-crtc@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane: - Statuses : 3 pass(s) - Exec time: [0.00, 0.01] s * igt@kms_lease@lease-invalid-plane@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-invalid-plane@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lease-revoke: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 0.43] s * igt@kms_lease@lease-revoke@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.07] s * igt@kms_lease@lease-revoke@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.02] s * igt@kms_lease@lease-revoke@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@kms_lease@lease-revoke@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.02] s * igt@kms_lease@lease-revoke@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.07] s * igt@kms_lease@lease-revoke@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.02] s * igt@kms_lease@lease-revoke@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.07] s * igt@kms_lease@lease-unleased-connector: - Statuses : 1 pass(s) - Exec time: [0.03] s * igt@kms_lease@lease-unleased-connector@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@kms_lease@lease-unleased-connector@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@kms_lease@lease-unleased-connector@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@kms_lease@lease-unleased-crtc: - Statuses : 2 pass(s) - Exec time: [0.49, 0.51] s * igt@kms_lease@lease-unleased-crtc@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.12] s * igt@kms_lease@lease-unleased-crtc@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.07] s * igt@kms_lease@lease-unleased-crtc@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.04] s * igt@kms_lease@lease-unleased-crtc@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.11] s * igt@kms_lease@lease-unleased-crtc@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@kms_lease@lease-unleased-crtc@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.03] s * igt@kms_lease@lease-unleased-crtc@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@kms_lease@lease-unleased-crtc@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@kms_lease@lease-unleased-crtc@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.03] s * igt@kms_lease@lease-unleased-crtc@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@kms_lease@lease-unleased-crtc@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@kms_lease@lease-unleased-crtc@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.03] s * igt@kms_lease@lessee-list: - Statuses : 3 pass(s) - Exec time: [0.00, 0.01] s * igt@kms_lease@lessee-list@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lessee-list@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lessee-list@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_lease@lessee-list@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lessee-list@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lessee-list@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lessee-list@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lessee-list@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lessee-list@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lessee-list@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@lessee-list@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_lease@page-flip-implicit-plane: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 3.32] s * igt@kms_lease@page-flip-implicit-plane@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.29] s * igt@kms_lease@page-flip-implicit-plane@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.57] s * igt@kms_lease@page-flip-implicit-plane@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.30] s * igt@kms_lease@page-flip-implicit-plane@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [1.40] s * igt@kms_lease@page-flip-implicit-plane@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.27] s * igt@kms_lease@page-flip-implicit-plane@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [1.34] s * igt@kms_lease@page-flip-implicit-plane@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.27] s * igt@kms_lease@setcrtc-implicit-plane: - Statuses : 3 pass(s) - Exec time: [2.21, 3.26] s * igt@kms_lease@setcrtc-implicit-plane@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.44] s * igt@kms_lease@setcrtc-implicit-plane@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.28] s * igt@kms_lease@setcrtc-implicit-plane@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.57] s * igt@kms_lease@setcrtc-implicit-plane@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.28] s * igt@kms_lease@setcrtc-implicit-plane@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.27] s * igt@kms_lease@setcrtc-implicit-plane@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [1.37] s * igt@kms_lease@setcrtc-implicit-plane@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.28] s * igt@kms_lease@setcrtc-implicit-plane@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.27] s * igt@kms_lease@setcrtc-implicit-plane@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [1.32] s * igt@kms_lease@setcrtc-implicit-plane@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.27] s * igt@kms_lease@setcrtc-implicit-plane@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.25] s * igt@kms_lease@simple-lease: - Statuses : 3 pass(s) - Exec time: [2.37, 3.93] s * igt@kms_lease@simple-lease@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.38] s * igt@kms_lease@simple-lease@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.34] s * igt@kms_lease@simple-lease@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.58] s * igt@kms_lease@simple-lease@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.35] s * igt@kms_lease@simple-lease@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.34] s * igt@kms_lease@simple-lease@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.30] s * igt@kms_lease@simple-lease@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [1.66] s * igt@kms_lease@simple-lease@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.28] s * igt@kms_lease@simple-lease@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.34] s * igt@kms_lease@simple-lease@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.30] s * igt@kms_lease@simple-lease@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [1.68] s * igt@kms_lease@simple-lease@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.29] s * igt@kms_lease@simple-lease@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.35] s * igt@kms_lease@simple-lease@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.30] s * igt@kms_lease@simple-lease@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.29] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - Statuses : 3 skip(s) - Exec time: [0.03, 4.71] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - Statuses : 3 skip(s) - Exec time: [0.03, 4.76] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - Statuses : 3 skip(s) - Exec time: [0.04, 4.57] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.02, 2.49] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - Statuses : 1 pass(s) 2 skip(s) - Exec time: [0.0, 4.21] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.02, 1.85] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 5.35] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - Statuses : 3 pass(s) - Exec time: [4.16, 7.17] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 3.85] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers: - Statuses : 2 pass(s) - Exec time: [2.43, 2.49] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - Statuses : 3 pass(s) - Exec time: [4.15, 7.88] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - Statuses : 3 pass(s) - Exec time: [1.77, 3.83] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - Statuses : 3 pass(s) - Exec time: [2.46, 4.54] s * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - Statuses : 3 pass(s) - Exec time: [4.07, 6.35] s * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation: - Statuses : 3 pass(s) - Exec time: [1.76, 3.84] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 3.99] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: - Statuses : 2 pass(s) - Exec time: [4.03, 4.12] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0, 3.50] s Known issues ------------ Here are the changes found in XEIGTPW_11806_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#1701]) +1 other test fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#1426]) +1 other test fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1407]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1201] / [Intel XE#316]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-464/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1124]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1124] / [Intel XE#1201]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#1201] / [Intel XE#787]) +13 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-464/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1201] / [Intel XE#1252]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][107] -> [FAIL][108] ([Intel XE#616]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][109] -> [INCOMPLETE][110] ([Intel XE#1195] / [Intel XE#1727]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#373]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@content-type-change (NEW): - shard-dg2-set2: [SKIP][113] ([Intel XE#455]) -> [SKIP][114] ([Intel XE#1201] / [Intel XE#455]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_content_protection@content-type-change.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@mei-interface (NEW): - {shard-bmg}: NOTRUN -> [SKIP][115] ([Intel XE#2341]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-3/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1424]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1201] / [Intel XE#455]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-lnl: [PASS][118] -> [SKIP][119] ([Intel XE#1508]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-hdmi-a6-dp4: - shard-dg2-set2: [PASS][120] -> [INCOMPLETE][121] ([Intel XE#1195]) +5 other tests incomplete [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-hdmi-a6-dp4.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1: - shard-lnl: [PASS][122] -> [FAIL][123] ([Intel XE#886]) +5 other tests fail [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1401] / [Intel XE#1745]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1401]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1397] / [Intel XE#1745]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1397]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#656]) +6 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1201] / [Intel XE#651]) +8 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1201] / [Intel XE#653]) +8 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [PASS][131] -> [SKIP][132] ([Intel XE#1201] / [Intel XE#455]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_hdr@invalid-hdr.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_hdr@invalid-hdr.html * igt@kms_plane@plane-position-covered: - shard-lnl: [PASS][133] -> [DMESG-WARN][134] ([Intel XE#324]) +2 other tests dmesg-warn [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@kms_plane@plane-position-covered.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@kms_plane@plane-position-covered.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers (NEW): - shard-dg2-set2: [SKIP][135] ([Intel XE#455]) -> [SKIP][136] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format (NEW): - shard-dg2-set2: [SKIP][137] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][138] ([Intel XE#2763] / [Intel XE#455]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation (NEW): - shard-dg2-set2: [SKIP][139] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][140] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#2763]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-dg2-set2: [PASS][142] -> [INCOMPLETE][143] ([Intel XE#1195] / [Intel XE#2566]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1201] / [Intel XE#870]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-435/igt@kms_pm_backlight@fade.html * igt@kms_psr@fbc-psr2-cursor-render@edp-1: - shard-lnl: [PASS][145] -> [FAIL][146] ([Intel XE#1649]) +99 other tests fail [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-lnl: NOTRUN -> [FAIL][147] ([Intel XE#1649]) +3 other tests fail [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@pr-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1406]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-4/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr2-primary-blt: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1201] / [Intel XE#2850]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_psr@psr2-primary-blt.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [PASS][150] -> [FAIL][151] ([Intel XE#2443]) +1 other test fail [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_vrr@flip-basic-fastset.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [FAIL][152] ([Intel XE#2443]) +1 other test fail [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-4/igt@kms_vrr@lobf@pipe-a-edp-1.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#1201] / [Intel XE#756]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][154] ([Intel XE#1600]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [PASS][155] -> [TIMEOUT][156] ([Intel XE#1473]) +1 other test timeout [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-small.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1392]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt@xe_exec_fault_mode@twice-basic-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#1201] / [Intel XE#288]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@xe_exec_fault_mode@twice-basic-prefetch.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [PASS][159] -> [TIMEOUT][160] ([Intel XE#2105]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: [PASS][161] -> [DMESG-FAIL][162] ([Intel XE#1620]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@xe_gt_freq@freq_reset_multiple.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_oa@invalid-map-oa-buffer: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#1201] / [Intel XE#2541]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-466/igt@xe_oa@invalid-map-oa-buffer.html * igt@xe_oa@mmio-triggered-reports: - shard-lnl: [PASS][164] -> [FAIL][165] ([Intel XE#2249]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@xe_oa@mmio-triggered-reports.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-5/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@non-zero-reason: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#2541]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_oa@non-zero-reason.html * igt@xe_oa@oa-exponents: - shard-lnl: [PASS][167] -> [FAIL][168] ([Intel XE#2723]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@xe_oa@oa-exponents.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@xe_oa@oa-exponents.html * igt@xe_oa@oa-exponents@ccs-0: - shard-lnl: NOTRUN -> [FAIL][169] ([Intel XE#2723]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@xe_oa@oa-exponents@ccs-0.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [PASS][170] -> [ABORT][171] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@xe_pm@s4-basic-exec.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-2/igt@xe_pm@s4-basic-exec.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#1201]) +4 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@xe_query@multigpu-query-engines.html #### Possible fixes #### * igt@core_hotunplug@hotreplug-lateclose: - {shard-bmg}: [ABORT][173] -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@core_hotunplug@hotreplug-lateclose.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-3/igt@core_hotunplug@hotreplug-lateclose.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-lnl: [FAIL][175] ([Intel XE#1426]) -> [PASS][176] +1 other test pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][177] ([Intel XE#1426]) -> [PASS][178] +1 other test pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - {shard-bmg}: [INCOMPLETE][179] -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3: - {shard-bmg}: [DMESG-WARN][181] ([Intel XE#877]) -> [PASS][182] +3 other tests pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - {shard-bmg}: [DMESG-WARN][183] ([Intel XE#2791] / [Intel XE#877]) -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - {shard-bmg}: [SKIP][185] ([Intel XE#2425]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - {shard-bmg}: [SKIP][187] -> [PASS][188] +3 other tests pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a3: - {shard-bmg}: [DMESG-WARN][189] -> [PASS][190] +5 other tests pass [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-4/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html * igt@kms_flip@wf_vblank-ts-check@a-edp1: - shard-lnl: [FAIL][191] ([Intel XE#886]) -> [PASS][192] +3 other tests pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@a-edp1.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@a-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode: - shard-dg2-set2: [INCOMPLETE][193] ([Intel XE#1195]) -> [PASS][194] +1 other test pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode.html * igt@kms_plane@plane-position-hole@pipe-a-plane-4: - shard-lnl: [DMESG-FAIL][195] ([Intel XE#324]) -> [PASS][196] +1 other test pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html * igt@kms_plane@plane-position-hole@pipe-b-plane-3: - shard-lnl: [DMESG-WARN][197] ([Intel XE#324]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-b-plane-3.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_plane@plane-position-hole@pipe-b-plane-3.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [FAIL][199] ([Intel XE#616]) -> [PASS][200] +3 other tests pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_scaling@planes-upscale-20x20@pipe-a: - {shard-bmg}: [SKIP][201] ([Intel XE#2763]) -> [PASS][202] +4 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20@pipe-a.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20@pipe-a.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][203] ([Intel XE#718]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html * igt@xe_pm@s3-vm-bind-userptr: - {shard-bmg}: [DMESG-WARN][205] ([Intel XE#569]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-1/igt@xe_pm@s3-vm-bind-userptr.html - shard-dg2-set2: [INCOMPLETE][207] ([Intel XE#1195] / [Intel XE#569]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_pm@s3-vm-bind-userptr.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_pm@s3-vm-bind-userptr.html #### Warnings #### * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][209] ([Intel XE#316]) -> [SKIP][210] ([Intel XE#1201] / [Intel XE#316]) +5 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][211] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][212] ([Intel XE#316]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][213] ([Intel XE#1124]) -> [SKIP][214] ([Intel XE#1124] / [Intel XE#1201]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-set2: [SKIP][215] ([Intel XE#619]) -> [SKIP][216] ([Intel XE#1201] / [Intel XE#619]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][217] ([Intel XE#610]) -> [SKIP][218] ([Intel XE#1201] / [Intel XE#610]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: [SKIP][219] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][220] ([Intel XE#1124]) +7 other tests skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p: - shard-dg2-set2: [SKIP][221] ([Intel XE#367]) -> [SKIP][222] ([Intel XE#1201] / [Intel XE#367]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: [SKIP][223] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][224] ([Intel XE#2191]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][225] ([Intel XE#2191]) -> [SKIP][226] ([Intel XE#1201] / [Intel XE#2191]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][227] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][228] ([Intel XE#367]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][229] ([Intel XE#787]) -> [SKIP][230] ([Intel XE#1201] / [Intel XE#787]) +76 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4: - shard-dg2-set2: [SKIP][231] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][232] ([Intel XE#787]) +55 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: [SKIP][233] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][234] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +21 other tests skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][235] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][236] ([Intel XE#1252]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [SKIP][237] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][238] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: [SKIP][239] ([Intel XE#1201] / [Intel XE#314]) -> [SKIP][240] ([Intel XE#314]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2-set2: [SKIP][241] ([Intel XE#306]) -> [SKIP][242] ([Intel XE#1201] / [Intel XE#306]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][243] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][244] ([Intel XE#306]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_chamelium_color@gamma.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][245] ([Intel XE#373]) -> [SKIP][246] ([Intel XE#1201] / [Intel XE#373]) +6 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: [SKIP][247] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][248] ([Intel XE#373]) +4 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: [SKIP][249] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][250] ([Intel XE#307]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-1.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][251] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][252] ([Intel XE#308]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: [SKIP][253] ([Intel XE#308]) -> [SKIP][254] ([Intel XE#1201] / [Intel XE#308]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x170.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][255] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][256] ([Intel XE#455]) +12 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][257] ([Intel XE#455]) -> [SKIP][258] ([Intel XE#1201] / [Intel XE#455]) +13 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][259] ([Intel XE#651]) -> [SKIP][260] ([Intel XE#1201] / [Intel XE#651]) +21 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][261] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][262] ([Intel XE#651]) +21 other tests skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][263] ([Intel XE#1201]) -> [SKIP][264] ([Intel XE#1201] / [Intel XE#658]) +2 other tests skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][265] ([Intel XE#1158] / [Intel XE#1201]) -> [SKIP][266] ([Intel XE#1158]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][267] ([Intel XE#653]) -> [SKIP][268] ([Intel XE#1201] / [Intel XE#653]) +17 other tests skip [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][269] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][270] ([Intel XE#653]) +19 other tests skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-slowdraw.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_plane@plane-position-hole: - shard-lnl: [DMESG-FAIL][271] ([Intel XE#324]) -> [DMESG-WARN][272] ([Intel XE#324]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_plane@plane-position-hole.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_plane@plane-position-hole.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d: - shard-dg2-set2: [SKIP][273] ([Intel XE#455]) -> [SKIP][274] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) +4 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][275] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][276] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) +4 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: - shard-dg2-set2: [SKIP][277] ([Intel XE#1201]) -> [SKIP][278] ([Intel XE#1201] / [Intel XE#2763]) +8 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-dg2-set2: [SKIP][279] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][280] ([Intel XE#2763] / [Intel XE#455]) +6 other tests skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a: - shard-dg2-set2: [SKIP][281] ([Intel XE#2763]) -> [SKIP][282] ([Intel XE#1201] / [Intel XE#2763]) +8 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: [SKIP][283] ([Intel XE#1201]) -> [SKIP][284] ([Intel XE#2763]) +11 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][285] ([Intel XE#1201]) -> [SKIP][286] ([Intel XE#1201] / [Intel XE#870]) +3 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][287] ([Intel XE#1489]) -> [SKIP][288] ([Intel XE#1201] / [Intel XE#1489]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][289] ([Intel XE#1201]) -> [SKIP][290] ([Intel XE#1489]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][291] ([Intel XE#1201]) -> [SKIP][292] ([Intel XE#1201] / [Intel XE#1489]) +17 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: [SKIP][293] ([Intel XE#1201]) -> [SKIP][294] ([Intel XE#2850]) +8 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: [SKIP][295] ([Intel XE#2850]) -> [SKIP][296] ([Intel XE#1201] / [Intel XE#2850]) +11 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][297] ([Intel XE#1201]) -> [SKIP][298] ([Intel XE#1201] / [Intel XE#2850]) +62 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_psr@psr-dpms.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_psr@psr-dpms.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2-set2: [SKIP][299] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][300] ([Intel XE#327]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][301] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][302] ([Intel XE#1127]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][303] ([Intel XE#327]) -> [SKIP][304] ([Intel XE#1201] / [Intel XE#327]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_writeback@writeback-check-output: - shard-dg2-set2: [SKIP][305] ([Intel XE#756]) -> [SKIP][306] ([Intel XE#1201] / [Intel XE#756]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_writeback@writeback-check-output.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-466/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][307] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][308] ([Intel XE#756]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: [SKIP][309] ([Intel XE#2849]) -> [SKIP][310] ([Intel XE#1201] / [Intel XE#2849]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-off.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][311] ([Intel XE#1201]) -> [SKIP][312] ([Intel XE#2849]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind: - shard-dg2-set2: [SKIP][313] ([Intel XE#288]) -> [SKIP][314] ([Intel XE#1201] / [Intel XE#288]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-464/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: [SKIP][315] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][316] ([Intel XE#288]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: [SKIP][317] -> [SKIP][318] ([Intel XE#1201]) +15 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_mmap@small-bar: - shard-dg2-set2: [SKIP][319] ([Intel XE#512]) -> [SKIP][320] ([Intel XE#1201] / [Intel XE#512]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_mmap@small-bar.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@xe_mmap@small-bar.html * igt@xe_oa@mmio-triggered-reports: - shard-dg2-set2: [SKIP][321] ([Intel XE#1201]) -> [SKIP][322] ([Intel XE#2541]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_oa@mmio-triggered-reports.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@oa-regs-whitelisted: - shard-dg2-set2: [SKIP][323] ([Intel XE#2541]) -> [SKIP][324] ([Intel XE#1201] / [Intel XE#2541]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_oa@oa-regs-whitelisted.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-436/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: [SKIP][325] ([Intel XE#1201]) -> [SKIP][326] ([Intel XE#1201] / [Intel XE#2541]) +27 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][327] ([Intel XE#1337]) -> [SKIP][328] ([Intel XE#1201] / [Intel XE#1337]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][329] ([Intel XE#1201]) -> [SKIP][330] ([Intel XE#1201] / [Intel XE#977]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@xe_pat@pat-index-xe2.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: [SKIP][331] ([Intel XE#1201] / [Intel XE#2838]) -> [SKIP][332] ([Intel XE#2838]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@xe_pat@pat-index-xehpc.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@d3cold-mmap-system: - shard-dg2-set2: [SKIP][333] ([Intel XE#366]) -> [SKIP][334] ([Intel XE#1201] / [Intel XE#366]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-multiple-execs: - shard-dg2-set2: [SKIP][335] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][336] ([Intel XE#366]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@xe_pm@d3cold-multiple-execs.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_pm@d3cold-multiple-execs.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2452]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2452 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 Build changes ------------- * IGT: IGT_8032 -> IGTPW_11806 * Linux: xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 -> xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da IGTPW_11806: 38b2e82bf1fc1b891e22947ab39bb1a8407db805 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8032: 8032 xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47: abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da: 6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/index.html [-- Attachment #2: Type: text/html, Size: 128740 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: ✗ CI.xeFULL: failure for tests/xe_gt_freq: Use sync reset 2024-09-27 2:33 ` ✗ CI.xeFULL: failure for " Patchwork @ 2024-09-27 18:07 ` Belgaumkar, Vinay 0 siblings, 0 replies; 13+ messages in thread From: Belgaumkar, Vinay @ 2024-09-27 18:07 UTC (permalink / raw) To: igt-dev [-- Attachment #1: Type: text/plain, Size: 126303 bytes --] On 9/26/2024 7:33 PM, Patchwork wrote: > Project List - Patchwork *Patch Details* > *Series:* tests/xe_gt_freq: Use sync reset > *URL:* https://patchwork.freedesktop.org/series/139120/ > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/index.html > > > CI Bug Log - changes from XEIGT_8032_full -> XEIGTPW_11806_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with XEIGTPW_11806_full absolutely need > to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_11806_full, please notify your bug team > (I915-ci-infra@lists.freedesktop.org) to allow them > to document this new failure mode, which will reduce false positives > in CI. > > > Participating hosts (4 -> 4) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > XEIGTPW_11806_full: > > > IGT changes > > > Possible regressions > > * > > igt@kms_flip@2x-dpms-vs-vblank-race: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_flip@2x-dpms-vs-vblank-race.html> > +2 other tests skip > * > > igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format > (NEW): > > o {shard-bmg}: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html> > +6 other tests skip > * > > igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation (NEW): > > o {shard-bmg}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html> > +1 other test skip > * > > igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-3/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html> > +45 other tests fail > * > > igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1: > > o shard-lnl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-5/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html> > +2 other tests fail > * > > igt@kms_psr@psr-cursor-plane-move: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_psr@psr-cursor-plane-move.html> > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@kms_psr@psr-cursor-plane-move.html> > +1 other test dmesg-fail > * > > igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> > +2 other tests skip > * > > igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html> > * > > igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html> > +2 other tests skip > Not related to this patch. This change only affects one specific subtest of xe_gt_freq. Thanks, Vinay. > * > > > Warnings > > * > > igt@kms_pm_dc@dc6-psr: > > o shard-lnl: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html> > (Intel XE#1430 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html> > * > > igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-prefetch.html> > +13 other tests skip > > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * > > igt@kms_async_flips@crc: > > o {shard-bmg}: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_async_flips@crc.html> > (Intel XE#1033 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_async_flips@crc.html> > * > > igt@kms_atomic@plane-primary-overlay-mutable-zpos: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> > (Intel XE#2385 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> > * > > igt@kms_big_fb@4-tiled-64bpp-rotate-90: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html> > (Intel XE#2327 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html> > +6 other tests skip > * > > igt@kms_big_fb@linear-16bpp-rotate-180: > > o {shard-bmg}: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_big_fb@linear-16bpp-rotate-180.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_big_fb@linear-16bpp-rotate-180.html> > +158 other tests skip > * > > igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> > (Intel XE#607 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> > * > > igt@kms_big_fb@yf-tiled-32bpp-rotate-0: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html> > (Intel XE#1124 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html> > +17 other tests skip > * > > igt@kms_bw@linear-tiling-1-displays-1920x1080p: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html> > (Intel XE#367 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html> > +2 other tests skip > * > > igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: > > o {shard-bmg}: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> > +1 other test incomplete > * > > igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> > (Intel XE#2652 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / > Intel XE#787 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html> > (Intel XE#2251 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html> > +21 other tests skip > * > > igt@kms_cdclk@mode-transition-all-outputs: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html> > (Intel XE#2724 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_cdclk@mode-transition-all-outputs.html> > * > > igt@kms_chamelium_color@ctm-0-50: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_chamelium_color@ctm-0-50.html> > (Intel XE#2325 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_chamelium_color@ctm-0-50.html> > +4 other tests skip > * > > igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html> > (Intel XE#2252 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html> > +12 other tests skip > * > > igt@kms_content_protection@atomic: > > o {shard-bmg}: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_content_protection@atomic.html> > (Intel XE#1178 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_content_protection@atomic.html> > * > > igt@kms_content_protection@uevent: > > o {shard-bmg}: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-3/igt@kms_content_protection@uevent.html> > (Intel XE#1188 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_content_protection@uevent.html> > * > > igt@kms_cursor_crc@cursor-offscreen-128x42: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html> > (Intel XE#2320 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-128x42.html> > +8 other tests skip > * > > igt@kms_dsc@dsc-with-output-formats: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats.html> > (Intel XE#2244 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_dsc@dsc-with-output-formats.html> > * > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html> > (Intel XE#2380 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html> > +4 other tests skip > * > > igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html> > (Intel XE#2311 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html> > +42 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt: > > o {shard-bmg}: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html> > +1 other test fail > * > > igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: > > o {shard-bmg}: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html> > (Intel XE#2333 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html> > +12 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-tiling-linear: > > o {shard-bmg}: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html> > +12 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html> > (Intel XE#2352 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html> > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> > (Intel XE#2313 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html> > +44 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html> > (Intel XE#2312 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html> > +5 other tests skip > * > > igt@kms_getfb@getfb-reject-ccs: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_getfb@getfb-reject-ccs.html> > (Intel XE#2502 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_getfb@getfb-reject-ccs.html> > * > > igt@kms_multipipe_modeset@basic-max-pipe-crc-check: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > (Intel XE#2501 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html> > (Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_plane_scaling@planes-downscale-factor-0-25.html> > +1 other test skip > * > > igt@kms_pm_backlight@bad-brightness: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_pm_backlight@bad-brightness.html> > (Intel XE#870 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_pm_backlight@bad-brightness.html> > * > > igt@kms_pm_dc@deep-pkgc: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_pm_dc@deep-pkgc.html> > (Intel XE#2505 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_pm_dc@deep-pkgc.html> > * > > igt@kms_pm_rpm@dpms-mode-unset-lpsp: > > o {shard-bmg}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> > +39 other tests skip > * > > igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html> > (Intel XE#1489 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html> > +5 other tests skip > * > > igt@kms_psr@psr2-sprite-blt: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_psr@psr2-sprite-blt.html> > (Intel XE#2850 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_psr@psr2-sprite-blt.html> > +24 other tests skip > * > > igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> > (Intel XE#2329 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> > +1 other test skip > * > > igt@kms_setmode@invalid-clone-exclusive-crtc: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html> > (Intel XE#1435 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html> > * > > igt@kms_vrr@flip-suspend: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_vrr@flip-suspend.html> > (Intel XE#1499 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_vrr@flip-suspend.html> > +3 other tests skip > * > > igt@kms_writeback@writeback-check-output-xrgb2101010: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html> > (Intel XE#756 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html> > * > > igt@sriov_basic@enable-vfs-autoprobe-off: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off.html> > (Intel XE#2849 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@sriov_basic@enable-vfs-autoprobe-off.html> > * > > igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: > > o {shard-bmg}: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-6/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html> > +3 other tests fail > > > New tests > > New tests have been introduced between XEIGT_8032_full and > XEIGTPW_11806_full: > > > New IGT tests (200) > > * > > igt@kms_content_protection@content-type-change: > > o Statuses : 2 skip(s) > o Exec time: [1.07, 1.12] s > * > > igt@kms_content_protection@mei-interface: > > o Statuses : 3 skip(s) > o Exec time: [0.00, 1.14] s > * > > igt@kms_flip_event_leak@basic@pipe-a-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.42] s > * > > igt@kms_flip_event_leak@basic@pipe-b-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.25] s > * > > igt@kms_flip_event_leak@basic@pipe-c-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.25] s > * > > igt@kms_lease@atomic-implicit-crtc: > > o Statuses : 2 pass(s) 1 skip(s) > o Exec time: [0.0, 0.03] s > * > > igt@kms_lease@atomic-implicit-crtc@pipe-a-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.01] s > * > > igt@kms_lease@atomic-implicit-crtc@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.00] s > * > > igt@kms_lease@atomic-implicit-crtc@pipe-b-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@atomic-implicit-crtc@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.00] s > * > > igt@kms_lease@atomic-implicit-crtc@pipe-c-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.00] s > * > > igt@kms_lease@atomic-implicit-crtc@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.00] s > * > > igt@kms_lease@atomic-implicit-crtc@pipe-d-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.00] s > * > > igt@kms_lease@cursor-implicit-plane: > > o Statuses : 3 pass(s) > o Exec time: [2.05, 3.23] s > * > > igt@kms_lease@cursor-implicit-plane@pipe-a-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.40] s > * > > igt@kms_lease@cursor-implicit-plane@pipe-a-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.25] s > * > > igt@kms_lease@cursor-implicit-plane@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.56] s > * > > igt@kms_lease@cursor-implicit-plane@pipe-b-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.26] s > * > > igt@kms_lease@cursor-implicit-plane@pipe-b-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.25] s > * > > igt@kms_lease@cursor-implicit-plane@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [1.33] s > * > > igt@kms_lease@cursor-implicit-plane@pipe-c-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.27] s > * > > igt@kms_lease@cursor-implicit-plane@pipe-c-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.23] s > * > > igt@kms_lease@cursor-implicit-plane@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [1.33] s > * > > igt@kms_lease@cursor-implicit-plane@pipe-d-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.26] s > * > > igt@kms_lease@cursor-implicit-plane@pipe-d-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.24] s > * > > igt@kms_lease@empty-lease: > > o Statuses : 3 pass(s) > o Exec time: [0.00, 0.01] s > * > > igt@kms_lease@empty-lease@pipe-a-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-a-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-a-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-b-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-b-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-b-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-c-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-c-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-c-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-d-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-d-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@empty-lease@pipe-d-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-again: > > o Statuses : 3 pass(s) > o Exec time: [0.01] s > * > > igt@kms_lease@lease-again@pipe-a-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.00] s > * > > igt@kms_lease@lease-again@pipe-a-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-again@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.00] s > * > > igt@kms_lease@lease-again@pipe-a-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-again@pipe-b-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-again@pipe-b-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-again@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-again@pipe-b-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-again@pipe-c-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-again@pipe-c-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-again@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-again@pipe-c-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-again@pipe-d-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-again@pipe-d-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-again@pipe-d-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-get: > > o Statuses : 1 pass(s) 1 skip(s) > o Exec time: [0.0, 0.00] s > * > > igt@kms_lease@lease-get@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.00] s > * > > igt@kms_lease@lease-get@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-get@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector: > > o Statuses : 3 pass(s) > o Exec time: [0.00, 0.01] s > * > > igt@kms_lease@lease-invalid-connector@pipe-a-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-a-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-a-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-b-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-b-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-b-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-c-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-c-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-c-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-d-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-d-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-connector@pipe-d-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc: > > o Statuses : 3 pass(s) > o Exec time: [0.00, 0.01] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-a-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-a-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-a-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-b-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-b-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-b-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-c-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-c-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-c-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-d-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-d-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-crtc@pipe-d-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane: > > o Statuses : 3 pass(s) > o Exec time: [0.00, 0.01] s > * > > igt@kms_lease@lease-invalid-plane@pipe-a-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-a-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-a-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-b-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-b-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-b-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-c-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-c-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-c-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-d-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-d-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-invalid-plane@pipe-d-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lease-revoke: > > o Statuses : 2 pass(s) 1 skip(s) > o Exec time: [0.0, 0.43] s > * > > igt@kms_lease@lease-revoke@pipe-a-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.07] s > * > > igt@kms_lease@lease-revoke@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.02] s > * > > igt@kms_lease@lease-revoke@pipe-b-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.06] s > * > > igt@kms_lease@lease-revoke@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.02] s > * > > igt@kms_lease@lease-revoke@pipe-c-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.07] s > * > > igt@kms_lease@lease-revoke@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.02] s > * > > igt@kms_lease@lease-revoke@pipe-d-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.07] s > * > > igt@kms_lease@lease-unleased-connector: > > o Statuses : 1 pass(s) > o Exec time: [0.03] s > * > > igt@kms_lease@lease-unleased-connector@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.01] s > * > > igt@kms_lease@lease-unleased-connector@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.01] s > * > > igt@kms_lease@lease-unleased-connector@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.01] s > * > > igt@kms_lease@lease-unleased-crtc: > > o Statuses : 2 pass(s) > o Exec time: [0.49, 0.51] s > * > > igt@kms_lease@lease-unleased-crtc@pipe-a-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.12] s > * > > igt@kms_lease@lease-unleased-crtc@pipe-a-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.07] s > * > > igt@kms_lease@lease-unleased-crtc@pipe-a-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.04] s > * > > igt@kms_lease@lease-unleased-crtc@pipe-b-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.11] s > * > > igt@kms_lease@lease-unleased-crtc@pipe-b-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.06] s > * > > igt@kms_lease@lease-unleased-crtc@pipe-b-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.03] s > * > > igt@kms_lease@lease-unleased-crtc@pipe-c-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.06] s > * > > igt@kms_lease@lease-unleased-crtc@pipe-c-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.06] s > * > > igt@kms_lease@lease-unleased-crtc@pipe-c-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.03] s > * > > igt@kms_lease@lease-unleased-crtc@pipe-d-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.06] s > * > > igt@kms_lease@lease-unleased-crtc@pipe-d-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.06] s > * > > igt@kms_lease@lease-unleased-crtc@pipe-d-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.03] s > * > > igt@kms_lease@lessee-list: > > o Statuses : 3 pass(s) > o Exec time: [0.00, 0.01] s > * > > igt@kms_lease@lessee-list@pipe-a-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lessee-list@pipe-a-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lessee-list@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.00] s > * > > igt@kms_lease@lessee-list@pipe-b-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lessee-list@pipe-b-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lessee-list@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lessee-list@pipe-c-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lessee-list@pipe-c-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lessee-list@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lessee-list@pipe-d-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@lessee-list@pipe-d-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.0] s > * > > igt@kms_lease@page-flip-implicit-plane: > > o Statuses : 2 pass(s) 1 skip(s) > o Exec time: [0.0, 3.32] s > * > > igt@kms_lease@page-flip-implicit-plane@pipe-a-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.29] s > * > > igt@kms_lease@page-flip-implicit-plane@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.57] s > * > > igt@kms_lease@page-flip-implicit-plane@pipe-b-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.30] s > * > > igt@kms_lease@page-flip-implicit-plane@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [1.40] s > * > > igt@kms_lease@page-flip-implicit-plane@pipe-c-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.27] s > * > > igt@kms_lease@page-flip-implicit-plane@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [1.34] s > * > > igt@kms_lease@page-flip-implicit-plane@pipe-d-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.27] s > * > > igt@kms_lease@setcrtc-implicit-plane: > > o Statuses : 3 pass(s) > o Exec time: [2.21, 3.26] s > * > > igt@kms_lease@setcrtc-implicit-plane@pipe-a-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.44] s > * > > igt@kms_lease@setcrtc-implicit-plane@pipe-a-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.28] s > * > > igt@kms_lease@setcrtc-implicit-plane@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.57] s > * > > igt@kms_lease@setcrtc-implicit-plane@pipe-b-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.28] s > * > > igt@kms_lease@setcrtc-implicit-plane@pipe-b-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.27] s > * > > igt@kms_lease@setcrtc-implicit-plane@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [1.37] s > * > > igt@kms_lease@setcrtc-implicit-plane@pipe-c-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.28] s > * > > igt@kms_lease@setcrtc-implicit-plane@pipe-c-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.27] s > * > > igt@kms_lease@setcrtc-implicit-plane@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [1.32] s > * > > igt@kms_lease@setcrtc-implicit-plane@pipe-d-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.27] s > * > > igt@kms_lease@setcrtc-implicit-plane@pipe-d-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.25] s > * > > igt@kms_lease@simple-lease: > > o Statuses : 3 pass(s) > o Exec time: [2.37, 3.93] s > * > > igt@kms_lease@simple-lease@pipe-a-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.38] s > * > > igt@kms_lease@simple-lease@pipe-a-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.34] s > * > > igt@kms_lease@simple-lease@pipe-a-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [0.58] s > * > > igt@kms_lease@simple-lease@pipe-a-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.35] s > * > > igt@kms_lease@simple-lease@pipe-b-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.34] s > * > > igt@kms_lease@simple-lease@pipe-b-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.30] s > * > > igt@kms_lease@simple-lease@pipe-b-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [1.66] s > * > > igt@kms_lease@simple-lease@pipe-b-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.28] s > * > > igt@kms_lease@simple-lease@pipe-c-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.34] s > * > > igt@kms_lease@simple-lease@pipe-c-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.30] s > * > > igt@kms_lease@simple-lease@pipe-c-edp-1: > > o Statuses : 1 pass(s) > o Exec time: [1.68] s > * > > igt@kms_lease@simple-lease@pipe-c-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.29] s > * > > igt@kms_lease@simple-lease@pipe-d-dp-2: > > o Statuses : 1 pass(s) > o Exec time: [0.35] s > * > > igt@kms_lease@simple-lease@pipe-d-dp-4: > > o Statuses : 1 pass(s) > o Exec time: [0.30] s > * > > igt@kms_lease@simple-lease@pipe-d-hdmi-a-3: > > o Statuses : 1 pass(s) > o Exec time: [0.29] s > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: > > o Statuses : 3 skip(s) > o Exec time: [0.03, 4.71] s > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: > > o Statuses : 3 skip(s) > o Exec time: [0.03, 4.76] s > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: > > o Statuses : 3 skip(s) > o Exec time: [0.04, 4.57] s > * > > igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: > > o Statuses : 2 pass(s) 1 skip(s) > o Exec time: [0.02, 2.49] s > * > > igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: > > o Statuses : 1 pass(s) 2 skip(s) > o Exec time: [0.0, 4.21] s > * > > igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation: > > o Statuses : 2 pass(s) 1 skip(s) > o Exec time: [0.02, 1.85] s > * > > igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers: > > o Statuses : 2 pass(s) 1 skip(s) > o Exec time: [0.0, 5.35] s > * > > igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: > > o Statuses : 3 pass(s) > o Exec time: [4.16, 7.17] s > * > > igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: > > o Statuses : 2 pass(s) 1 skip(s) > o Exec time: [0.0, 3.85] s > * > > igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers: > > o Statuses : 2 pass(s) > o Exec time: [2.43, 2.49] s > * > > igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: > > o Statuses : 3 pass(s) > o Exec time: [4.15, 7.88] s > * > > igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: > > o Statuses : 3 pass(s) > o Exec time: [1.77, 3.83] s > * > > igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: > > o Statuses : 3 pass(s) > o Exec time: [2.46, 4.54] s > * > > igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: > > o Statuses : 3 pass(s) > o Exec time: [4.07, 6.35] s > * > > igt@kms_plane_scaling@plane-upscale-20x20-with-rotation: > > o Statuses : 3 pass(s) > o Exec time: [1.76, 3.84] s > * > > igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: > > o Statuses : 2 pass(s) 1 skip(s) > o Exec time: [0.0, 3.99] s > * > > igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: > > o Statuses : 2 pass(s) > o Exec time: [4.03, 4.12] s > * > > igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: > > o Statuses : 2 pass(s) 1 skip(s) > o Exec time: [0.0, 3.50] s > > > Known issues > > Here are the changes found in XEIGTPW_11806_full that come from known > issues: > > > IGT changes > > > Issues hit > > * > > igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html> > (Intel XE#1701 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701>) +1 > other test fail > * > > igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html> > (Intel XE#1426 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426>) +1 > other test fail > * > > igt@kms_big_fb@linear-16bpp-rotate-90: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_big_fb@linear-16bpp-rotate-90.html> > (Intel XE#1407 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) > * > > igt@kms_big_fb@linear-8bpp-rotate-270: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-464/igt@kms_big_fb@linear-8bpp-rotate-270.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#316 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) > * > > igt@kms_big_fb@yf-tiled-32bpp-rotate-180: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html> > (Intel XE#1124 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +1 > other test skip > * > > igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> > (Intel XE#1124 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124> / > Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) +3 > other tests skip > * > > igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#367 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +1 > other test skip > * > > igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#787 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +13 > other tests skip > * > > igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-464/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / > Intel XE#787 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +3 > other tests skip > * > > igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#1252 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252>) > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html> > (Intel XE#616 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/616>) > * > > igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html> > (Intel XE#1195 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / > Intel XE#1727 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) > * > > igt@kms_chamelium_hpd@common-hpd-after-suspend: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html> > (Intel XE#373 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +1 > other test skip > * > > igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#373 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +4 > other tests skip > * > > igt@kms_content_protection@content-type-change (NEW): > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_content_protection@content-type-change.html> > (Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_content_protection@content-type-change.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) > * > > igt@kms_content_protection@mei-interface (NEW): > > o {shard-bmg}: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-3/igt@kms_content_protection@mei-interface.html> > (Intel XE#2341 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) > * > > igt@kms_cursor_crc@cursor-random-256x85: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@kms_cursor_crc@cursor-random-256x85.html> > (Intel XE#1424 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) > * > > igt@kms_cursor_crc@cursor-sliding-max-size: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-max-size.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 > other test skip > * > > igt@kms_dirtyfb@psr-dirtyfb-ioctl: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> > (Intel XE#1508 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508>) > * > > igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-hdmi-a6-dp4: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-hdmi-a6-dp4.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-hdmi-a6-dp4.html> > (Intel XE#1195 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>) +5 > other tests incomplete > * > > igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html> > (Intel XE#886 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +5 > other tests fail > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html> > (Intel XE#1401 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / > Intel XE#1745 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode.html> > (Intel XE#1401 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html> > (Intel XE#1397 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397> / > Intel XE#1745 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html> > (Intel XE#1397 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397>) > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html> > (Intel XE#656 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +6 > other tests skip > * > > igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#651 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +8 > other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#653 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +8 > other tests skip > * > > igt@kms_hdr@invalid-hdr: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_hdr@invalid-hdr.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_hdr@invalid-hdr.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) > * > > igt@kms_plane@plane-position-covered: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@kms_plane@plane-position-covered.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@kms_plane@plane-position-covered.html> > (Intel XE#324 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) +2 > other tests dmesg-warn > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers > (NEW): > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html> > (Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format > (NEW): > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html> > (Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation (NEW): > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) > * > > igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b.html> > (Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +3 > other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html> > (Intel XE#1195 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / > Intel XE#2566 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566>) > * > > igt@kms_pm_backlight@fade: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-435/igt@kms_pm_backlight@fade.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#870 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) > * > > igt@kms_psr@fbc-psr2-cursor-render@edp-1: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html> > (Intel XE#1649 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649>) > +99 other tests fail > * > > igt@kms_psr@fbc-psr2-sprite-plane-move: > > o shard-lnl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-move.html> > (Intel XE#1649 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649>) +3 > other tests fail > * > > igt@kms_psr@pr-sprite-blt: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-4/igt@kms_psr@pr-sprite-blt.html> > (Intel XE#1406 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) > * > > igt@kms_psr@psr2-primary-blt: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_psr@psr2-primary-blt.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2850 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) > * > > igt@kms_vrr@flip-basic-fastset: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_vrr@flip-basic-fastset.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_vrr@flip-basic-fastset.html> > (Intel XE#2443 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443>) +1 > other test fail > * > > igt@kms_vrr@lobf@pipe-a-edp-1: > > o shard-lnl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-4/igt@kms_vrr@lobf@pipe-a-edp-1.html> > (Intel XE#2443 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443>) +1 > other test fail > * > > igt@kms_writeback@writeback-fb-id: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#756 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) > * > > igt@xe_evict@evict-large-multi-vm-cm: > > o shard-dg2-set2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html> > (Intel XE#1600 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600>) > * > > igt@xe_evict@evict-mixed-many-threads-small: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-small.html> > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html> > (Intel XE#1473 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) +1 > other test timeout > * > > igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html> > (Intel XE#1392 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) > * > > igt@xe_exec_fault_mode@twice-basic-prefetch: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@xe_exec_fault_mode@twice-basic-prefetch.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#288 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) > * > > igt@xe_exec_reset@parallel-gt-reset: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html> > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html> > (Intel XE#2105 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105>) > * > > igt@xe_gt_freq@freq_reset_multiple: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@xe_gt_freq@freq_reset_multiple.html> > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-7/igt@xe_gt_freq@freq_reset_multiple.html> > (Intel XE#1620 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620>) > * > > igt@xe_oa@invalid-map-oa-buffer: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-466/igt@xe_oa@invalid-map-oa-buffer.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2541 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) > * > > igt@xe_oa@mmio-triggered-reports: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@xe_oa@mmio-triggered-reports.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-5/igt@xe_oa@mmio-triggered-reports.html> > (Intel XE#2249 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249>) > * > > igt@xe_oa@non-zero-reason: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_oa@non-zero-reason.html> > (Intel XE#2541 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) > * > > igt@xe_oa@oa-exponents: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@xe_oa@oa-exponents.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@xe_oa@oa-exponents.html> > (Intel XE#2723 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723>) > * > > igt@xe_oa@oa-exponents@ccs-0: > > o shard-lnl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@xe_oa@oa-exponents@ccs-0.html> > (Intel XE#2723 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723>) > * > > igt@xe_pm@s4-basic-exec: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@xe_pm@s4-basic-exec.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-2/igt@xe_pm@s4-basic-exec.html> > (Intel XE#1358 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / > Intel XE#1607 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607> / > Intel XE#1794 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>) > * > > igt@xe_query@multigpu-query-engines: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@xe_query@multigpu-query-engines.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) +4 > other tests skip > > > Possible fixes > > * > > igt@core_hotunplug@hotreplug-lateclose: > > o {shard-bmg}: ABORT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@core_hotunplug@hotreplug-lateclose.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-3/igt@core_hotunplug@hotreplug-lateclose.html> > * > > igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: > > o shard-lnl: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html> > (Intel XE#1426 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html> > +1 other test pass > * > > igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6: > > o shard-dg2-set2: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html> > (Intel XE#1426 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html> > +1 other test pass > * > > igt@kms_big_fb@4-tiled-64bpp-rotate-180: > > o {shard-bmg}: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> > * > > igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3: > > o {shard-bmg}: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html> > (Intel XE#877 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html> > +3 other tests pass > * > > igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: > > o {shard-bmg}: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> > (Intel XE#2791 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791> / > Intel XE#877 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html> > +1 other test pass > * > > igt@kms_display_modes@extended-mode-basic: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html> > (Intel XE#2425 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html> > * > > igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html> > +3 other tests pass > * > > igt@kms_flip@flip-vs-suspend@b-hdmi-a3: > > o {shard-bmg}: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-4/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html> > +5 other tests pass > * > > igt@kms_flip@wf_vblank-ts-check@a-edp1: > > o shard-lnl: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> > (Intel XE#886 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> > +3 other tests pass > * > > igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode: > > o shard-dg2-set2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode.html> > (Intel XE#1195 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode.html> > +1 other test pass > * > > igt@kms_plane@plane-position-hole@pipe-a-plane-4: > > o shard-lnl: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html> > (Intel XE#324 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html> > +1 other test pass > * > > igt@kms_plane@plane-position-hole@pipe-b-plane-3: > > o shard-lnl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-b-plane-3.html> > (Intel XE#324 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_plane@plane-position-hole@pipe-b-plane-3.html> > * > > igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: > > o shard-dg2-set2: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html> > (Intel XE#616 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/616>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html> > +3 other tests pass > * > > igt@kms_plane_scaling@planes-upscale-20x20@pipe-a: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20@pipe-a.html> > (Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20@pipe-a.html> > +4 other tests pass > * > > igt@kms_pm_dc@dc5-dpms: > > o shard-lnl: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html> > (Intel XE#718 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html> > * > > igt@xe_pm@s3-vm-bind-userptr: > > o {shard-bmg}: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html> > (Intel XE#569 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-bmg-1/igt@xe_pm@s3-vm-bind-userptr.html> > o shard-dg2-set2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_pm@s3-vm-bind-userptr.html> > (Intel XE#1195 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / > Intel XE#569 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_pm@s3-vm-bind-userptr.html> > > > Warnings > > * > > igt@kms_big_fb@x-tiled-8bpp-rotate-270: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html> > (Intel XE#316 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#316 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +5 > other tests skip > * > > igt@kms_big_fb@x-tiled-8bpp-rotate-90: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#316 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html> > (Intel XE#316 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +2 > other tests skip > * > > igt@kms_big_fb@y-tiled-16bpp-rotate-90: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html> > (Intel XE#1124 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html> > (Intel XE#1124 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124> / > Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) +3 > other tests skip > * > > igt@kms_big_fb@y-tiled-addfb: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html> > (Intel XE#619 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/619>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#619 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/619>) > * > > igt@kms_big_fb@y-tiled-addfb-size-overflow: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> > (Intel XE#610 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#610 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>) > * > > igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html> > (Intel XE#1124 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124> / > Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html> > (Intel XE#1124 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +7 > other tests skip > * > > igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html> > (Intel XE#367 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#367 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) > * > > igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2191 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html> > (Intel XE#2191 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) > * > > igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> > (Intel XE#2191 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2191 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +1 > other test skip > * > > igt@kms_bw@linear-tiling-4-displays-2560x1440p: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#367 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html> > (Intel XE#367 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +1 > other test skip > * > > igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html> > (Intel XE#787 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#787 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +76 > other tests skip > * > > igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#787 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4.html> > (Intel XE#787 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +55 > other tests skip > * > > igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html> > (Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / > Intel XE#787 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / > Intel XE#787 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +21 > other tests skip > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#1252 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> > (Intel XE#1252 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252>) +2 > other tests skip > * > > igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / > Intel XE#787 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html> > (Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / > Intel XE#787 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +15 > other tests skip > * > > igt@kms_cdclk@mode-transition@pipe-d-dp-4: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#314 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/314>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html> > (Intel XE#314 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/314>) +3 > other tests skip > * > > igt@kms_chamelium_color@ctm-0-25: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html> > (Intel XE#306 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_chamelium_color@ctm-0-25.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#306 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) > * > > igt@kms_chamelium_color@gamma: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_chamelium_color@gamma.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#306 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_chamelium_color@gamma.html> > (Intel XE#306 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) > * > > igt@kms_chamelium_hpd@vga-hpd: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html> > (Intel XE#373 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#373 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +6 > other tests skip > * > > igt@kms_chamelium_hpd@vga-hpd-without-ddc: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#373 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html> > (Intel XE#373 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +4 > other tests skip > * > > igt@kms_content_protection@dp-mst-lic-type-1: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-1.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#307 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-1.html> > (Intel XE#307 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) > * > > igt@kms_cursor_crc@cursor-offscreen-512x512: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#308 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html> > (Intel XE#308 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) > * > > igt@kms_cursor_crc@cursor-sliding-512x170: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x170.html> > (Intel XE#308 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x170.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#308 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) > * > > igt@kms_dsc@dsc-with-output-formats-with-bpc: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> > (Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +12 > other tests skip > * > > igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> > (Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +13 > other tests skip > * > > igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html> > (Intel XE#651 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#651 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +21 > other tests skip > * > > igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#651 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html> > (Intel XE#651 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +21 > other tests skip > * > > igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#658 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/658>) +2 > other tests skip > * > > igt@kms_frontbuffer_tracking@plane-fbc-rte: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html> > (Intel XE#1158 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158> / > Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html> > (Intel XE#1158 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158>) > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html> > (Intel XE#653 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#653 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +17 > other tests skip > * > > igt@kms_frontbuffer_tracking@psr-slowdraw: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-slowdraw.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#653 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-slowdraw.html> > (Intel XE#653 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +19 > other tests skip > * > > igt@kms_plane@plane-position-hole: > > o shard-lnl: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_plane@plane-position-hole.html> > (Intel XE#324 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) -> > DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-lnl-1/igt@kms_plane@plane-position-hole.html> > (Intel XE#324 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html> > (Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +4 > other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +4 > other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +8 > other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html> > (Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +6 > other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html> > (Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +8 > other tests skip > * > > igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html> > (Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) > +11 other tests skip > * > > igt@kms_pm_backlight@fade-with-suspend: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#870 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) +3 > other tests skip > * > > igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html> > (Intel XE#1489 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#1489 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +2 > other tests skip > * > > igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html> > (Intel XE#1489 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +2 > other tests skip > * > > igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#1489 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) > +17 other tests skip > * > > igt@kms_psr@fbc-psr2-primary-render: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html> > (Intel XE#2850 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +8 > other tests skip > * > > igt@kms_psr@fbc-psr2-sprite-plane-onoff: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html> > (Intel XE#2850 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2850 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) > +11 other tests skip > * > > igt@kms_psr@psr-dpms: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_psr@psr-dpms.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@kms_psr@psr-dpms.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2850 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) > +62 other tests skip > * > > igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#327 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/327>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> > (Intel XE#327 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/327>) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> > (Intel XE#1127 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127> / > Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> > (Intel XE#1127 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> > (Intel XE#327 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/327>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#327 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/327>) > * > > igt@kms_writeback@writeback-check-output: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_writeback@writeback-check-output.html> > (Intel XE#756 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-466/igt@kms_writeback@writeback-check-output.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#756 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) > * > > igt@kms_writeback@writeback-fb-id-xrgb2101010: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#756 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> > (Intel XE#756 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) > * > > igt@sriov_basic@enable-vfs-autoprobe-off: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-off.html> > (Intel XE#2849 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-off.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2849 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) > * > > igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> > (Intel XE#2849 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) > * > > igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html> > (Intel XE#288 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-464/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#288 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +1 > other test skip > * > > igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#288 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html> > (Intel XE#288 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +1 > other test skip > * > > igt@xe_exec_fault_mode@twice-userptr-invalidate-race: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) > +15 other tests skip > * > > igt@xe_mmap@small-bar: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_mmap@small-bar.html> > (Intel XE#512 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/512>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@xe_mmap@small-bar.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#512 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/512>) > * > > igt@xe_oa@mmio-triggered-reports: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_oa@mmio-triggered-reports.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_oa@mmio-triggered-reports.html> > (Intel XE#2541 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) +1 > other test skip > * > > igt@xe_oa@oa-regs-whitelisted: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_oa@oa-regs-whitelisted.html> > (Intel XE#2541 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-436/igt@xe_oa@oa-regs-whitelisted.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2541 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) > * > > igt@xe_oa@oa-unit-exclusive-stream-sample-oa: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2541 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) > +27 other tests skip > * > > igt@xe_pat@display-vs-wb-transient: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html> > (Intel XE#1337 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#1337 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337>) > * > > igt@xe_pat@pat-index-xe2: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@xe_pat@pat-index-xe2.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-463/igt@xe_pat@pat-index-xe2.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#977 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/977>) > * > > igt@xe_pat@pat-index-xehpc: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@xe_pat@pat-index-xehpc.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#2838 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html> > (Intel XE#2838 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838>) > * > > igt@xe_pm@d3cold-mmap-system: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html> > (Intel XE#366 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-433/igt@xe_pm@d3cold-mmap-system.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#366 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +1 > other test skip > * > > igt@xe_pm@d3cold-multiple-execs: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@xe_pm@d3cold-multiple-execs.html> > (Intel XE#1201 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201> / > Intel XE#366 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11806/shard-dg2-432/igt@xe_pm@d3cold-multiple-execs.html> > (Intel XE#366 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) > > {name}: This element is suppressed. This means it is ignored when > computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Build changes > > * IGT: IGT_8032 -> IGTPW_11806 > * Linux: xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 -> > xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da > > IGTPW_11806: 38b2e82bf1fc1b891e22947ab39bb1a8407db805 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8032: 8032 > xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47: > abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 > xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da: > 6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da > [-- Attachment #2: Type: text/html, Size: 170387 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.xeBAT: success for tests/xe_gt_freq: Use sync reset (rev2) 2024-09-25 22:09 [PATCH i-g-t] tests/xe_gt_freq: Use sync reset Vinay Belgaumkar ` (4 preceding siblings ...) 2024-09-27 2:33 ` ✗ CI.xeFULL: failure for " Patchwork @ 2024-10-03 18:54 ` Patchwork 2024-10-03 19:09 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-10-03 18:54 UTC (permalink / raw) To: Belgaumkar, Vinay; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3939 bytes --] == Series Details == Series: tests/xe_gt_freq: Use sync reset (rev2) URL : https://patchwork.freedesktop.org/series/139120/ State : success == Summary == CI Bug Log - changes from XEIGT_8051_BAT -> XEIGTPW_11867_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11867_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-lnl-1: [PASS][1] -> [FAIL][2] ([Intel XE#886]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][4] ([Intel XE#288]) +32 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#2229]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-lnl-1: [FAIL][6] -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate: - bat-lnl-2: [DMESG-WARN][8] -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/bat-lnl-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/bat-lnl-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [INCOMPLETE][10] ([Intel XE#2874]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 Build changes ------------- * IGT: IGT_8051 -> IGTPW_11867 * Linux: xe-2010-af143300756485947a455fe84414adb35904c230 -> xe-2013-17c0158bdb239d8b6d23834db5595ea422b69915 IGTPW_11867: 11867 IGT_8051: c2efcb5f207eebb0c19106f27b310f61ded6f11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2010-af143300756485947a455fe84414adb35904c230: af143300756485947a455fe84414adb35904c230 xe-2013-17c0158bdb239d8b6d23834db5595ea422b69915: 17c0158bdb239d8b6d23834db5595ea422b69915 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/index.html [-- Attachment #2: Type: text/html, Size: 4684 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Fi.CI.BAT: success for tests/xe_gt_freq: Use sync reset (rev2) 2024-09-25 22:09 [PATCH i-g-t] tests/xe_gt_freq: Use sync reset Vinay Belgaumkar ` (5 preceding siblings ...) 2024-10-03 18:54 ` ✓ CI.xeBAT: success for tests/xe_gt_freq: Use sync reset (rev2) Patchwork @ 2024-10-03 19:09 ` Patchwork 2024-10-03 21:15 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-03 21:27 ` [PATCH i-g-t] tests/xe_gt_freq: Use sync reset Dixit, Ashutosh 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-10-03 19:09 UTC (permalink / raw) To: Belgaumkar, Vinay; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5239 bytes --] == Series Details == Series: tests/xe_gt_freq: Use sync reset (rev2) URL : https://patchwork.freedesktop.org/series/139120/ State : success == Summary == CI Bug Log - changes from IGT_8051 -> IGTPW_11867 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11867/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): fi-ivb-3770 Missing (2): fi-blb-e6850 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11867 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-twl-2: [PASS][1] -> [INCOMPLETE][2] ([i915#12133] / [i915#9413]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8051/bat-twl-2/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11867/bat-twl-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_lrc: - bat-twl-2: [PASS][3] -> [INCOMPLETE][4] ([i915#9413]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8051/bat-twl-2/igt@i915_selftest@live@gt_lrc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11867/bat-twl-2/igt@i915_selftest@live@gt_lrc.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-vga-1: - fi-ivb-3770: NOTRUN -> [SKIP][5] +23 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11867/fi-ivb-3770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-vga-1.html * igt@runner@aborted: - bat-dg2-13: NOTRUN -> [FAIL][6] ([i915#12292]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11867/bat-dg2-13/igt@runner@aborted.html #### Possible fixes #### * igt@i915_module_load@reload: - fi-kbl-7567u: [DMESG-WARN][7] ([i915#1982]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8051/fi-kbl-7567u/igt@i915_module_load@reload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11867/fi-kbl-7567u/igt@i915_module_load@reload.html * igt@i915_selftest@live: - {bat-arlh-3}: [ABORT][9] ([i915#12133]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8051/bat-arlh-3/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11867/bat-arlh-3/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - {bat-arlh-3}: [ABORT][11] ([i915#12061]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8051/bat-arlh-3/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11867/bat-arlh-3/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [SKIP][13] ([i915#9197]) -> [PASS][14] +2 other tests pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8051/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11867/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Warnings #### * igt@i915_selftest@live: - bat-arls-5: [DMESG-WARN][15] ([i915#10341] / [i915#12133]) -> [ABORT][16] ([i915#12061] / [i915#12133]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8051/bat-arls-5/igt@i915_selftest@live.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11867/bat-arls-5/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-WARN][17] ([i915#10341] / [i915#11637]) -> [ABORT][18] ([i915#12061]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8051/bat-arls-5/igt@i915_selftest@live@workarounds.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11867/bat-arls-5/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12292 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8051 -> IGTPW_11867 * Linux: CI_DRM_15478 -> CI_DRM_15481 CI-20190529: 20190529 CI_DRM_15478: af143300756485947a455fe84414adb35904c230 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15481: 17c0158bdb239d8b6d23834db5595ea422b69915 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11867: 11867 IGT_8051: c2efcb5f207eebb0c19106f27b310f61ded6f11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11867/index.html [-- Attachment #2: Type: text/html, Size: 6636 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.xeFULL: failure for tests/xe_gt_freq: Use sync reset (rev2) 2024-09-25 22:09 [PATCH i-g-t] tests/xe_gt_freq: Use sync reset Vinay Belgaumkar ` (6 preceding siblings ...) 2024-10-03 19:09 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-10-03 21:15 ` Patchwork 2024-10-03 21:27 ` [PATCH i-g-t] tests/xe_gt_freq: Use sync reset Dixit, Ashutosh 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-10-03 21:15 UTC (permalink / raw) To: Belgaumkar, Vinay; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 50275 bytes --] == Series Details == Series: tests/xe_gt_freq: Use sync reset (rev2) URL : https://patchwork.freedesktop.org/series/139120/ State : failure == Summary == CI Bug Log - changes from XEIGT_8051_full -> XEIGTPW_11867_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11867_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11867_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11867_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_flip@flip-vs-suspend-interruptible@c-edp1: - shard-lnl: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-8/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-2/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html * igt@kms_pm_rpm@universal-planes: - shard-lnl: [PASS][4] -> [FAIL][5] +3 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-5/igt@kms_pm_rpm@universal-planes.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-5/igt@kms_pm_rpm@universal-planes.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-lnl: NOTRUN -> [FAIL][6] +1 other test fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-435/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_vblank@ts-continuation-idle-hang: - shard-lnl: [PASS][8] -> [DMESG-WARN][9] +1 other test dmesg-warn [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-7/igt@kms_vblank@ts-continuation-idle-hang.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-2/igt@kms_vblank@ts-continuation-idle-hang.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - {shard-bmg}: [FAIL][10] ([Intel XE#1288]) -> [DMESG-FAIL][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-bmg-6/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-bmg-4/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - {shard-bmg}: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html Known issues ------------ Here are the changes found in XEIGTPW_11867_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#623]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#1659]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [FAIL][18] ([Intel XE#1659]) +1 other test fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +6 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-5/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +16 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-464/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1477]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#367]) +7 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2191]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#367]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-4/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +118 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#2907]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +7 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#455] / [Intel XE#787]) +33 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2669]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1152]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-3/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#306]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-464/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-max: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#306]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-2/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#373]) +13 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-464/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#373]) +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-3/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#307]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#455]) +19 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-466/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1468]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-6/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#308]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1424]) +5 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2-set2: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#1195]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-435/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#309]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#776]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-435/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#703]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-466/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1137]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-436/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1421]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-2/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1: - shard-lnl: NOTRUN -> [FAIL][47] ([Intel XE#886]) +2 other tests fail [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html * igt@kms_flip@plain-flip-ts-check@c-edp1: - shard-lnl: [PASS][48] -> [FAIL][49] ([Intel XE#886]) +4 other tests fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@c-edp1.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@kms_flip@plain-flip-ts-check@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1401]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([i915#5274]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-466/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#651]) +40 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#658]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#651]) +9 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#656]) +26 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#653]) +53 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_getfb@getfb2-accept-ccs: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2340]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-6/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_hdr@static-swap: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1503] / [Intel XE#599]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-4/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#346]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#2925]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2927]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane@plane-position-hole@pipe-b-plane-2: - shard-lnl: [PASS][63] -> [DMESG-WARN][64] ([Intel XE#324]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-6/igt@kms_plane@plane-position-hole@pipe-b-plane-2.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@kms_plane@plane-position-hole@pipe-b-plane-2.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#599]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-6/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2763] / [Intel XE#455]) +9 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#2763]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2763]) +14 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#870]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-435/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][70] -> [FAIL][71] ([Intel XE#1430]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: NOTRUN -> [FAIL][72] ([Intel XE#2029]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1439]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#1489]) +12 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#2893]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#1122]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1128]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2850]) +20 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-466/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@pr-basic: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1406]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-5/igt@kms_psr@pr-basic.html * igt@kms_rotation_crc@primary-rotation-270: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1437]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-2/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#1127]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#327]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1435]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: NOTRUN -> [FAIL][84] ([Intel XE#1729]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak: - shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#899]) +2 other tests fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vrr@flip-basic: - shard-lnl: [PASS][87] -> [FAIL][88] ([Intel XE#2443]) +1 other test fail [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-4/igt@kms_vrr@flip-basic.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-check-output: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#756]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#756]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-432/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#1091] / [Intel XE#2849]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1447]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-5/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2905]) +11 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_evict@evict-beng-threads-small: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#688]) +6 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@xe_evict@evict-beng-threads-small.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][96] ([Intel XE#1473]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1392]) +6 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#288]) +41 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-436/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: NOTRUN -> [TIMEOUT][99] ([Intel XE#2105]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2905]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-1/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: NOTRUN -> [DMESG-FAIL][101] ([Intel XE#1620]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-2/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][102] ([Intel XE#1999]) +2 other tests fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-432/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#560]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-435/igt@xe_media_fill@media-fill.html * igt@xe_oa@mmio-triggered-reports: - shard-lnl: [PASS][104] -> [FAIL][105] ([Intel XE#2249]) +1 other test fail [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-5/igt@xe_oa@mmio-triggered-reports.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-3/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@oa-exponents: - shard-lnl: [PASS][106] -> [FAIL][107] ([Intel XE#2723]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-7/igt@xe_oa@oa-exponents.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-5/igt@xe_oa@oa-exponents.html * igt@xe_oa@oa-exponents@ccs-0: - shard-lnl: NOTRUN -> [FAIL][108] ([Intel XE#2723]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-5/igt@xe_oa@oa-exponents@ccs-0.html * igt@xe_oa@oa-regs-whitelisted: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2541]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@xe_oa@oa-regs-whitelisted.html - shard-lnl: [PASS][110] -> [FAIL][111] ([Intel XE#2514]) +1 other test fail [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-6/igt@xe_oa@oa-regs-whitelisted.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#977]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-434/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1420] / [Intel XE#2838]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-5/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][114] ([Intel XE#1173]) +1 other test fail [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-435/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s2idle-basic: - shard-dg2-set2: NOTRUN -> [ABORT][116] ([Intel XE#1358] / [Intel XE#2915]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-434/igt@xe_pm@s2idle-basic.html * igt@xe_pm@s3-vm-bind-userptr: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#584]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-5/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#944]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-436/igt@xe_query@multigpu-query-engines.html * igt@xe_wedged@wedged-at-any-timeout: - shard-lnl: [PASS][119] -> [FAIL][120] ([Intel XE#2780]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-7/igt@xe_wedged@wedged-at-any-timeout.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-6/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-lnl: [FAIL][121] ([Intel XE#1659]) -> [PASS][122] +1 other test pass [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - {shard-bmg}: [INCOMPLETE][123] -> [PASS][124] +1 other test pass [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4: - shard-dg2-set2: [INCOMPLETE][125] ([Intel XE#1195]) -> [PASS][126] +1 other test pass [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible@ad-dp2-hdmi-a3: - {shard-bmg}: [DMESG-WARN][127] ([Intel XE#877]) -> [PASS][128] +2 other tests pass [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-bmg-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible@ad-dp2-hdmi-a3.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-bmg-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend: - shard-dg2-set2: [ABORT][129] ([Intel XE#2899]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4: - shard-dg2-set2: [ABORT][131] -> [PASS][132] +2 other tests pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a6-dp4.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [FAIL][133] ([Intel XE#886]) -> [PASS][134] +5 other tests pass [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][135] ([Intel XE#455]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-435/igt@kms_hdr@invalid-hdr.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@kms_hdr@invalid-hdr.html * igt@kms_plane@plane-position-covered@pipe-a-plane-3: - shard-lnl: [DMESG-FAIL][137] ([Intel XE#324]) -> [PASS][138] +2 other tests pass [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-4/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1: - shard-lnl: [DMESG-WARN][139] ([Intel XE#324]) -> [PASS][140] +3 other tests pass [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-2/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-3/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [FAIL][141] ([Intel XE#1430]) -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-lnl: [INCOMPLETE][143] ([Intel XE#1620] / [Intel XE#2864]) -> [PASS][144] [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-1/igt@kms_pm_rpm@universal-planes-dpms.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_pm_rpm@universal-planes-dpms@plane-41: - shard-lnl: [DMESG-FAIL][145] ([Intel XE#1620]) -> [PASS][146] +4 other tests pass [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-1/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-lnl: [FAIL][147] -> [PASS][148] +4 other tests pass [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-7/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-1/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@psr-primary-page-flip: - shard-lnl: [TIMEOUT][149] -> [PASS][150] +1 other test pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-3/igt@kms_psr@psr-primary-page-flip.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@kms_psr@psr-primary-page-flip.html * igt@kms_sequence@queue-busy: - shard-lnl: [INCOMPLETE][151] -> [PASS][152] +2 other tests pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-3/igt@kms_sequence@queue-busy.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-6/igt@kms_sequence@queue-busy.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [FAIL][153] ([Intel XE#2443]) -> [PASS][154] +1 other test pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-8/igt@kms_vrr@flip-basic-fastset.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-5/igt@kms_vrr@flip-basic-fastset.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - {shard-bmg}: [FAIL][155] ([Intel XE#2364]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-bmg-1/igt@xe_evict@evict-beng-large-multi-vm-cm.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-bmg-6/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][157] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][159] ([Intel XE#1473]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_module_load@reload-no-display: - shard-lnl: [DMESG-WARN][161] -> [PASS][162] +1 other test pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-7/igt@xe_module_load@reload-no-display.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-5/igt@xe_module_load@reload-no-display.html * igt@xe_pm@d3hot-basic-exec: - shard-lnl: [TIMEOUT][163] ([Intel XE#1358] / [Intel XE#1620]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-3/igt@xe_pm@d3hot-basic-exec.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-7/igt@xe_pm@d3hot-basic-exec.html * igt@xe_pm@d3hot-multiple-execs: - shard-lnl: [TIMEOUT][165] ([Intel XE#1358] / [Intel XE#1620] / [Intel XE#2574]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-3/igt@xe_pm@d3hot-multiple-execs.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-2/igt@xe_pm@d3hot-multiple-execs.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-lnl: [ABORT][167] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-6/igt@xe_pm@s4-d3hot-basic-exec.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][169] ([Intel XE#958]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html #### Warnings #### * igt@kms_flip@flip-vs-suspend-interruptible: - shard-lnl: [DMESG-WARN][171] -> [INCOMPLETE][172] ([Intel XE#2049]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-8/igt@kms_flip@flip-vs-suspend-interruptible.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_plane@plane-position-covered: - shard-lnl: [DMESG-FAIL][173] ([Intel XE#324]) -> [DMESG-WARN][174] ([Intel XE#324]) +1 other test dmesg-warn [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8051/shard-lnl-2/igt@kms_plane@plane-position-covered.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/shard-lnl-4/igt@kms_plane@plane-position-covered.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1288 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2574]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2574 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2780 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2899 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2915 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8051 -> IGTPW_11867 * Linux: xe-2010-af143300756485947a455fe84414adb35904c230 -> xe-2013-17c0158bdb239d8b6d23834db5595ea422b69915 IGTPW_11867: 11867 IGT_8051: c2efcb5f207eebb0c19106f27b310f61ded6f11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2010-af143300756485947a455fe84414adb35904c230: af143300756485947a455fe84414adb35904c230 xe-2013-17c0158bdb239d8b6d23834db5595ea422b69915: 17c0158bdb239d8b6d23834db5595ea422b69915 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11867/index.html [-- Attachment #2: Type: text/html, Size: 53576 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t] tests/xe_gt_freq: Use sync reset 2024-09-25 22:09 [PATCH i-g-t] tests/xe_gt_freq: Use sync reset Vinay Belgaumkar ` (7 preceding siblings ...) 2024-10-03 21:15 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-10-03 21:27 ` Dixit, Ashutosh 8 siblings, 0 replies; 13+ messages in thread From: Dixit, Ashutosh @ 2024-10-03 21:27 UTC (permalink / raw) To: Vinay Belgaumkar; +Cc: intel-gfx, igt-dev, Badal Nilawar On Wed, 25 Sep 2024 15:09:23 -0700, Vinay Belgaumkar wrote: > > Some recent WAs reduce the GT freq during driver load/reset. Use sync > reset so that we give enough time for GT frequency to be restored after > reset has completed. > > Also, stash/restore frequencies per GT as they can be different. > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2676 > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2711 > No empty line here. > Cc: Badal Nilawar <badal.nilawar@intel.com> > Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com> Please use 'intel' in the commit title, intel is not the only vendor contributing to igt. I have fixed these up this time and merged this. Thanks. -- Ashutosh ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-10-03 21:27 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-09-25 22:09 [PATCH i-g-t] tests/xe_gt_freq: Use sync reset Vinay Belgaumkar 2024-09-26 9:53 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-09-26 10:21 ` ✗ CI.xeBAT: failure " Patchwork 2024-09-27 18:02 ` Belgaumkar, Vinay 2024-09-26 12:43 ` ✗ Fi.CI.IGT: " Patchwork 2024-09-27 18:04 ` Belgaumkar, Vinay 2024-09-26 14:36 ` [PATCH i-g-t] " Rodrigo Vivi 2024-09-27 2:33 ` ✗ CI.xeFULL: failure for " Patchwork 2024-09-27 18:07 ` Belgaumkar, Vinay 2024-10-03 18:54 ` ✓ CI.xeBAT: success for tests/xe_gt_freq: Use sync reset (rev2) Patchwork 2024-10-03 19:09 ` ✓ Fi.CI.BAT: " Patchwork 2024-10-03 21:15 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-03 21:27 ` [PATCH i-g-t] tests/xe_gt_freq: Use sync reset Dixit, Ashutosh
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox