* [PATCH i-g-t] tests/intel/xe_mmap: fix assert_caching on small-bar
@ 2024-11-22 16:47 Matthew Auld
2024-11-22 19:19 ` ✓ i915.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Matthew Auld @ 2024-11-22 16:47 UTC (permalink / raw)
To: igt-dev; +Cc: Matthew Brost
Make sure we ask for DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM to avoid
sigbus here.
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
---
tests/intel/xe_mmap.c | 19 ++++++++++++-------
1 file changed, 12 insertions(+), 7 deletions(-)
diff --git a/tests/intel/xe_mmap.c b/tests/intel/xe_mmap.c
index fc5d73d59..d818cc2f8 100644
--- a/tests/intel/xe_mmap.c
+++ b/tests/intel/xe_mmap.c
@@ -207,7 +207,8 @@ static void test_small_bar(int fd)
gem_close(fd, bo);
}
-static void assert_caching(int fd, uint64_t placement, uint16_t cpu_caching, bool fail)
+static void assert_caching(int fd, uint64_t placement, uint32_t flags,
+ uint16_t cpu_caching, bool fail)
{
uint64_t size = xe_get_default_alignment(fd);
uint64_t mmo;
@@ -215,7 +216,7 @@ static void assert_caching(int fd, uint64_t placement, uint16_t cpu_caching, boo
uint32_t *map;
bool ret;
- ret = __xe_bo_create_caching(fd, 0, size, placement, 0, cpu_caching, &handle);
+ ret = __xe_bo_create_caching(fd, 0, size, placement, flags, cpu_caching, &handle);
igt_assert(ret == fail);
if (fail)
@@ -237,22 +238,26 @@ static void test_cpu_caching(int fd)
{
if (vram_memory(fd, 0)) {
assert_caching(fd, vram_memory(fd, 0),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
DRM_XE_GEM_CPU_CACHING_WC, false);
assert_caching(fd, vram_memory(fd, 0) | system_memory(fd),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
DRM_XE_GEM_CPU_CACHING_WC, false);
assert_caching(fd, vram_memory(fd, 0),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
DRM_XE_GEM_CPU_CACHING_WB, true);
assert_caching(fd, vram_memory(fd, 0) | system_memory(fd),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
DRM_XE_GEM_CPU_CACHING_WB, true);
}
- assert_caching(fd, system_memory(fd), DRM_XE_GEM_CPU_CACHING_WB, false);
- assert_caching(fd, system_memory(fd), DRM_XE_GEM_CPU_CACHING_WC, false);
+ assert_caching(fd, system_memory(fd), 0, DRM_XE_GEM_CPU_CACHING_WB, false);
+ assert_caching(fd, system_memory(fd), 0, DRM_XE_GEM_CPU_CACHING_WC, false);
- assert_caching(fd, system_memory(fd), -1, true);
- assert_caching(fd, system_memory(fd), 0, true);
- assert_caching(fd, system_memory(fd), DRM_XE_GEM_CPU_CACHING_WC + 1, true);
+ assert_caching(fd, system_memory(fd), 0, -1, true);
+ assert_caching(fd, system_memory(fd), 0, 0, true);
+ assert_caching(fd, system_memory(fd), 0, DRM_XE_GEM_CPU_CACHING_WC + 1, true);
}
igt_main
--
2.47.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* ✓ i915.CI.BAT: success for tests/intel/xe_mmap: fix assert_caching on small-bar 2024-11-22 16:47 [PATCH i-g-t] tests/intel/xe_mmap: fix assert_caching on small-bar Matthew Auld @ 2024-11-22 19:19 ` Patchwork 2024-11-22 19:23 ` ✓ Xe.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-11-22 19:19 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev == Series Details == Series: tests/intel/xe_mmap: fix assert_caching on small-bar URL : https://patchwork.freedesktop.org/series/141710/ State : success == Summary == CI Bug Log - changes from IGT_8123 -> IGTPW_12180 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12180 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-nick: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][3] -> [ABORT][4] ([i915#12061]) +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arlh-3/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arls-5: [PASS][5] -> [ABORT][6] ([i915#12061]) +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-arls-5/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/bat-arls-5/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][7] -> [SKIP][8] ([i915#9197]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@gem_tiled_blits@basic: - fi-pnv-d510: [SKIP][9] -> [PASS][10] +2 other tests pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-pnv-d510/igt@gem_tiled_blits@basic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/fi-pnv-d510/igt@gem_tiled_blits@basic.html * igt@i915_pm_rpm@module-reload: - bat-dg2-11: [FAIL][11] ([i915#12903]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-dg2-11/igt@i915_pm_rpm@module-reload.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/bat-dg2-11/igt@i915_pm_rpm@module-reload.html - bat-rpls-4: [FAIL][13] ([i915#12903]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/bat-rpls-4/igt@i915_pm_rpm@module-reload.html * igt@kms_flip@basic-flip-vs-dpms@c-dp1: - fi-kbl-7567u: [DMESG-WARN][15] -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html #### Warnings #### * igt@i915_module_load@reload: - fi-cfl-8109u: [DMESG-WARN][17] ([i915#11621] / [i915#1982]) -> [DMESG-WARN][18] ([i915#11621]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-cfl-8109u/igt@i915_module_load@reload.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/fi-cfl-8109u/igt@i915_module_load@reload.html [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8123 -> IGTPW_12180 * Linux: CI_DRM_15731 -> CI_DRM_15732 CI-20190529: 20190529 CI_DRM_15731: a381faddbfc974e7bd57efe953a738415afccd6a @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15732: 2d0d734c211b36125b27eceb42aceac394d4f377 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12180: 4095ce9bfaff0948dae68be7d0c2383f918ba4c3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8123: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/index.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_mmap: fix assert_caching on small-bar 2024-11-22 16:47 [PATCH i-g-t] tests/intel/xe_mmap: fix assert_caching on small-bar Matthew Auld 2024-11-22 19:19 ` ✓ i915.CI.BAT: success for " Patchwork @ 2024-11-22 19:23 ` Patchwork 2024-11-24 3:19 ` ✗ Xe.CI.Full: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-11-22 19:23 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2567 bytes --] == Series Details == Series: tests/intel/xe_mmap: fix assert_caching on small-bar URL : https://patchwork.freedesktop.org/series/141710/ State : success == Summary == CI Bug Log - changes from XEIGT_8123_BAT -> XEIGTPW_12180_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12180_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3517]) +2 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_addfb_basic@bad-pitch-0: - bat-adlp-7: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#3429]) +31 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html * igt@kms_psr@psr-cursor-plane-move: - bat-adlp-7: [PASS][5] -> [SKIP][6] ([Intel XE#455]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [Intel XE#3429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3429 [Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8123 -> IGTPW_12180 * Linux: xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a -> xe-2264-2d0d734c211b36125b27eceb42aceac394d4f377 IGTPW_12180: 4095ce9bfaff0948dae68be7d0c2383f918ba4c3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8123: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a: a381faddbfc974e7bd57efe953a738415afccd6a xe-2264-2d0d734c211b36125b27eceb42aceac394d4f377: 2d0d734c211b36125b27eceb42aceac394d4f377 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/index.html [-- Attachment #2: Type: text/html, Size: 3203 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_mmap: fix assert_caching on small-bar 2024-11-22 16:47 [PATCH i-g-t] tests/intel/xe_mmap: fix assert_caching on small-bar Matthew Auld 2024-11-22 19:19 ` ✓ i915.CI.BAT: success for " Patchwork 2024-11-22 19:23 ` ✓ Xe.CI.BAT: " Patchwork @ 2024-11-24 3:19 ` Patchwork 2024-12-10 11:24 ` Kamil Konieczny 2024-11-24 20:32 ` ✗ i915.CI.Full: " Patchwork 2024-12-09 9:23 ` [PATCH i-g-t] " Grzegorzek, Dominik 4 siblings, 1 reply; 8+ messages in thread From: Patchwork @ 2024-11-24 3:19 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 141855 bytes --] == Series Details == Series: tests/intel/xe_mmap: fix assert_caching on small-bar URL : https://patchwork.freedesktop.org/series/141710/ State : failure == Summary == CI Bug Log - changes from XEIGT_8123_full -> XEIGTPW_12180_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12180_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12180_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_12180_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@2x-flip-vs-rmfb-interruptible@ac-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible@ac-dp2-hdmi-a3.html * igt@kms_flip@blocking-wf_vblank@a-edp1: - shard-lnl: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@kms_flip@blocking-wf_vblank@a-edp1.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-6/igt@kms_flip@blocking-wf_vblank@a-edp1.html * igt@kms_flip@flip-vs-panning-interruptible@d-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_flip@flip-vs-panning-interruptible@d-dp4.html * igt@xe_exec_basic@many-execqueues-null: - shard-bmg: [PASS][5] -> [DMESG-WARN][6] +4 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_exec_basic@many-execqueues-null.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_exec_basic@many-execqueues-null.html #### Warnings #### * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [SKIP][7] ([Intel XE#1130]) -> [ABORT][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html Known issues ------------ Here are the changes found in XEIGTPW_12180_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getversion@basic: - shard-dg2-set2: NOTRUN -> [FAIL][9] ([Intel XE#3440]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@core_getversion@basic.html * igt@core_hotunplug@hotrebind: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1885]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@core_hotunplug@hotrebind.html * igt@core_hotunplug@hotrebind-lateclose: - shard-dg2-set2: [PASS][11] -> [SKIP][12] ([Intel XE#1885]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@core_hotunplug@hotrebind-lateclose.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@core_hotunplug@hotrebind-lateclose.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#3453]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@core_setmaster@master-drop-set-shared-fd.html * igt@core_setmaster@master-drop-set-user: - shard-dg2-set2: [PASS][15] -> [FAIL][16] ([Intel XE#3339]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@core_setmaster@master-drop-set-user.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@core_setmaster@master-drop-set-user.html * igt@core_setmaster_vs_auth: - shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#2423]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@core_setmaster_vs_auth.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@core_setmaster_vs_auth.html * igt@fbdev@pan: - shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2134]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@fbdev@pan.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@fbdev@pan.html * igt@intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1125]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-4/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@too-high: - shard-dg2-set2: [PASS][22] -> [DMESG-WARN][23] ([Intel XE#1727]) +3 other tests dmesg-warn [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_addfb_basic@too-high.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_addfb_basic@too-high.html * igt@kms_async_flips@crc: - shard-bmg: [PASS][24] -> [DMESG-FAIL][25] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-fail [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_async_flips@crc.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_async_flips@crc.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-bmg: [PASS][26] -> [FAIL][27] ([Intel XE#3557]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs: - shard-lnl: [PASS][28] -> [FAIL][29] ([Intel XE#1701]) +1 other test fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1407]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2327]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [PASS][34] -> [DMESG-FAIL][35] ([Intel XE#3468]) +14 other tests dmesg-fail [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-bmg: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#1727]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#316]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1124]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-5/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1124]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1477]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#610]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1124]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1512]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][45] -> [SKIP][46] ([Intel XE#2136] / [Intel XE#2351]) +14 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2887]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#787]) +69 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2652] / [Intel XE#787]) +16 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#3432]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2887]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#373]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-3/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#373]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@atomic: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2341]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][56] ([Intel XE#1178]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [FAIL][57] ([Intel XE#1178]) +2 other tests fail [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#3304]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#455]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][60] ([Intel XE#1727]) +1 other test incomplete [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-6.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2321]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#2291]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: NOTRUN -> [DMESG-WARN][64] ([Intel XE#877]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_dp_aux_dev: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#2423]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled: - shard-bmg: [PASS][66] -> [DMESG-FAIL][67] ([Intel XE#2705]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2372]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1421]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-4/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2316]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#3321] / [Intel XE#3487]) +1 other test fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip-ts-check@ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][74] ([Intel XE#2882]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_flip@2x-plain-flip-ts-check@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-wf_vblank-ts-check@ac-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][75] ([Intel XE#3468]) +18 other tests dmesg-warn [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check@ac-dp2-hdmi-a3.html * igt@kms_flip@blocking-wf_vblank: - shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#3149] / [Intel XE#886]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@kms_flip@blocking-wf_vblank.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-6/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@b-dp2: - shard-bmg: [PASS][78] -> [FAIL][79] ([Intel XE#2882]) +2 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@blocking-wf_vblank@b-dp2.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_flip@blocking-wf_vblank@b-dp2.html * igt@kms_flip@blocking-wf_vblank@b-edp1: - shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#886]) +1 other test fail [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@kms_flip@blocking-wf_vblank@b-edp1.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-6/igt@kms_flip@blocking-wf_vblank@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][82] ([Intel XE#301]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp4.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][83] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@a-dp4.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][84] ([Intel XE#3468]) +1 other test dmesg-fail [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][85] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1401]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg2-set2: [PASS][88] -> [SKIP][89] ([Intel XE#2136]) +26 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2293] / [Intel XE#2380]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2293]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#651]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2136]) +28 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: NOTRUN -> [INCOMPLETE][95] ([Intel XE#1727] / [Intel XE#3468]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: NOTRUN -> [DMESG-FAIL][96] ([Intel XE#3468]) +3 other tests dmesg-fail [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2311]) +6 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#651]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2312]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2313]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#653]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#656]) +8 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_getfb@getfb-handle-zero: - shard-dg2-set2: [PASS][103] -> [SKIP][104] ([Intel XE#2423] / [i915#2575]) +101 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_getfb@getfb-handle-zero.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_getfb@getfb-handle-zero.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1470]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-6/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdr@invalid-hdr: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#1503]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-swap: - shard-bmg: [PASS][107] -> [SKIP][108] ([Intel XE#3007]) +12 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_hdr@static-swap.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#3007]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1503]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-8/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][111] ([Intel XE#616]) +2 other tests fail [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_lowres@tiling-y: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#599]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-5/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2393]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#3307]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2763]) +4 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-bmg: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#2566] / [Intel XE#3468]) +1 other test dmesg-warn [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2763]) +8 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#2763]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2423] / [i915#2575]) +23 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][122] -> [FAIL][123] ([Intel XE#718]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@legacy-planes@plane-50: - shard-bmg: [PASS][124] -> [DMESG-WARN][125] ([Intel XE#1727] / [Intel XE#3468]) +10 other tests dmesg-warn [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_pm_rpm@legacy-planes@plane-50.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_pm_rpm@legacy-planes@plane-50.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#1439] / [Intel XE#3141]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2446]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1439] / [Intel XE#3141]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2-set2: [PASS][129] -> [SKIP][130] ([Intel XE#2446]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-bmg: [PASS][131] -> [INCOMPLETE][132] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_pm_rpm@modeset-stress-extra-wait.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [PASS][133] -> [ABORT][134] ([Intel XE#3468]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_pm_rpm@system-suspend-modeset.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1489]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#1489]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2387]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1406]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-6/igt@kms_psr@pr-cursor-render.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2330]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1127]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2413]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [PASS][143] -> [SKIP][144] ([Intel XE#1435]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_tv_load_detect@load-detect: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#330]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-1/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][146] ([Intel XE#3468]) +2 other tests dmesg-warn [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-hdmi-a-6.html * igt@kms_vblank@wait-busy@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][147] -> [INCOMPLETE][148] ([Intel XE#1727]) +1 other test incomplete [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_vblank@wait-busy@pipe-a-hdmi-a-6.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_vblank@wait-busy@pipe-a-hdmi-a-6.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][149] -> [FAIL][150] ([Intel XE#2159]) +1 other test fail [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#2168]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#756]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#1123]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_eudebug_online@breakpoint-many-sessions-single-tile: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2905]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#2905]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-3/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][156] -> [TIMEOUT][157] ([Intel XE#1473]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#688]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-3/igt@xe_evict@evict-large-multi-vm.html * igt@xe_exec_basic@many-null-rebind: - shard-dg2-set2: [PASS][159] -> [SKIP][160] ([Intel XE#1130]) +184 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_exec_basic@many-null-rebind.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2322]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html * igt@xe_exec_basic@multigpu-no-exec-basic: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#1130]) +47 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-basic.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#1392]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt@xe_exec_basic@twice-null-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#1130]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_exec_basic@twice-null-defer-mmap.html * igt@xe_exec_fault_mode@many-basic-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#288]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@xe_exec_fault_mode@many-basic-prefetch.html * igt@xe_exec_sip_eudebug@breakpoint-waitsip-heavy: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#2905]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@xe_exec_sip_eudebug@breakpoint-waitsip-heavy.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: [PASS][167] -> [DMESG-WARN][168] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-bmg: [PASS][169] -> [DMESG-WARN][170] ([Intel XE#3467]) +2 other tests dmesg-warn [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: [PASS][171] -> [DMESG-WARN][172] ([Intel XE#3184]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-7/igt@xe_gt_freq@freq_reset_multiple.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-3/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_media_fill@media-fill: - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#560]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-8/igt@xe_media_fill@media-fill.html * igt@xe_module_load@many-reload: - shard-lnl: [PASS][174] -> [DMESG-WARN][175] ([Intel XE#3560]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-8/igt@xe_module_load@many-reload.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-4/igt@xe_module_load@many-reload.html * igt@xe_module_load@reload: - shard-dg2-set2: [PASS][176] -> [DMESG-WARN][177] ([Intel XE#3467]) +1 other test dmesg-warn [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_module_load@reload.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@xe_module_load@reload.html * igt@xe_oa@syncs-ufence-wait: - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#3573]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@xe_oa@syncs-ufence-wait.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][179] ([Intel XE#2838] / [Intel XE#979]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#2284]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: [PASS][181] -> [DMESG-WARN][182] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s3-basic: - shard-bmg: [PASS][183] -> [DMESG-WARN][184] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) +1 other test dmesg-warn [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_pm@s3-basic.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@xe_pm@s3-basic.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-dg2-set2: [PASS][185] -> [DMESG-WARN][186] ([Intel XE#1727] / [Intel XE#3468]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_pm@s4-d3hot-basic-exec.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@xe_pm@s4-d3hot-basic-exec.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][187] -> [FAIL][188] ([Intel XE#958]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-oa-units: - shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#944]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-3/igt@xe_query@multigpu-query-oa-units.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][190] -> [DMESG-WARN][191] ([Intel XE#3468]) +100 other tests dmesg-warn [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html * igt@xe_vm@large-split-misaligned-binds-67108864: - shard-bmg: NOTRUN -> [DMESG-WARN][192] ([Intel XE#1727]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_vm@large-split-misaligned-binds-67108864.html * igt@xe_vm@large-userptr-misaligned-binds-1073741824: - shard-bmg: [PASS][193] -> [SKIP][194] ([Intel XE#1130]) +24 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_vm@large-userptr-misaligned-binds-1073741824.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_vm@large-userptr-misaligned-binds-1073741824.html * igt@xe_waitfence@abstime: - shard-bmg: [PASS][195] -> [DMESG-WARN][196] ([Intel XE#1727]) +5 other tests dmesg-warn [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_waitfence@abstime.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@xe_waitfence@abstime.html #### Possible fixes #### * igt@core_setmaster@master-drop-set-root: - shard-dg2-set2: [FAIL][197] ([Intel XE#3249]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@core_setmaster@master-drop-set-root.html * igt@fbdev@info: - shard-dg2-set2: [SKIP][199] ([Intel XE#2134]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@fbdev@info.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@fbdev@info.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][201] ([Intel XE#2136]) -> [PASS][202] +24 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [DMESG-FAIL][203] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: [DMESG-WARN][205] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [SKIP][207] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][208] +1 other test pass [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2-set2: [SKIP][209] ([Intel XE#2423] / [i915#2575]) -> [PASS][210] +81 other tests pass [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-bmg: [SKIP][211] ([Intel XE#2291]) -> [PASS][212] +2 other tests pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_dp_aux_dev: - shard-bmg: [SKIP][213] ([Intel XE#3009]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_dp_aux_dev.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_dp_aux_dev.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: [FAIL][215] ([Intel XE#2882]) -> [PASS][216] +1 other test pass [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3: - shard-bmg: [FAIL][217] ([Intel XE#3321] / [Intel XE#3487]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [SKIP][219] ([Intel XE#2316]) -> [PASS][220] +10 other tests pass [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@blocking-absolute-wf_vblank-interruptible@a-dp2: - shard-bmg: [DMESG-FAIL][221] ([Intel XE#3468]) -> [PASS][222] +6 other tests pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@blocking-absolute-wf_vblank-interruptible@a-dp2.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_flip@blocking-absolute-wf_vblank-interruptible@a-dp2.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][223] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][224] +1 other test pass [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [FAIL][225] ([Intel XE#886]) -> [PASS][226] +6 other tests pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][227] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][228] +13 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64: - shard-bmg: [DMESG-WARN][229] ([Intel XE#3468]) -> [PASS][230] +72 other tests pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][231] ([Intel XE#2571]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_pm_rpm@legacy-planes-dpms@plane-41: - shard-dg2-set2: [DMESG-WARN][233] ([Intel XE#3468]) -> [PASS][234] +3 other tests pass [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_pm_rpm@legacy-planes-dpms@plane-41.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_pm_rpm@legacy-planes-dpms@plane-41.html * igt@kms_pm_rpm@legacy-planes-dpms@plane-59: - shard-bmg: [DMESG-WARN][235] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][236] +8 other tests pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html * igt@kms_pm_rpm@legacy-planes-dpms@plane-68: - shard-dg2-set2: [DMESG-WARN][237] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_pm_rpm@legacy-planes-dpms@plane-68.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_pm_rpm@legacy-planes-dpms@plane-68.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-dg2-set2: [SKIP][239] ([Intel XE#2446]) -> [PASS][240] +1 other test pass [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_pm_rpm@universal-planes-dpms.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_setmode@basic: - shard-bmg: [FAIL][241] ([Intel XE#2883]) -> [PASS][242] +6 other tests pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_setmode@basic.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_setmode@basic.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [SKIP][243] ([Intel XE#1435]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html * igt@xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [SKIP][245] ([Intel XE#1130]) -> [PASS][246] +145 other tests pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html * igt@xe_exec_basic@many-null-rebind: - shard-bmg: [DMESG-WARN][247] ([Intel XE#1727]) -> [PASS][248] +2 other tests pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_exec_basic@many-null-rebind.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_exec_basic@many-null-rebind.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue: - shard-bmg: [DMESG-WARN][249] -> [PASS][250] +2 other tests pass [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue.html * igt@xe_exec_reset@cm-close-execqueues-close-fd: - shard-lnl: [FAIL][251] ([Intel XE#1081]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@xe_exec_reset@cm-close-execqueues-close-fd.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-1/igt@xe_exec_reset@cm-close-execqueues-close-fd.html * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready: - shard-bmg: [DMESG-WARN][253] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: - shard-bmg: [DMESG-WARN][255] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html * igt@xe_module_load@unload: - shard-bmg: [DMESG-WARN][257] ([Intel XE#3467]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_module_load@unload.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_module_load@unload.html * igt@xe_pm@s2idle-basic-exec: - shard-bmg: [DMESG-WARN][259] ([Intel XE#1616] / [Intel XE#3468]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_pm@s2idle-basic-exec.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s3-mocs: - shard-bmg: [DMESG-FAIL][261] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_pm@s3-mocs.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_pm@s3-mocs.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: [DMESG-WARN][263] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_pm@s3-vm-bind-prefetch.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@xe_pm@s3-vm-bind-prefetch.html - shard-bmg: [DMESG-WARN][265] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_pm@s3-vm-bind-prefetch.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@xe_pm@s3-vm-bind-prefetch.html #### Warnings #### * igt@kms_async_flips@async-flip-suspend-resume: - shard-dg2-set2: [DMESG-WARN][267] ([Intel XE#3468]) -> [SKIP][268] ([Intel XE#2423] / [i915#2575]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_async_flips@async-flip-suspend-resume.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-bmg: [DMESG-FAIL][269] ([Intel XE#3468]) -> [DMESG-WARN][270] ([Intel XE#3468]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][271] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][272] ([Intel XE#316]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][273] ([Intel XE#316]) -> [SKIP][274] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-90.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-bmg: [SKIP][275] ([Intel XE#2327]) -> [SKIP][276] ([Intel XE#2136] / [Intel XE#2231]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_big_fb@linear-16bpp-rotate-90.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][277] ([Intel XE#2136]) -> [SKIP][278] ([Intel XE#316]) +4 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][279] ([Intel XE#316]) -> [SKIP][280] ([Intel XE#2136]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-0: - shard-dg2-set2: [SKIP][281] ([Intel XE#1124]) -> [SKIP][282] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][283] ([Intel XE#610]) -> [SKIP][284] ([Intel XE#2136]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: [SKIP][285] ([Intel XE#1124]) -> [SKIP][286] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][287] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][288] ([Intel XE#1124]) +5 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][289] ([Intel XE#1124]) -> [SKIP][290] ([Intel XE#2136]) +8 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][291] ([Intel XE#2136]) -> [SKIP][292] ([Intel XE#610]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][293] ([Intel XE#2136]) -> [SKIP][294] ([Intel XE#1124]) +6 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: [SKIP][295] ([Intel XE#367]) -> [SKIP][296] ([Intel XE#2423] / [i915#2575]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][297] ([Intel XE#2423] / [i915#2575]) -> [SKIP][298] ([Intel XE#2191]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][299] ([Intel XE#2191]) -> [SKIP][300] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][301] ([Intel XE#2423] / [i915#2575]) -> [SKIP][302] ([Intel XE#367]) +4 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][303] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][304] ([Intel XE#455] / [Intel XE#787]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][305] ([Intel XE#2136]) -> [SKIP][306] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][307] ([Intel XE#2887]) -> [SKIP][308] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][309] ([Intel XE#2907]) -> [SKIP][310] ([Intel XE#2136]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][311] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][312] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][313] ([Intel XE#2136]) -> [SKIP][314] ([Intel XE#3442]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [FAIL][315] ([Intel XE#616]) -> [SKIP][316] ([Intel XE#2136]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][317] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][318] ([Intel XE#2136]) +11 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][319] ([Intel XE#2136]) -> [SKIP][320] ([Intel XE#2907]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][321] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][322] ([Intel XE#314]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@dp-audio: - shard-dg2-set2: [SKIP][323] ([Intel XE#2423] / [i915#2575]) -> [SKIP][324] ([Intel XE#373]) +9 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_chamelium_audio@dp-audio.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: [SKIP][325] ([Intel XE#306]) -> [SKIP][326] ([Intel XE#2423] / [i915#2575]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_chamelium_color@ctm-green-to-red.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@degamma: - shard-dg2-set2: [SKIP][327] ([Intel XE#2423] / [i915#2575]) -> [SKIP][328] ([Intel XE#306]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_chamelium_color@degamma.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_color@gamma: - shard-bmg: [SKIP][329] ([Intel XE#2325]) -> [SKIP][330] ([Intel XE#3007]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_chamelium_color@gamma.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-bmg: [SKIP][331] ([Intel XE#2252]) -> [SKIP][332] ([Intel XE#3007]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][333] ([Intel XE#373]) -> [SKIP][334] ([Intel XE#2423] / [i915#2575]) +14 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@atomic: - shard-dg2-set2: [FAIL][335] ([Intel XE#1178]) -> [SKIP][336] ([Intel XE#2423] / [i915#2575]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_content_protection@atomic.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-bmg: [SKIP][337] ([Intel XE#2341]) -> [FAIL][338] ([Intel XE#1178]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: [SKIP][339] ([Intel XE#2423] / [i915#2575]) -> [FAIL][340] ([Intel XE#1178]) +1 other test fail [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_content_protection@lic-type-0.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-alpha-transparent: - shard-dg2-set2: [SKIP][341] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][342] ([Intel XE#1727]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_cursor_crc@cursor-alpha-transparent.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_cursor_crc@cursor-alpha-transparent.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: [SKIP][343] ([Intel XE#308]) -> [SKIP][344] ([Intel XE#2423] / [i915#2575]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x512.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2-set2: [SKIP][345] ([Intel XE#2423] / [i915#2575]) -> [SKIP][346] ([Intel XE#308]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_cursor_crc@cursor-random-512x512.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-dg2-set2: [SKIP][347] ([Intel XE#2423] / [i915#2575]) -> [SKIP][348] ([Intel XE#455]) +5 other tests skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-max-size.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-bmg: [SKIP][349] ([Intel XE#2291]) -> [SKIP][350] ([Intel XE#3007]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-bmg: [SKIP][351] ([Intel XE#2291]) -> [DMESG-WARN][352] ([Intel XE#3468]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][353] ([Intel XE#877]) -> [SKIP][354] ([Intel XE#2291]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][355] ([Intel XE#323]) -> [SKIP][356] ([Intel XE#2423] / [i915#2575]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-bmg: [SKIP][357] ([Intel XE#2286]) -> [SKIP][358] ([Intel XE#3007]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-bmg: [DMESG-FAIL][359] ([Intel XE#3468]) -> [FAIL][360] ([Intel XE#2141]) +1 other test fail [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dsc@dsc-basic: - shard-dg2-set2: [SKIP][361] ([Intel XE#2351]) -> [SKIP][362] ([Intel XE#455]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_dsc@dsc-basic.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-formats: - shard-dg2-set2: [SKIP][363] ([Intel XE#455]) -> [SKIP][364] ([Intel XE#2136] / [Intel XE#2351]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_dsc@dsc-with-formats.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][365] ([Intel XE#1695]) -> [DMESG-FAIL][366] ([Intel XE#3468]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_fbcon_fbt@fbc.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][367] ([Intel XE#2423] / [i915#2575]) -> [SKIP][368] ([Intel XE#1138]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_feature_discovery@display-4x.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][369] ([Intel XE#1137]) -> [SKIP][370] ([Intel XE#2423] / [i915#2575]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_feature_discovery@dp-mst.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-bmg: [SKIP][371] ([Intel XE#2316]) -> [DMESG-WARN][372] ([Intel XE#2955] / [Intel XE#3468]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-bmg: [SKIP][373] ([Intel XE#2316]) -> [FAIL][374] ([Intel XE#2882]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [SKIP][375] ([Intel XE#2316]) -> [DMESG-WARN][376] ([Intel XE#3468]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-expired-vblank: - shard-dg2-set2: [FAIL][377] ([Intel XE#301]) -> [SKIP][378] ([Intel XE#2423] / [i915#2575]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [SKIP][379] ([Intel XE#2423] / [i915#2575]) -> [FAIL][380] ([Intel XE#301]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-dg2-set2: [SKIP][381] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][382] ([Intel XE#2049]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_flip@flip-vs-panning-interruptible.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [SKIP][383] ([Intel XE#2423] / [i915#2575]) -> [DMESG-FAIL][384] ([Intel XE#1727] / [Intel XE#3468]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@modeset-vs-vblank-race: - shard-dg2-set2: [DMESG-WARN][385] ([Intel XE#1727]) -> [SKIP][386] ([Intel XE#2423] / [i915#2575]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip@modeset-vs-vblank-race.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_flip@modeset-vs-vblank-race.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][387] ([Intel XE#455]) -> [SKIP][388] ([Intel XE#2136]) +5 other tests skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-bmg: [SKIP][389] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][390] ([Intel XE#2136] / [Intel XE#2231]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][391] ([Intel XE#2136]) -> [SKIP][392] ([Intel XE#455]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][393] ([Intel XE#2311]) -> [SKIP][394] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][395] ([Intel XE#2311]) -> [SKIP][396] ([Intel XE#2312]) +13 other tests skip [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][397] ([Intel XE#2312]) -> [SKIP][398] ([Intel XE#2311]) +27 other tests skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][399] ([Intel XE#2136]) -> [SKIP][400] ([Intel XE#651]) +17 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][401] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][402] ([Intel XE#651]) +7 other tests skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-bmg: [FAIL][403] ([Intel XE#2333]) -> [DMESG-FAIL][404] ([Intel XE#3468]) +5 other tests dmesg-fail [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [DMESG-FAIL][405] ([Intel XE#3468]) -> [SKIP][406] ([Intel XE#2136] / [Intel XE#2231]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][407] ([Intel XE#2312]) -> [FAIL][408] ([Intel XE#2333]) +9 other tests fail [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [FAIL][409] ([Intel XE#2333]) -> [SKIP][410] ([Intel XE#2312]) +4 other tests skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][411] ([Intel XE#2312]) -> [DMESG-FAIL][412] ([Intel XE#3468]) +1 other test dmesg-fail [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [DMESG-FAIL][413] ([Intel XE#3468]) -> [SKIP][414] ([Intel XE#2312]) [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [DMESG-FAIL][415] ([Intel XE#3468]) -> [FAIL][416] ([Intel XE#2333]) +3 other tests fail [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][417] ([Intel XE#658]) -> [SKIP][418] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-tiling-y.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: [SKIP][419] ([Intel XE#651]) -> [SKIP][420] ([Intel XE#2136]) +27 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][421] ([Intel XE#651]) -> [SKIP][422] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][423] ([Intel XE#653]) -> [SKIP][424] ([Intel XE#2136]) +26 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][425] ([Intel XE#2312]) -> [SKIP][426] ([Intel XE#2136] / [Intel XE#2231]) [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][427] ([Intel XE#2313]) -> [SKIP][428] ([Intel XE#2312]) +16 other tests skip [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][429] ([Intel XE#653]) -> [SKIP][430] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-bmg: [INCOMPLETE][431] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468]) -> [FAIL][432] ([Intel XE#2333]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2: - shard-bmg: [INCOMPLETE][433] ([Intel XE#1727] / [Intel XE#3468]) -> [FAIL][434] ([Intel XE#2333]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][435] ([Intel XE#2313]) -> [SKIP][436] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][437] ([Intel XE#2312]) -> [SKIP][438] ([Intel XE#2313]) +26 other tests skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][439] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][440] ([Intel XE#653]) +6 other tests skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-dg2-set2: [SKIP][441] ([Intel XE#2136]) -> [SKIP][442] ([Intel XE#653]) +23 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-suspend.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][443] ([Intel XE#3544]) -> [SKIP][444] ([Intel XE#3374] / [Intel XE#3544]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][445] ([Intel XE#2927]) -> [SKIP][446] ([Intel XE#2136]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_joiner@basic-ultra-joiner.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: [SKIP][447] ([Intel XE#2136]) -> [SKIP][448] ([Intel XE#2927]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane@plane-panning-bottom-right: - shard-dg2-set2: [SKIP][449] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][450] ([Intel XE#1035] / [Intel XE#1727]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_plane@plane-panning-bottom-right.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_plane@plane-panning-bottom-right.html * igt@kms_plane_cursor@primary: - shard-dg2-set2: [SKIP][451] ([Intel XE#2423] / [i915#2575]) -> [FAIL][452] ([Intel XE#616]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_plane_cursor@primary.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_plane_cursor@primary.html * igt@kms_plane_multiple@tiling-y: - shard-dg2-set2: [SKIP][453] ([Intel XE#455]) -> [SKIP][454] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_plane_multiple@tiling-y.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2-set2: [SKIP][455] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][456] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - shard-bmg: [DMESG-WARN][457] ([Intel XE#3468]) -> [SKIP][458] ([Intel XE#3007]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2-set2: [SKIP][459] ([Intel XE#2423] / [i915#2575]) -> [SKIP][460] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-bmg: [SKIP][461] ([Intel XE#2763]) -> [SKIP][462] ([Intel XE#3007]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][463] ([Intel XE#870]) -> [SKIP][464] ([Intel XE#2136]) +2 other tests skip [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][465] ([Intel XE#2136]) -> [SKIP][466] ([Intel XE#870]) +1 other test skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][467] ([Intel XE#3309]) -> [SKIP][468] ([Intel XE#2136]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_pm_dc@dc5-retention-flops.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][469] ([Intel XE#908]) -> [SKIP][470] ([Intel XE#2136]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2-set2: [FAIL][471] ([Intel XE#3527]) -> [SKIP][472] ([Intel XE#2136]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_pm_lpsp@kms-lpsp.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2-set2: [SKIP][473] ([Intel XE#2446]) -> [ABORT][474] ([Intel XE#3468]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-dg2-set2: [SKIP][475] ([Intel XE#2446]) -> [DMESG-WARN][476] ([Intel XE#1727] / [Intel XE#3468]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_pm_rpm@modeset-stress-extra-wait.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][477] ([Intel XE#2136]) -> [SKIP][478] ([Intel XE#1489]) +7 other tests skip [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][479] ([Intel XE#1489]) -> [SKIP][480] ([Intel XE#2136]) +9 other tests skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-bmg: [SKIP][481] ([Intel XE#1489]) -> [SKIP][482] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: [SKIP][483] ([Intel XE#1122]) -> [SKIP][484] ([Intel XE#2136]) [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_psr2_su@frontbuffer-xrgb8888.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][485] ([Intel XE#2136]) -> [SKIP][486] ([Intel XE#1122]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][487] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][488] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_psr@fbc-pr-sprite-plane-onoff.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-dg2-set2: [SKIP][489] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][490] ([Intel XE#2136]) +13 other tests skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_psr@fbc-psr2-primary-blt.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-dg2-set2: [SKIP][491] ([Intel XE#2136]) -> [SKIP][492] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_psr@pr-cursor-plane-onoff.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@psr-primary-page-flip: - shard-dg2-set2: [SKIP][493] ([Intel XE#2351]) -> [SKIP][494] ([Intel XE#2850] / [Intel XE#929]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr-sprite-blt: - shard-dg2-set2: [SKIP][495] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][496] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_psr@psr-sprite-blt.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_psr@psr-sprite-blt.html * igt@kms_psr@psr2-primary-page-flip: - shard-bmg: [SKIP][497] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][498] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_psr@psr2-primary-page-flip.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@kms_psr@psr2-primary-page-flip.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: [SKIP][499] ([Intel XE#3414]) -> [SKIP][500] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_rotation_crc@bad-tiling.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2-set2: [SKIP][501] ([Intel XE#2423] / [i915#2575]) -> [SKIP][502] ([Intel XE#3414]) +1 other test skip [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [DMESG-FAIL][503] ([Intel XE#1727]) -> [SKIP][504] ([Intel XE#2423] / [i915#2575]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][505] ([Intel XE#2509]) -> [SKIP][506] ([Intel XE#2426]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-modeset-rpm: - shard-dg2-set2: [SKIP][507] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][508] ([Intel XE#3468]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_vblank@ts-continuation-modeset-rpm.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@kms_vblank@ts-continuation-modeset-rpm.html * igt@kms_vblank@wait-forked-hang: - shard-bmg: [DMESG-WARN][509] ([Intel XE#3468]) -> [DMESG-FAIL][510] ([Intel XE#3468]) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_vblank@wait-forked-hang.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@kms_vblank@wait-forked-hang.html * igt@kms_vrr@cmrr: - shard-dg2-set2: [SKIP][511] ([Intel XE#2423] / [i915#2575]) -> [SKIP][512] ([Intel XE#2168]) [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_vrr@cmrr.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@kms_vrr@cmrr.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][513] ([Intel XE#2423] / [i915#2575]) -> [SKIP][514] ([Intel XE#756]) +1 other test skip [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2-set2: [SKIP][515] ([Intel XE#756]) -> [SKIP][516] ([Intel XE#2423] / [i915#2575]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_writeback@writeback-invalid-parameters.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@kms_writeback@writeback-invalid-parameters.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][517] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][518] ([Intel XE#2423] / [i915#2575]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][519] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][520] ([Intel XE#1130]) [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][521] ([Intel XE#1130]) -> [SKIP][522] ([Intel XE#1123]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][523] ([Intel XE#1126]) -> [SKIP][524] ([Intel XE#1130]) [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x3fff.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][525] ([Intel XE#1130]) -> [SKIP][526] ([Intel XE#1126]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][527] ([Intel XE#2905]) -> [SKIP][528] ([Intel XE#1130]) +13 other tests skip [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_eudebug@basic-close.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-vm-bind: - shard-dg2-set2: [SKIP][529] ([Intel XE#1130]) -> [SKIP][530] ([Intel XE#2905]) +11 other tests skip [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_eudebug@basic-vm-bind.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@xe_eudebug@basic-vm-bind.html * igt@xe_eudebug@basic-vm-bind-extended: - shard-bmg: [SKIP][531] ([Intel XE#2905]) -> [SKIP][532] ([Intel XE#1130]) +1 other test skip [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-extended.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-extended.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][533] ([Intel XE#1600]) -> [SKIP][534] ([Intel XE#1130]) [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: [INCOMPLETE][535] ([Intel XE#1473] / [Intel XE#3468]) -> [TIMEOUT][536] ([Intel XE#1473]) [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-large.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [SKIP][537] ([Intel XE#1130]) -> [TIMEOUT][538] ([Intel XE#1473] / [Intel XE#402]) [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_basic@many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: [SKIP][539] ([Intel XE#1130]) -> [DMESG-WARN][540] ([Intel XE#1727]) [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_exec_basic@many-execqueues-many-vm-basic-defer-bind.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@xe_exec_basic@many-execqueues-many-vm-basic-defer-bind.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: [SKIP][541] ([Intel XE#2322]) -> [SKIP][542] ([Intel XE#1130]) [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@many-execqueues-basic-prefetch: - shard-dg2-set2: [SKIP][543] ([Intel XE#288]) -> [SKIP][544] ([Intel XE#1130]) +33 other tests skip [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-basic-prefetch.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-basic-prefetch.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: [SKIP][545] ([Intel XE#1130]) -> [SKIP][546] ([Intel XE#288]) +28 other tests skip [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][547] ([Intel XE#2360]) -> [SKIP][548] ([Intel XE#1130]) [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][549] ([Intel XE#1130]) -> [SKIP][550] ([Intel XE#2360]) +1 other test skip [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_exec_reset@cm-close-execqueues-close-fd: - shard-bmg: [FAIL][551] ([Intel XE#1081]) -> [DMESG-WARN][552] ([Intel XE#3468]) [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_exec_reset@cm-close-execqueues-close-fd.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@xe_exec_reset@cm-close-execqueues-close-fd.html * igt@xe_exec_reset@parallel-close-execqueues-close-fd: - shard-dg2-set2: [SKIP][553] ([Intel XE#1130]) -> [DMESG-WARN][554] ([Intel XE#1727] / [Intel XE#358]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_exec_reset@parallel-close-execqueues-close-fd.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@xe_exec_reset@parallel-close-execqueues-close-fd.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-dg2-set2: [DMESG-WARN][555] ([Intel XE#3343]) -> [SKIP][556] ([Intel XE#1130]) +1 other test skip [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-dg2-set2: [DMESG-WARN][557] ([Intel XE#3467]) -> [SKIP][558] ([Intel XE#1130]) +3 other tests skip [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html - shard-bmg: [DMESG-WARN][559] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][560] ([Intel XE#3467]) [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-bmg: [DMESG-WARN][561] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][562] ([Intel XE#3343]) +1 other test dmesg-warn [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [DMESG-FAIL][563] ([Intel XE#3467]) -> [FAIL][564] ([Intel XE#3499]) [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-bmg: [FAIL][565] ([Intel XE#3499]) -> [DMESG-FAIL][566] ([Intel XE#3467]) [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: [SKIP][567] ([Intel XE#1130]) -> [DMESG-WARN][568] ([Intel XE#3467]) +2 other tests dmesg-warn [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [DMESG-WARN][569] ([Intel XE#3468]) -> [DMESG-WARN][570] ([Intel XE#3467]) [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][571] ([Intel XE#2833]) -> [SKIP][572] ([Intel XE#1192]) [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_live_ktest@xe_eudebug.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@xe_live_ktest@xe_eudebug.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][573] ([Intel XE#1130]) -> [SKIP][574] ([Intel XE#560]) [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_media_fill@media-fill.html [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@xe_media_fill@media-fill.html * igt@xe_oa@invalid-oa-metric-set-id: - shard-dg2-set2: [SKIP][575] ([Intel XE#3573]) -> [SKIP][576] ([Intel XE#1130]) +8 other tests skip [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_oa@invalid-oa-metric-set-id.html [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@xe_oa@invalid-oa-metric-set-id.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: [SKIP][577] ([Intel XE#1130]) -> [SKIP][578] ([Intel XE#3573]) +3 other tests skip [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][579] ([Intel XE#1130]) -> [SKIP][580] ([Intel XE#1337]) [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: [SKIP][581] ([Intel XE#1130]) -> [SKIP][582] ([Intel XE#2284] / [Intel XE#366]) +4 other tests skip [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][583] ([Intel XE#1130]) -> [SKIP][584] ([Intel XE#2284]) [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_pm@d3cold-mocs.html [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3hot-basic: - shard-dg2-set2: [DMESG-WARN][585] ([Intel XE#3468]) -> [SKIP][586] ([Intel XE#1130]) [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_pm@d3hot-basic.html [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@xe_pm@d3hot-basic.html * igt@xe_pm@s3-mocs: - shard-dg2-set2: [DMESG-WARN][587] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][588] ([Intel XE#1130]) [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_pm@s3-mocs.html [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@xe_pm@s3-mocs.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-dg2-set2: [SKIP][589] ([Intel XE#1130]) -> [DMESG-WARN][590] ([Intel XE#1727] / [Intel XE#3468]) [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_pm@s4-vm-bind-prefetch.html [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-463/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_pm_residency@idle-residency-on-exec: - shard-dg2-set2: [DMESG-WARN][591] ([Intel XE#1727]) -> [SKIP][592] ([Intel XE#1130]) [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_pm_residency@idle-residency-on-exec.html [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@xe_pm_residency@idle-residency-on-exec.html * igt@xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: [SKIP][593] ([Intel XE#944]) -> [SKIP][594] ([Intel XE#1130]) +4 other tests skip [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_query@multigpu-query-cs-cycles.html [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-dg2-set2: [SKIP][595] ([Intel XE#1130]) -> [SKIP][596] ([Intel XE#944]) +1 other test skip [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_query@multigpu-query-mem-usage: - shard-bmg: [SKIP][597] ([Intel XE#944]) -> [SKIP][598] ([Intel XE#1130]) [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_query@multigpu-query-mem-usage.html [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_tlb@basic-tlb: - shard-dg2-set2: [SKIP][599] ([Intel XE#1130]) -> [FAIL][600] ([Intel XE#2922]) [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_tlb@basic-tlb.html [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@xe_tlb@basic-tlb.html * igt@xe_wedged@basic-wedged: - shard-bmg: [DMESG-WARN][601] ([Intel XE#2919]) -> [SKIP][602] ([Intel XE#1130]) [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_wedged@basic-wedged.html [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_wedged@basic-wedged.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: [SKIP][603] ([Intel XE#1130]) -> [ABORT][604] ([Intel XE#3421]) [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_wedged@wedged-at-any-timeout.html [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-436/igt@xe_wedged@wedged-at-any-timeout.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][605] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][606] ([Intel XE#1130]) [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_wedged@wedged-mode-toggle.html [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.html [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081 [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#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [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#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [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#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [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#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [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#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3527]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3527 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3557 [Intel XE#3560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3560 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358 [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#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [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#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#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#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8123 -> IGTPW_12180 * Linux: xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a -> xe-2264-2d0d734c211b36125b27eceb42aceac394d4f377 IGTPW_12180: 4095ce9bfaff0948dae68be7d0c2383f918ba4c3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8123: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a: a381faddbfc974e7bd57efe953a738415afccd6a xe-2264-2d0d734c211b36125b27eceb42aceac394d4f377: 2d0d734c211b36125b27eceb42aceac394d4f377 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/index.html [-- Attachment #2: Type: text/html, Size: 184531 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ Xe.CI.Full: failure for tests/intel/xe_mmap: fix assert_caching on small-bar 2024-11-24 3:19 ` ✗ Xe.CI.Full: failure " Patchwork @ 2024-12-10 11:24 ` Kamil Konieczny 0 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2024-12-10 11:24 UTC (permalink / raw) To: igt-dev; +Cc: Matthew Auld, I915-ci-infra Hi igt-dev, On 2024-11-24 at 03:19:27 -0000, Patchwork wrote: > == Series Details == > > Series: tests/intel/xe_mmap: fix assert_caching on small-bar > URL : https://patchwork.freedesktop.org/series/141710/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8123_full -> XEIGTPW_12180_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_12180_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12180_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_12180_full: > > ### IGT changes ### > > #### Possible regressions #### Below regressions are unrelated to xe_mmap test changes. Regards, Kamil > > * igt@kms_flip@2x-flip-vs-rmfb-interruptible@ac-dp2-hdmi-a3: > - shard-bmg: NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible@ac-dp2-hdmi-a3.html > > * igt@kms_flip@blocking-wf_vblank@a-edp1: > - shard-lnl: [PASS][2] -> [FAIL][3] > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@kms_flip@blocking-wf_vblank@a-edp1.html > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-lnl-6/igt@kms_flip@blocking-wf_vblank@a-edp1.html > > * igt@kms_flip@flip-vs-panning-interruptible@d-dp4: > - shard-dg2-set2: NOTRUN -> [INCOMPLETE][4] > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-dg2-435/igt@kms_flip@flip-vs-panning-interruptible@d-dp4.html > > * igt@xe_exec_basic@many-execqueues-null: > - shard-bmg: [PASS][5] -> [DMESG-WARN][6] +4 other tests dmesg-warn > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_exec_basic@many-execqueues-null.html > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-6/igt@xe_exec_basic@many-execqueues-null.html > > > #### Warnings #### > > * igt@xe_wedged@wedged-at-any-timeout: > - shard-bmg: [SKIP][7] ([Intel XE#1130]) -> [ABORT][8] > [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html > [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html > > > Known issues > ------------ > ...cut... > Here are the changes found in XEIGTPW_12180_full that come from known issues: > [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 > [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 > [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 > > > Build changes > ------------- > > * IGT: IGT_8123 -> IGTPW_12180 > * Linux: xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a -> xe-2264-2d0d734c211b36125b27eceb42aceac394d4f377 > > IGTPW_12180: 4095ce9bfaff0948dae68be7d0c2383f918ba4c3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8123: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a: a381faddbfc974e7bd57efe953a738415afccd6a > xe-2264-2d0d734c211b36125b27eceb42aceac394d4f377: 2d0d734c211b36125b27eceb42aceac394d4f377 > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12180/index.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_mmap: fix assert_caching on small-bar 2024-11-22 16:47 [PATCH i-g-t] tests/intel/xe_mmap: fix assert_caching on small-bar Matthew Auld ` (2 preceding siblings ...) 2024-11-24 3:19 ` ✗ Xe.CI.Full: failure " Patchwork @ 2024-11-24 20:32 ` Patchwork 2024-12-10 11:26 ` Kamil Konieczny 2024-12-09 9:23 ` [PATCH i-g-t] " Grzegorzek, Dominik 4 siblings, 1 reply; 8+ messages in thread From: Patchwork @ 2024-11-24 20:32 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev == Series Details == Series: tests/intel/xe_mmap: fix assert_caching on small-bar URL : https://patchwork.freedesktop.org/series/141710/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15732_full -> IGTPW_12180_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12180_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12180_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_12180/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12180_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-7/igt@gem_ccs@large-ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@gem_ccs@large-ctrl-surf-copy.html - shard-tglu: NOTRUN -> [SKIP][3] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-6/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-dg2: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [TIMEOUT][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [DMESG-WARN][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@gem-idle: - shard-dg2: [PASS][7] -> [SKIP][8] +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-5/igt@i915_pm_rpm@gem-idle.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@i915_pm_rpm@gem-idle.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [PASS][9] -> [DMESG-FAIL][10] +1 other test dmesg-fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-3/igt@i915_suspend@debugfs-reader.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-3/igt@i915_suspend@debugfs-reader.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-rkl: [PASS][11] -> [DMESG-WARN][12] +56 other tests dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-sliding-256x256: - shard-rkl: NOTRUN -> [DMESG-WARN][13] +8 other tests dmesg-warn [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-256x256.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][14] +5 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_plane@pixel-format: - shard-dg1: [PASS][15] -> [INCOMPLETE][16] +1 other test incomplete [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg1-18/igt@kms_plane@pixel-format.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@kms_plane@pixel-format.html #### Warnings #### * igt@device_reset@cold-reset-bound: - shard-dg2: [SKIP][17] ([i915#11078]) -> [SKIP][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-6/igt@device_reset@cold-reset-bound.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@device_reset@cold-reset-bound.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [TIMEOUT][19] ([i915#12917]) -> [FAIL][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-buffer.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: [SKIP][21] ([i915#2575]) -> [SKIP][22] +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@perf@non-zero-reason: - shard-dg2: [FAIL][23] ([i915#9100]) -> [SKIP][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-6/igt@perf@non-zero-reason.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@perf@non-zero-reason.html * igt@perf_pmu@busy-double-start: - shard-dg2: [FAIL][25] ([i915#4349]) -> [SKIP][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-4/igt@perf_pmu@busy-double-start.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@most-busy-idle-check-all: - shard-rkl: [FAIL][27] ([i915#4349]) -> [DMESG-WARN][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-5/igt@perf_pmu@most-busy-idle-check-all.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@2x-plain-flip: - {shard-dg2-9}: NOTRUN -> [SKIP][29] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-9/igt@kms_flip@2x-plain-flip.html Known issues ------------ Here are the changes found in IGTPW_12180_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_allocator@two-level-inception-interruptible: - shard-dg2: [PASS][30] -> [SKIP][31] +23 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-10/igt@api_intel_allocator@two-level-inception-interruptible.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@api_intel_allocator@two-level-inception-interruptible.html * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#8411]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-4/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#8411]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][34] ([i915#6230]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-9/igt@api_intel_bb@crc32.html * igt@debugfs_test@basic-hwmon: - shard-dg1: [PASS][35] -> [DMESG-WARN][36] ([i915#4423]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg1-13/igt@debugfs_test@basic-hwmon.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#11078]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#11078]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#8414]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#7697]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@gem_basic@multigpu-create-close.html - shard-tglu: NOTRUN -> [SKIP][41] ([i915#7697]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-10/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#9323]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-5/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ctx_isolation@preservation-s3: - shard-dg2: NOTRUN -> [INCOMPLETE][43] ([i915#12353]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_param@invalid-param-set: - shard-dg2: [PASS][44] -> [SKIP][45] ([i915#2575]) +137 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-4/igt@gem_ctx_param@invalid-param-set.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@gem_ctx_param@invalid-param-set.html * igt@gem_ctx_persistence@hang: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#8555]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@hostile: - shard-dg2: NOTRUN -> [FAIL][47] ([i915#11980] / [i915#12580]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@gem_ctx_persistence@hostile.html - shard-rkl: NOTRUN -> [FAIL][48] ([i915#11980] / [i915#12580]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-1/igt@gem_ctx_persistence@hostile.html - shard-dg1: NOTRUN -> [FAIL][49] ([i915#11980] / [i915#12580]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-17/igt@gem_ctx_persistence@hostile.html - shard-snb: NOTRUN -> [SKIP][50] ([i915#1099]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-snb4/igt@gem_ctx_persistence@hostile.html - shard-tglu: NOTRUN -> [FAIL][51] ([i915#11980] / [i915#12580]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-9/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#280]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#280]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][54] ([i915#280]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-9/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4812]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4771]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][57] ([i915#11965] / [i915#12558]) +2 other tests fail [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_capture@capture@vecs1-smem: - shard-dg2: NOTRUN -> [FAIL][58] ([i915#11965]) +1 other test fail [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@gem_exec_capture@capture@vecs1-smem.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg2: NOTRUN -> [TIMEOUT][59] ([i915#3778] / [i915#7016]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-3/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3539]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-17/igt@gem_exec_flush@basic-uc-prw-default.html - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3539]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-3/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3539] / [i915#4852]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3539] / [i915#4852]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3281]) +16 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3281]) +10 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-write-gtt: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3281]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-2/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4537] / [i915#4812]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#7276]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4812]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-17/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4860]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4860]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#12936]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-dg2: [PASS][73] -> [SKIP][74] ([i915#12936]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4565]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-glk: NOTRUN -> [SKIP][76] ([i915#4613]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-glk5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#4613]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#12193]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#4613]) +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-9/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][80] ([i915#5493]) +1 other test timeout [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: NOTRUN -> [TIMEOUT][81] ([i915#5493]) +1 other test timeout [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#4613]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@gem_lmem_swapping@verify.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4083]) +8 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@medium-copy-odd: - shard-rkl: [PASS][84] -> [DMESG-WARN][85] ([i915#12917]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-7/igt@gem_mmap_gtt@medium-copy-odd.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-5/igt@gem_mmap_gtt@medium-copy-odd.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4083]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3282]) +6 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-10/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3282]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-1/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3282]) +8 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-rkl: NOTRUN -> [TIMEOUT][90] ([i915#12917]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-7/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4270]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-7/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#12975]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4270]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html - shard-tglu: [PASS][94] -> [SKIP][95] ([i915#4270]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-tglu-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-6/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#2575] / [i915#5190]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#5190] / [i915#8428]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-2/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4079]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [PASS][99] -> [DMESG-FAIL][100] ([i915#12964]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-4/igt@gem_softpin@noreloc-s3.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-7/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4077]) +7 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-10/igt@gem_tiled_blits@basic.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4077]) +16 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4079]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-3/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@coherency-sync: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3297]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#3297]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-7/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#3297] / [i915#3323]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#3297]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#3282] / [i915#3297]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html - shard-dg1: NOTRUN -> [SKIP][109] ([i915#3282] / [i915#3297]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#3297] / [i915#4958]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-7/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][111] ([i915#3297] / [i915#4958]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#3297]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-5/igt@gem_userptr_blits@unsync-unmap.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#2856]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#2527] / [i915#2856]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-6/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#2527]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-2/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#2527]) +7 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-out: - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#2527] / [i915#2856]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][118] -> [ABORT][119] ([i915#9820]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html - shard-snb: [PASS][120] -> [ABORT][121] ([i915#9820]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: NOTRUN -> [ABORT][122] ([i915#12817] / [i915#9820]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#8399]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-5/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: NOTRUN -> [FAIL][124] ([i915#12548] / [i915#3591]) +1 other test fail [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#11681] / [i915#6621]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-2/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#11681]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-7/igt@i915_pm_rps@thresholds.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#6188]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-3/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@perf: - shard-dg2: [PASS][128] -> [FAIL][129] ([i915#12867]) +4 other tests fail [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-10/igt@i915_selftest@perf.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@i915_selftest@perf.html * igt@intel_hwmon@hwmon-write: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#7707]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4212]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4212]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-10/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#8709]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#6228]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#1769] / [i915#3555]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#5286]) +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#5286]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#5286]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5286]) +8 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#3638]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][141] ([i915#3638]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-17/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5190]) +9 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#4538]) +8 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][144] +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#12313]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][147] ([i915#12313]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][148] ([i915#12313]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#6095]) +34 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#6095]) +104 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#12313]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#10307] / [i915#6095]) +133 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#6095]) +13 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#12313]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#6095]) +74 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-7/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][156] +119 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-glk8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#6095]) +192 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3742]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-5/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3742]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_cdclk@mode-transition-all-outputs.html - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3742]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#7828]) +11 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#7828]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#7828]) +9 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-4/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#7828]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#7828]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-snb: NOTRUN -> [SKIP][166] +86 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-snb6/igt@kms_content_protection@atomic-dpms.html - shard-tglu: NOTRUN -> [SKIP][167] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-3/igt@kms_content_protection@atomic-dpms.html - shard-dg2: NOTRUN -> [SKIP][168] ([i915#7118] / [i915#9424]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html - shard-rkl: NOTRUN -> [SKIP][169] ([i915#7118] / [i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-2/igt@kms_content_protection@atomic-dpms.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#7116] / [i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3299]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#3299]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#3116] / [i915#3299]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#9424]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-8/igt@kms_content_protection@mei-interface.html - shard-rkl: NOTRUN -> [SKIP][175] ([i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-3/igt@kms_content_protection@mei-interface.html - shard-dg1: NOTRUN -> [SKIP][176] ([i915#9433]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#7118]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#7116]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][179] ([i915#6944] / [i915#7116] / [i915#7118]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-3/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#12976]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#12976]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#12976]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#3555]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#12976]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#3555]) +4 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#12976]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#4103] / [i915#4213]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#4103]) +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#9723]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3804]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#1257]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@kms_dp_aux_dev.html - shard-rkl: NOTRUN -> [SKIP][192] ([i915#1257]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-2/igt@kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][193] ([i915#1257]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][194] ([i915#1257]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-3/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#12402]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-3/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][196] ([i915#12402]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-pwrite: - shard-rkl: [PASS][197] -> [DMESG-WARN][198] ([i915#12964]) +4 other tests dmesg-warn [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-1/igt@kms_draw_crc@draw-method-pwrite.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-5/igt@kms_draw_crc@draw-method-pwrite.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#3840] / [i915#9688]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#3840]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][201] ([i915#3840]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#3840]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-17/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3840]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-10/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3840] / [i915#9053]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3840] / [i915#9053]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3840] / [i915#9053]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#3469]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-5/igt@kms_fbcon_fbt@psr.html - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#3469]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#3469]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3955]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3469]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#4854]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-2/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][214] ([i915#4854]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#1839]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-5/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#9337]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-2/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#658]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-6/igt@kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][218] ([i915#658]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-2/igt@kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#658]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-7/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#658]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#3637]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#3637]) +9 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#9934]) +10 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#8381]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#9934]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [FAIL][226] ([i915#2122]) +3 other tests fail [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html - shard-rkl: [PASS][227] -> [FAIL][228] ([i915#2122]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html - shard-dg1: NOTRUN -> [FAIL][229] ([i915#12517] / [i915#2122]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html - shard-tglu: NOTRUN -> [FAIL][230] ([i915#2122]) +2 other tests fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2: - shard-rkl: [PASS][231] -> [FAIL][232] ([i915#11989]) +1 other test fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1: - shard-snb: [PASS][233] -> [FAIL][234] ([i915#2122]) +1 other test fail [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-snb1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/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-a4: - shard-dg1: NOTRUN -> [FAIL][235] ([i915#2122]) +2 other tests fail [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a4.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#8381]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-2/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#2575]) +69 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#2587] / [i915#2672] / [i915#3555]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#2587] / [i915#2672] / [i915#3555]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672]) +2 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#2672]) +5 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#3555]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#1825]) +12 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-snb: [PASS][250] -> [SKIP][251] +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#5354]) +23 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][253] +49 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#5439]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#10433] / [i915#3458]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#8708]) +23 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#8708]) +15 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#9766]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#3458]) +9 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#3458]) +22 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][261] +100 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][262] +38 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#3023]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-2/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#12713]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8228]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#10656]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-8/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#12339]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#6301]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-2/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#6301]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-tglu-1: NOTRUN -> [SKIP][273] +35 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#8821]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-tglu: NOTRUN -> [FAIL][275] ([i915#8292]) +1 other test fail [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#12247] / [i915#9423]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#12247]) +4 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#12247]) +3 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#12247]) +9 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-dg2: [PASS][280] -> [SKIP][281] ([i915#2575] / [i915#9423]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#2575] / [i915#9423]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#12247]) +17 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#12247] / [i915#6953]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#12247] / [i915#6953]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#12247]) +17 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#12247] / [i915#3555]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#3555]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][289] ([i915#12247] / [i915#3555]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#4423] / [i915#5354]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#9812]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-10/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#5354]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-17/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#5354]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-2/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#3828]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@basic-rte: - shard-dg2: [PASS][295] -> [SKIP][296] ([i915#12937]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-1/igt@kms_pm_rpm@basic-rte.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][297] -> [SKIP][298] ([i915#9519]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#9519]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#9519]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences-dpms: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#12937]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@kms_pm_rpm@fences-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][302] -> [SKIP][303] ([i915#9519]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#9519]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#6524]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][306] ([i915#11520]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-snb1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][307] ([i915#11520]) +8 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html - shard-rkl: NOTRUN -> [SKIP][308] ([i915#11520]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-glk: NOTRUN -> [SKIP][309] ([i915#11520]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-glk8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#11520]) +9 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-9/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#11520]) +5 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#11520]) +3 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#9683]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#9683]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][315] ([i915#9683]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +9 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-4/igt@kms_psr@fbc-pr-cursor-mmap-cpu.html * igt@kms_psr@fbc-pr-primary-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#9732]) +30 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-9/igt@kms_psr@fbc-pr-primary-mmap-cpu.html * igt@kms_psr@fbc-psr2-basic: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#1072] / [i915#9732]) +35 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@pr-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#9732]) +10 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_psr@pr-sprite-render.html * igt@kms_psr@psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#1072] / [i915#9732]) +20 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-2/igt@kms_psr@psr-primary-mmap-cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#9685]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#5289]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#5190]) +3 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#12755]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#3555]) +10 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][326] ([IGT#2]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-7/igt@kms_sysfs_edid_timing.html - shard-dg1: NOTRUN -> [FAIL][327] ([IGT#2] / [i915#6493]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#8623]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: NOTRUN -> [SKIP][329] ([i915#8623]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#11920]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-2/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][331] ([i915#11920]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-6/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#9906]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-3/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg2: [PASS][333] -> [SKIP][334] ([i915#3555] / [i915#9906]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-10/igt@kms_vrr@negative-basic.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][335] ([i915#3555] / [i915#9906]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-6/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#9906]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#9906]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-dg1: NOTRUN -> [SKIP][338] ([i915#9906]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#9906]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-8/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#2437] / [i915#9412]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][341] ([i915#2437]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-glk8/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#2437] / [i915#9412]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-17/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#7387]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-8/igt@perf@global-sseu-config.html * igt@perf@oa-exponents: - shard-dg2: [PASS][344] -> [SKIP][345] ([i915#12506]) +6 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-7/igt@perf@oa-exponents.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@perf@oa-exponents.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#12506]) +4 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][347] ([i915#11823]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-5/igt@perf_pmu@module-unload.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][348] -> [FAIL][349] ([i915#4349]) +6 other tests fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [PASS][350] -> [FAIL][351] ([i915#4349]) +5 other tests fail [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-8/igt@perf_pmu@semaphore-busy@vecs0.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][352] ([i915#9351]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-10/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][353] ([i915#9351]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][354] ([i915#3708]) +2 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#3291] / [i915#3708]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-2/igt@prime_vgem@basic-read.html * igt@sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][356] ([i915#9917]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-17/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1: - shard-tglu: NOTRUN -> [FAIL][357] ([i915#12910]) +9 other tests fail [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-9/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#9917]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - shard-tglu: [ABORT][359] ([i915#12817] / [i915#5507]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-tglu-6/igt@device_reset@unbind-reset-rebind.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-2/igt@device_reset@unbind-reset-rebind.html * igt@fbdev@write: - shard-dg2: [SKIP][361] ([i915#2582]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@fbdev@write.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@fbdev@write.html * igt@gem_exec_suspend@basic-s4-devices: - shard-tglu: [ABORT][363] ([i915#7975] / [i915#8213]) -> [PASS][364] +1 other test pass [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-4/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-dg2: [SKIP][365] ([i915#12936]) -> [PASS][366] +1 other test pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_workarounds@suspend-resume-context: - shard-tglu: [ABORT][367] -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-tglu-6/igt@gem_workarounds@suspend-resume-context.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-6/igt@gem_workarounds@suspend-resume-context.html * igt@i915_pm_rpm@reg-read-ioctl: - shard-rkl: [SKIP][369] ([i915#12964]) -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-7/igt@i915_pm_rpm@reg-read-ioctl.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-1/igt@i915_pm_rpm@reg-read-ioctl.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [FAIL][371] ([i915#11808]) -> [PASS][372] +1 other test pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][373] ([i915#2346]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [FAIL][375] ([i915#2346]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [DMESG-WARN][377] ([i915#12917]) -> [PASS][378] +2 other tests pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-3/igt@kms_flip@absolute-wf_vblank-interruptible.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-3/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@dpms-vs-vblank-race-interruptible: - shard-tglu: [FAIL][379] ([i915#12431]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-tglu-2/igt@kms_flip@dpms-vs-vblank-race-interruptible.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-8/igt@kms_flip@dpms-vs-vblank-race-interruptible.html * igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a1: - shard-tglu: [FAIL][381] -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-tglu-2/igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a1.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-8/igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a1.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-rkl: [DMESG-WARN][383] ([i915#12964]) -> [PASS][384] +9 other tests pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-5/igt@kms_flip@flip-vs-panning-interruptible.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-1/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@plain-flip-fb-recreate: - shard-dg2: [INCOMPLETE][385] -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-8/igt@kms_flip@plain-flip-fb-recreate.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@kms_flip@plain-flip-fb-recreate.html - shard-dg1: [FAIL][387] ([i915#12517] / [i915#12996] / [i915#2122]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg1-14/igt@kms_flip@plain-flip-fb-recreate.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate@a-vga1: - shard-snb: [FAIL][389] ([i915#2122]) -> [PASS][390] +9 other tests pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-snb4/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-snb6/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][391] -> [PASS][392] +23 other tests pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: [FAIL][393] ([i915#6880]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [DMESG-FAIL][395] -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-suspend.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_hdmi_inject@inject-audio: - shard-dg1: [SKIP][397] -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg1-13/igt@kms_hdmi_inject@inject-audio.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-14/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg1: [INCOMPLETE][399] ([i915#12756]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg1-17/igt@kms_pipe_crc_basic@suspend-read-crc.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-12/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-dg2: [SKIP][401] ([i915#2575] / [i915#9423]) -> [PASS][402] +2 other tests pass [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2: [SKIP][403] ([i915#12937]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@kms_pm_rpm@basic-pci-d3-state.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][405] ([i915#9519]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_vblank@query-busy: - shard-dg1: [DMESG-WARN][407] ([i915#4423]) -> [PASS][408] +2 other tests pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg1-13/igt@kms_vblank@query-busy.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-13/igt@kms_vblank@query-busy.html * igt@perf@blocking@0-rcs0: - shard-tglu: [FAIL][409] ([i915#10538]) -> [PASS][410] +1 other test pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-tglu-6/igt@perf@blocking@0-rcs0.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-3/igt@perf@blocking@0-rcs0.html * igt@perf@invalid-remove-userspace-config: - shard-dg2: [SKIP][411] ([i915#12506]) -> [PASS][412] +6 other tests pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@perf@invalid-remove-userspace-config.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@perf@invalid-remove-userspace-config.html * igt@perf_pmu@busy-accuracy-50: - shard-rkl: [DMESG-WARN][413] -> [PASS][414] +60 other tests pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-3/igt@perf_pmu@busy-accuracy-50.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-1/igt@perf_pmu@busy-accuracy-50.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-rkl: [FAIL][415] ([i915#4349]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-5/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@syncobj_timeline@wait-all-for-submit-delayed-submit: - shard-dg2: [SKIP][417] ([i915#2575]) -> [PASS][418] +110 other tests pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html #### Warnings #### * igt@drm_fdinfo@virtual-busy-hang: - shard-dg2: [SKIP][419] ([i915#8414]) -> [SKIP][420] ([i915#12506]) +3 other tests skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-1/igt@drm_fdinfo@virtual-busy-hang.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@drm_fdinfo@virtual-busy-hang.html * igt@gem_ctx_sseu@engines: - shard-dg2: [SKIP][421] ([i915#2575]) -> [SKIP][422] ([i915#280]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@gem_ctx_sseu@engines.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-10/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: [SKIP][423] ([i915#280]) -> [SKIP][424] ([i915#2575]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-2/igt@gem_ctx_sseu@invalid-args.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: [SKIP][425] ([i915#2575]) -> [SKIP][426] ([i915#4771]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@gem_exec_balancer@bonded-pair.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-7/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: [SKIP][427] ([i915#2575]) -> [SKIP][428] ([i915#4812]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: [SKIP][429] ([i915#4036]) -> [SKIP][430] ([i915#2575]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-1/igt@gem_exec_balancer@invalid-bonds.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_endless@dispatch: - shard-dg2: [SKIP][431] ([i915#2575]) -> [TIMEOUT][432] ([i915#3778] / [i915#7016]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@gem_exec_endless@dispatch.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-3/igt@gem_exec_endless@dispatch.html * igt@gem_exec_fence@concurrent: - shard-dg2: [SKIP][433] ([i915#4812]) -> [SKIP][434] ([i915#2575]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-10/igt@gem_exec_fence@concurrent.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: [SKIP][435] ([i915#2575]) -> [SKIP][436] ([i915#3539] / [i915#4852]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_reloc@basic-active: - shard-dg2: [SKIP][437] ([i915#3281]) -> [SKIP][438] ([i915#2575]) +5 other tests skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-6/igt@gem_exec_reloc@basic-active.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: [SKIP][439] ([i915#2575]) -> [SKIP][440] ([i915#3281]) +7 other tests skip [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: [SKIP][441] ([i915#4537] / [i915#4812]) -> [SKIP][442] ([i915#2575]) +1 other test skip [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg2: [SKIP][443] ([i915#4860]) -> [SKIP][444] ([i915#2575]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-none.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: [SKIP][445] ([i915#2575]) -> [SKIP][446] ([i915#4077]) +5 other tests skip [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@gem_mmap_gtt@bad-object.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-2/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: [SKIP][447] ([i915#4077]) -> [SKIP][448] ([i915#2575]) +5 other tests skip [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-4/igt@gem_mmap_gtt@cpuset-big-copy.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_wc@coherency: - shard-dg2: [SKIP][449] ([i915#2575]) -> [SKIP][450] ([i915#4083]) +4 other tests skip [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@gem_mmap_wc@coherency.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@gem_mmap_wc@coherency.h == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/index.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: ✗ i915.CI.Full: failure for tests/intel/xe_mmap: fix assert_caching on small-bar 2024-11-24 20:32 ` ✗ i915.CI.Full: " Patchwork @ 2024-12-10 11:26 ` Kamil Konieczny 0 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2024-12-10 11:26 UTC (permalink / raw) To: igt-dev; +Cc: Matthew Auld, I915-ci-infra Hi igt-dev, On 2024-11-24 at 20:32:15 -0000, Patchwork wrote: > == Series Details == > > Series: tests/intel/xe_mmap: fix assert_caching on small-bar > URL : https://patchwork.freedesktop.org/series/141710/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_15732_full -> IGTPW_12180_full > ==================================================== > > Summary > ------- > > **FAILURE** Unrelated to xe test change, no need for respin. Regards, Kamil > > Serious unknown changes coming with IGTPW_12180_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_12180_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_12180/index.html > > Participating hosts (10 -> 10) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_12180_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_ccs@large-ctrl-surf-copy: > - shard-rkl: NOTRUN -> [SKIP][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-7/igt@gem_ccs@large-ctrl-surf-copy.html > - shard-dg1: NOTRUN -> [SKIP][2] > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@gem_ccs@large-ctrl-surf-copy.html > - shard-tglu: NOTRUN -> [SKIP][3] +1 other test skip > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-tglu-6/igt@gem_ccs@large-ctrl-surf-copy.html > > * igt@gem_ctx_isolation@preservation-s3@vecs0: > - shard-dg2: NOTRUN -> [INCOMPLETE][4] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@gem_ctx_isolation@preservation-s3@vecs0.html > > * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: > - shard-rkl: NOTRUN -> [TIMEOUT][5] > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html > > * igt@i915_module_load@reload-with-fault-injection: > - shard-dg2: NOTRUN -> [DMESG-WARN][6] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html > > * igt@i915_pm_rpm@gem-idle: > - shard-dg2: [PASS][7] -> [SKIP][8] +3 other tests skip > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-5/igt@i915_pm_rpm@gem-idle.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@i915_pm_rpm@gem-idle.html > > * igt@i915_suspend@debugfs-reader: > - shard-rkl: [PASS][9] -> [DMESG-FAIL][10] +1 other test dmesg-fail > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-3/igt@i915_suspend@debugfs-reader.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-3/igt@i915_suspend@debugfs-reader.html > > * igt@kms_cursor_crc@cursor-offscreen-256x85: > - shard-rkl: [PASS][11] -> [DMESG-WARN][12] +56 other tests dmesg-warn > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-256x85.html > > * igt@kms_cursor_crc@cursor-sliding-256x256: > - shard-rkl: NOTRUN -> [DMESG-WARN][13] +8 other tests dmesg-warn > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-256x256.html > > * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: > - shard-dg2: NOTRUN -> [SKIP][14] +5 other tests skip > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html > > * igt@kms_plane@pixel-format: > - shard-dg1: [PASS][15] -> [INCOMPLETE][16] +1 other test incomplete > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg1-18/igt@kms_plane@pixel-format.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg1-18/igt@kms_plane@pixel-format.html > > > #### Warnings #### > > * igt@device_reset@cold-reset-bound: > - shard-dg2: [SKIP][17] ([i915#11078]) -> [SKIP][18] > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-6/igt@device_reset@cold-reset-bound.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@device_reset@cold-reset-bound.html > > * igt@gem_pxp@hw-rejects-pxp-buffer: > - shard-rkl: [TIMEOUT][19] ([i915#12917]) -> [FAIL][20] > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-buffer.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html > > * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: > - shard-dg2: [SKIP][21] ([i915#2575]) -> [SKIP][22] +1 other test skip > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-11/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html > > * igt@perf@non-zero-reason: > - shard-dg2: [FAIL][23] ([i915#9100]) -> [SKIP][24] > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-6/igt@perf@non-zero-reason.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@perf@non-zero-reason.html > > * igt@perf_pmu@busy-double-start: > - shard-dg2: [FAIL][25] ([i915#4349]) -> [SKIP][26] > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-dg2-4/igt@perf_pmu@busy-double-start.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-11/igt@perf_pmu@busy-double-start.html > > * igt@perf_pmu@most-busy-idle-check-all: > - shard-rkl: [FAIL][27] ([i915#4349]) -> [DMESG-WARN][28] > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15732/shard-rkl-5/igt@perf_pmu@most-busy-idle-check-all.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all.html > > > #### Suppressed #### > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@kms_flip@2x-plain-flip: > - {shard-dg2-9}: NOTRUN -> [SKIP][29] > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/shard-dg2-9/igt@kms_flip@2x-plain-flip.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_12180_full that come from known issues: > ...cut... > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12180/index.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_mmap: fix assert_caching on small-bar 2024-11-22 16:47 [PATCH i-g-t] tests/intel/xe_mmap: fix assert_caching on small-bar Matthew Auld ` (3 preceding siblings ...) 2024-11-24 20:32 ` ✗ i915.CI.Full: " Patchwork @ 2024-12-09 9:23 ` Grzegorzek, Dominik 4 siblings, 0 replies; 8+ messages in thread From: Grzegorzek, Dominik @ 2024-12-09 9:23 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Auld, Matthew; +Cc: Brost, Matthew On Fri, 2024-11-22 at 16:47 +0000, Matthew Auld wrote: > Make sure we ask for DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM to avoid > sigbus here. > > Signed-off-by: Matthew Auld <matthew.auld@intel.com> > Cc: Matthew Brost <matthew.brost@intel.com> That indeed should prevent sigbus. Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com> > --- > tests/intel/xe_mmap.c | 19 ++++++++++++------- > 1 file changed, 12 insertions(+), 7 deletions(-) > > diff --git a/tests/intel/xe_mmap.c b/tests/intel/xe_mmap.c > index fc5d73d59..d818cc2f8 100644 > --- a/tests/intel/xe_mmap.c > +++ b/tests/intel/xe_mmap.c > @@ -207,7 +207,8 @@ static void test_small_bar(int fd) > gem_close(fd, bo); > } > > -static void assert_caching(int fd, uint64_t placement, uint16_t cpu_caching, bool fail) > +static void assert_caching(int fd, uint64_t placement, uint32_t flags, > + uint16_t cpu_caching, bool fail) > { > uint64_t size = xe_get_default_alignment(fd); > uint64_t mmo; > @@ -215,7 +216,7 @@ static void assert_caching(int fd, uint64_t placement, uint16_t cpu_caching, boo > uint32_t *map; > bool ret; > > - ret = __xe_bo_create_caching(fd, 0, size, placement, 0, cpu_caching, &handle); > + ret = __xe_bo_create_caching(fd, 0, size, placement, flags, cpu_caching, &handle); > igt_assert(ret == fail); > > if (fail) > @@ -237,22 +238,26 @@ static void test_cpu_caching(int fd) > { > if (vram_memory(fd, 0)) { > assert_caching(fd, vram_memory(fd, 0), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM, > DRM_XE_GEM_CPU_CACHING_WC, false); > assert_caching(fd, vram_memory(fd, 0) | system_memory(fd), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM, > DRM_XE_GEM_CPU_CACHING_WC, false); > > assert_caching(fd, vram_memory(fd, 0), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM, > DRM_XE_GEM_CPU_CACHING_WB, true); > assert_caching(fd, vram_memory(fd, 0) | system_memory(fd), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM, > DRM_XE_GEM_CPU_CACHING_WB, true); > } > > - assert_caching(fd, system_memory(fd), DRM_XE_GEM_CPU_CACHING_WB, false); > - assert_caching(fd, system_memory(fd), DRM_XE_GEM_CPU_CACHING_WC, false); > + assert_caching(fd, system_memory(fd), 0, DRM_XE_GEM_CPU_CACHING_WB, false); > + assert_caching(fd, system_memory(fd), 0, DRM_XE_GEM_CPU_CACHING_WC, false); > > - assert_caching(fd, system_memory(fd), -1, true); > - assert_caching(fd, system_memory(fd), 0, true); > - assert_caching(fd, system_memory(fd), DRM_XE_GEM_CPU_CACHING_WC + 1, true); > + assert_caching(fd, system_memory(fd), 0, -1, true); > + assert_caching(fd, system_memory(fd), 0, 0, true); > + assert_caching(fd, system_memory(fd), 0, DRM_XE_GEM_CPU_CACHING_WC + 1, true); > } > > igt_main ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-12-10 11:26 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-22 16:47 [PATCH i-g-t] tests/intel/xe_mmap: fix assert_caching on small-bar Matthew Auld 2024-11-22 19:19 ` ✓ i915.CI.BAT: success for " Patchwork 2024-11-22 19:23 ` ✓ Xe.CI.BAT: " Patchwork 2024-11-24 3:19 ` ✗ Xe.CI.Full: failure " Patchwork 2024-12-10 11:24 ` Kamil Konieczny 2024-11-24 20:32 ` ✗ i915.CI.Full: " Patchwork 2024-12-10 11:26 ` Kamil Konieczny 2024-12-09 9:23 ` [PATCH i-g-t] " Grzegorzek, Dominik
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox