* [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC
@ 2026-03-17 15:21 nishit.sharma
2026-03-17 17:41 ` Kamil Konieczny
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: nishit.sharma @ 2026-03-17 15:21 UTC (permalink / raw)
To: igt-dev, kamil.konieczny
From: Nishit Sharma <nishit.sharma@intel.com>
Add a check to skip "madvise-pat-idx-uc-comp-*" compression-related PAT
index subtests on Ponte Vecchio (PVC) platforms.
This prevents running unsupported or problematic compression tests for
the "uc-comp" variant on PVC hardware.
Signed-off-by: Nishit Sharma <nishit.sharma@intel.com>
---
tests/intel/xe_exec_system_allocator.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tests/intel/xe_exec_system_allocator.c b/tests/intel/xe_exec_system_allocator.c
index c645f6491..e0217c9d5 100644
--- a/tests/intel/xe_exec_system_allocator.c
+++ b/tests/intel/xe_exec_system_allocator.c
@@ -2517,6 +2517,7 @@ int igt_main()
};
int fd, svm_compute_loops = getenv_int("IGT_SVM_COMPUTE_LOOPS", 1);
+ uint16_t dev_id;
igt_fixture() {
struct xe_device *xe;
@@ -2527,6 +2528,7 @@ int igt_main()
xe = xe_device_get(fd);
va_bits = xe->va_bits;
open_sync_file();
+ dev_id = intel_get_drm_devid(fd);
}
for (const struct section *s = sections; s->name; s++) {
@@ -2727,6 +2729,9 @@ int igt_main()
!xe_has_vram(fd)) {
igt_skip("Skipping compression-related PAT index\n");
}
+ if (IS_PONTEVECCHIO(dev_id) &&
+ strstr(s->name, "madvise-pat-idx-uc-comp-"))
+ igt_skip("Skipping compression test on PVC\n");
xe_for_each_engine(fd, hwe)
test_exec(fd, hwe, 1, 1, SZ_4M, 0, 0, NULL, NULL, s->flags, s->fn);
}
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC
2026-03-17 15:21 [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC nishit.sharma
@ 2026-03-17 17:41 ` Kamil Konieczny
2026-03-17 23:28 ` ✓ Xe.CI.BAT: success for " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Kamil Konieczny @ 2026-03-17 17:41 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev, kamil.konieczny
Hi Nishit,
On 2026-03-17 at 15:21:32 +0000, nishit.sharma@intel.com wrote:
> From: Nishit Sharma <nishit.sharma@intel.com>
>
imho subject could be shorter, like
[PATCH i-g-t] tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* on PVC
> Add a check to skip "madvise-pat-idx-uc-comp-*" compression-related PAT
> index subtests on Ponte Vecchio (PVC) platforms.
> This prevents running unsupported or problematic compression tests for
> the "uc-comp" variant on PVC hardware.
>
> Signed-off-by: Nishit Sharma <nishit.sharma@intel.com>
> ---
> tests/intel/xe_exec_system_allocator.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/tests/intel/xe_exec_system_allocator.c b/tests/intel/xe_exec_system_allocator.c
> index c645f6491..e0217c9d5 100644
> --- a/tests/intel/xe_exec_system_allocator.c
> +++ b/tests/intel/xe_exec_system_allocator.c
> @@ -2517,6 +2517,7 @@ int igt_main()
> };
>
> int fd, svm_compute_loops = getenv_int("IGT_SVM_COMPUTE_LOOPS", 1);
> + uint16_t dev_id;
>
> igt_fixture() {
> struct xe_device *xe;
> @@ -2527,6 +2528,7 @@ int igt_main()
> xe = xe_device_get(fd);
> va_bits = xe->va_bits;
> open_sync_file();
> + dev_id = intel_get_drm_devid(fd);
> }
>
> for (const struct section *s = sections; s->name; s++) {
> @@ -2727,6 +2729,9 @@ int igt_main()
> !xe_has_vram(fd)) {
> igt_skip("Skipping compression-related PAT index\n");
> }
> + if (IS_PONTEVECCHIO(dev_id) &&
> + strstr(s->name, "madvise-pat-idx-uc-comp-"))
> + igt_skip("Skipping compression test on PVC\n");
imho use pattern from line above and add PVC, so it will be:
igt_skip("Skipping compression-related PAT index on PVC\n");
With this corrected (could be at merge time)
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Regards,
Kamil
> xe_for_each_engine(fd, hwe)
> test_exec(fd, hwe, 1, 1, SZ_4M, 0, 0, NULL, NULL, s->flags, s->fn);
> }
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC
2026-03-17 15:21 [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC nishit.sharma
2026-03-17 17:41 ` Kamil Konieczny
@ 2026-03-17 23:28 ` Patchwork
2026-03-17 23:55 ` ✓ i915.CI.BAT: " Patchwork
2026-03-19 10:36 ` ✗ Xe.CI.FULL: failure " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-17 23:28 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5839 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC
URL : https://patchwork.freedesktop.org/series/163386/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8807_BAT -> XEIGTPW_14792_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 14)
------------------------------
Additional (2): bat-adlp-7 bat-bmg-3
Known issues
------------
Here are the changes found in XEIGTPW_14792_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_dsc@dsc-basic:
- bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#2244] / [Intel XE#455])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/bat-adlp-7/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-adlp-7: NOTRUN -> [DMESG-WARN][2] ([Intel XE#7483]) +12 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html
* igt@xe_evict@evict-beng-small:
- bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/bat-adlp-7/igt@xe_evict@evict-beng-small.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- bat-adlp-7: NOTRUN -> [SKIP][4] ([Intel XE#5563] / [Intel XE#688]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr:
- bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#7482]) +17 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/bat-adlp-7/igt@xe_exec_balancer@twice-cm-virtual-userptr.html
* igt@xe_exec_fault_mode@twice-rebind-prefetch:
- bat-adlp-7: NOTRUN -> [SKIP][6] ([Intel XE#288] / [Intel XE#5561]) +32 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/bat-adlp-7/igt@xe_exec_fault_mode@twice-rebind-prefetch.html
* igt@xe_live_ktest@xe_bo:
- bat-adlp-7: NOTRUN -> [SKIP][7] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/bat-adlp-7/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-7: NOTRUN -> [SKIP][8] ([Intel XE#2229] / [Intel XE#5488])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-adlp-7: NOTRUN -> [SKIP][9] ([Intel XE#1008] / [Intel XE#5591])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/bat-adlp-7/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xe2:
- bat-adlp-7: NOTRUN -> [SKIP][10] ([Intel XE#977])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/bat-adlp-7/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-adlp-7: NOTRUN -> [SKIP][11] ([Intel XE#2838] / [Intel XE#979])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- bat-adlp-7: NOTRUN -> [SKIP][12] ([Intel XE#979])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][13] ([Intel XE#6566]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8807 -> IGTPW_14792
* Linux: xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6 -> xe-4739-14efcb821ecb1a7935a3148109e7903839243d53
IGTPW_14792: 9f59f4e8a822b3050b56b0543dbc450aa0f1ae94 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6: 113073d07f958385b5b80d29b62e10d2cf0181d6
xe-4739-14efcb821ecb1a7935a3148109e7903839243d53: 14efcb821ecb1a7935a3148109e7903839243d53
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/index.html
[-- Attachment #2: Type: text/html, Size: 6947 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC
2026-03-17 15:21 [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC nishit.sharma
2026-03-17 17:41 ` Kamil Konieczny
2026-03-17 23:28 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-03-17 23:55 ` Patchwork
2026-03-19 10:36 ` ✗ Xe.CI.FULL: failure " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-17 23:55 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2589 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC
URL : https://patchwork.freedesktop.org/series/163386/
State : success
== Summary ==
CI Bug Log - changes from IGT_8807 -> IGTPW_14792
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14792/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14792 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14792/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14792/bat-dg2-14/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-adlp-6: [DMESG-WARN][5] ([i915#15673]) -> [PASS][6] +78 other tests pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14792/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8807 -> IGTPW_14792
* Linux: CI_DRM_18164 -> CI_DRM_18169
CI-20190529: 20190529
CI_DRM_18164: 113073d07f958385b5b80d29b62e10d2cf0181d6 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18169: c479cdf62a3f9a6101dd020abbc471f35142b3d1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14792: 9f59f4e8a822b3050b56b0543dbc450aa0f1ae94 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14792/index.html
[-- Attachment #2: Type: text/html, Size: 3329 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC
2026-03-17 15:21 [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC nishit.sharma
` (2 preceding siblings ...)
2026-03-17 23:55 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-03-19 10:36 ` Patchwork
2026-03-19 13:35 ` Sharma, Nishit
3 siblings, 1 reply; 6+ messages in thread
From: Patchwork @ 2026-03-19 10:36 UTC (permalink / raw)
To: Sharma, Nishit; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 55721 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC
URL : https://patchwork.freedesktop.org/series/163386/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8807_FULL -> XEIGTPW_14792_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14792_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14792_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 (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14792_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bd-dp2-hdmi-a3.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bd-dp2-hdmi-a3.html
Known issues
------------
Here are the changes found in XEIGTPW_14792_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#7059] / [Intel XE#7085])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +7 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [PASS][6] -> [SKIP][7] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#367] / [Intel XE#7354])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#3432])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +5 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2652]) +8 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][14] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2321] / [Intel XE#7355])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2320]) +5 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2291])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2291] / [Intel XE#7343]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2316])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2316]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_flip@2x-wf_vblank-ts-check.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2311]) +17 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#4141]) +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6703]) +10 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2313]) +11 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2352] / [Intel XE#7399])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2312]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#7308])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7283])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#4596])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#5021] / [Intel XE#7377])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7376] / [Intel XE#870])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-3/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2391] / [Intel XE#6927])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2505] / [Intel XE#7447])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1489]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2387] / [Intel XE#7429])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#1406] / [Intel XE#2414])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_sharpness_filter@filter-toggle:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#6503])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_sharpness_filter@filter-toggle.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2168] / [Intel XE#7444])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#1499])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][49] -> [FAIL][50] ([Intel XE#2142]) +1 other test fail
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_dma_buf_sync@export-dma-buf-once-read-sync:
- shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#6703]) +66 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_dma_buf_sync@export-dma-buf-once-read-sync.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_dma_buf_sync@export-dma-buf-once-read-sync.html
* igt@xe_eudebug@vma-ufence:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#4837]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@xe_eudebug@vma-ufence.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][55] -> [INCOMPLETE][56] ([Intel XE#6321])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-rebind-imm:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7136]) +6 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-rebind-imm.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6874]) +16 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_system_allocator@many-mmap-remap:
- shard-bmg: [PASS][60] -> [INCOMPLETE][61] ([Intel XE#2594])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_exec_system_allocator@many-mmap-remap.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@xe_exec_system_allocator@many-mmap-remap.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7138]) +5 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#1420])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2284] / [Intel XE#7370])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_pm@d3cold-basic.html
* igt@xe_query@multigpu-query-engines:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#944])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-9/igt@xe_query@multigpu-query-engines.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][66] -> [FAIL][67] ([Intel XE#6569])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@core_hotunplug@hotreplug:
- shard-bmg: [ABORT][68] ([Intel XE#7578]) -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-8/igt@core_hotunplug@hotreplug.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@core_hotunplug@hotreplug.html
* igt@core_hotunplug@hotunplug-rescan:
- shard-bmg: [SKIP][70] ([Intel XE#6779]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@core_hotunplug@hotunplug-rescan.html
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][72] ([Intel XE#7445]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@intel_hwmon@hwmon-write.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][74] ([Intel XE#2291]) -> [PASS][75] +2 other tests pass
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][76] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: [SKIP][78] ([Intel XE#2316]) -> [PASS][79] +3 other tests pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][80] ([Intel XE#301]) -> [PASS][81] +1 other test pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
- shard-bmg: [INCOMPLETE][82] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][83] +1 other test pass
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3:
- shard-bmg: [DMESG-FAIL][84] ([Intel XE#5545]) -> [PASS][85] +1 other test pass
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [SKIP][86] ([Intel XE#1503]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_hdr@static-toggle.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [SKIP][88] ([Intel XE#7086]) -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][90] ([Intel XE#7340]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: [FAIL][92] ([Intel XE#5937]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_exec_system_allocator@fault-threads-benchmark:
- shard-bmg: [FAIL][94] -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_exec_system_allocator@fault-threads-benchmark.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@xe_exec_system_allocator@fault-threads-benchmark.html
* igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset:
- shard-bmg: [SKIP][96] ([Intel XE#6703]) -> [PASS][97] +104 other tests pass
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset.html
* igt@xe_exec_system_allocator@twice-large-mmap:
- shard-bmg: [SKIP][98] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][99] +2 other tests pass
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_system_allocator@twice-large-mmap.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-3/igt@xe_exec_system_allocator@twice-large-mmap.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: [SKIP][100] ([Intel XE#2370]) -> [SKIP][101] ([Intel XE#6703])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-bmg: [SKIP][102] ([Intel XE#1124]) -> [SKIP][103] ([Intel XE#6703])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][104] ([Intel XE#6703]) -> [SKIP][105] ([Intel XE#1124]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][106] ([Intel XE#6703]) -> [SKIP][107] ([Intel XE#7621])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][108] ([Intel XE#2887]) -> [SKIP][109] ([Intel XE#6703]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][110] ([Intel XE#6703]) -> [SKIP][111] ([Intel XE#2887]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-bmg: [SKIP][112] ([Intel XE#6703]) -> [SKIP][113] ([Intel XE#2252]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-read.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: [SKIP][114] ([Intel XE#2252]) -> [SKIP][115] ([Intel XE#6703]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [FAIL][116] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][117] ([Intel XE#2341])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_content_protection@atomic-dpms.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][118] ([Intel XE#6703]) -> [SKIP][119] ([Intel XE#2390] / [Intel XE#6974])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-bmg: [SKIP][120] ([Intel XE#7194]) -> [FAIL][121] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][122] ([Intel XE#2341]) -> [FAIL][123] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@srm.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-9/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-bmg: [FAIL][124] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][125] ([Intel XE#6705])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_content_protection@suspend-resume.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-bmg: [SKIP][126] ([Intel XE#6703]) -> [SKIP][127] ([Intel XE#2320])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-random-256x85.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-bmg: [SKIP][128] ([Intel XE#2320]) -> [SKIP][129] ([Intel XE#6703])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-32x32.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: [SKIP][130] ([Intel XE#6703]) -> [SKIP][131] ([Intel XE#2321] / [Intel XE#7355])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][132] ([Intel XE#2291] / [Intel XE#7343]) -> [SKIP][133] ([Intel XE#6703])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: [SKIP][134] ([Intel XE#6703]) -> [SKIP][135] ([Intel XE#2244])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_dsc@dsc-with-formats.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: [SKIP][136] ([Intel XE#6703]) -> [SKIP][137] ([Intel XE#7178] / [Intel XE#7351])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-bmg: [SKIP][138] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][139] ([Intel XE#6703])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][140] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][141] ([Intel XE#2311])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][142] ([Intel XE#2312]) -> [SKIP][143] ([Intel XE#2311]) +14 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][144] ([Intel XE#6703]) -> [SKIP][145] ([Intel XE#2311]) +5 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][146] ([Intel XE#2311]) -> [SKIP][147] ([Intel XE#2312]) +7 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][148] ([Intel XE#4141]) -> [SKIP][149] ([Intel XE#6703]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][150] ([Intel XE#6703]) -> [SKIP][151] ([Intel XE#4141]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][152] ([Intel XE#4141]) -> [SKIP][153] ([Intel XE#2312]) +4 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][154] ([Intel XE#2312]) -> [SKIP][155] ([Intel XE#4141]) +9 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][156] ([Intel XE#2311]) -> [SKIP][157] ([Intel XE#6703]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: [SKIP][158] ([Intel XE#6703]) -> [SKIP][159] ([Intel XE#2352] / [Intel XE#7399])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][160] ([Intel XE#2313]) -> [SKIP][161] ([Intel XE#6703]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][162] ([Intel XE#6703]) -> [SKIP][163] ([Intel XE#2312])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-bmg: [SKIP][164] ([Intel XE#6703]) -> [SKIP][165] ([Intel XE#2313]) +5 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][166] ([Intel XE#2312]) -> [SKIP][167] ([Intel XE#2313]) +10 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][168] ([Intel XE#2313]) -> [SKIP][169] ([Intel XE#2312]) +6 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: [SKIP][170] ([Intel XE#6703]) -> [SKIP][171] ([Intel XE#6901])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: [SKIP][172] ([Intel XE#6703]) -> [SKIP][173] ([Intel XE#7591])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-bmg: [SKIP][174] ([Intel XE#6703]) -> [SKIP][175] ([Intel XE#7283])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-bmg: [SKIP][176] ([Intel XE#6703]) -> [SKIP][177] ([Intel XE#2763] / [Intel XE#6886])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-bmg: [SKIP][178] ([Intel XE#1489]) -> [SKIP][179] ([Intel XE#6703])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][180] ([Intel XE#6703]) -> [SKIP][181] ([Intel XE#1489])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-suspend:
- shard-bmg: [SKIP][182] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][183] ([Intel XE#6703])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-8/igt@kms_psr@fbc-pr-suspend.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-bmg: [SKIP][184] ([Intel XE#6703]) -> [SKIP][185] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr@pr-cursor-plane-onoff.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: [SKIP][186] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][187] ([Intel XE#6703])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_sharpness_filter@filter-basic:
- shard-bmg: [SKIP][188] ([Intel XE#6703]) -> [SKIP][189] ([Intel XE#6503])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_sharpness_filter@filter-basic.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_sharpness_filter@filter-basic.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][190] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][191] ([Intel XE#6703])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_eudebug@multigpu-basic-client:
- shard-bmg: [SKIP][192] ([Intel XE#6703]) -> [SKIP][193] ([Intel XE#4837])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_eudebug@multigpu-basic-client.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@xe_eudebug@multigpu-basic-client.html
* igt@xe_eudebug@vm-bind-clear-faultable:
- shard-bmg: [SKIP][194] ([Intel XE#4837]) -> [SKIP][195] ([Intel XE#6703])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_eudebug@vm-bind-clear-faultable.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_eudebug@vm-bind-clear-faultable.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: [SKIP][196] ([Intel XE#6703]) -> [SKIP][197] ([Intel XE#7140])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_evict@evict-threads-small-multi-queue.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: [SKIP][198] ([Intel XE#6703]) -> [SKIP][199] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm:
- shard-bmg: [SKIP][200] ([Intel XE#6703]) -> [SKIP][201] ([Intel XE#7136]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem:
- shard-bmg: [SKIP][202] ([Intel XE#6703]) -> [SKIP][203] ([Intel XE#6874]) +5 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr-invalidate:
- shard-bmg: [SKIP][204] ([Intel XE#6874]) -> [SKIP][205] ([Intel XE#6703]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr-invalidate.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
- shard-bmg: [SKIP][206] ([Intel XE#6703]) -> [SKIP][207] ([Intel XE#7138]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-shared-vm-basic:
- shard-bmg: [SKIP][208] ([Intel XE#7138]) -> [SKIP][209] ([Intel XE#6703])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-shared-vm-basic.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-shared-vm-basic.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: [SKIP][210] ([Intel XE#6703]) -> [SKIP][211] ([Intel XE#2284] / [Intel XE#7370])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8807 -> IGTPW_14792
* Linux: xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6 -> xe-4739-14efcb821ecb1a7935a3148109e7903839243d53
IGTPW_14792: 9f59f4e8a822b3050b56b0543dbc450aa0f1ae94 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6: 113073d07f958385b5b80d29b62e10d2cf0181d6
xe-4739-14efcb821ecb1a7935a3148109e7903839243d53: 14efcb821ecb1a7935a3148109e7903839243d53
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/index.html
[-- Attachment #2: Type: text/html, Size: 67886 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: ✗ Xe.CI.FULL: failure for tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC
2026-03-19 10:36 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-03-19 13:35 ` Sharma, Nishit
0 siblings, 0 replies; 6+ messages in thread
From: Sharma, Nishit @ 2026-03-19 13:35 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 57570 bytes --]
Hi,
Issues caused is not due to patch submitted please approve.
Regards
Nishit
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Thursday, March 19, 2026 4:07 PM
To: Sharma, Nishit <nishit.sharma@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Xe.CI.FULL: failure for tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC
Patch Details
Series:
tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC
URL:
https://patchwork.freedesktop.org/series/163386/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/index.html
CI Bug Log - changes from XEIGT_8807_FULL -> XEIGTPW_14792_FULL
Summary
FAILURE
Serious unknown changes coming with XEIGTPW_14792_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14792_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in XEIGTPW_14792_FULL:
IGT changes
Possible regressions
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bd-dp2-hdmi-a3:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bd-dp2-hdmi-a3.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bd-dp2-hdmi-a3.html> +1 other test dmesg-fail
Known issues
Here are the changes found in XEIGTPW_14792_FULL that come from known issues:
IGT changes
Issues hit
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +3 other tests skip
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html> (Intel XE#7059<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059> / Intel XE#7085<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085>)
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +7 other tests skip
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894> / Intel XE#7373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373>)
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367> / Intel XE#7354<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354>)
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>)
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +5 other tests skip
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652>) +8 other tests skip
* igt@kms_chamelium_frames@vga-frame-dump:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_chamelium_frames@vga-frame-dump.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +3 other tests skip
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178> / Intel XE#3304<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304> / Intel XE#7374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374>) +3 other tests fail
* igt@kms_content_protection@uevent-hdcp14:
* shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_content_protection@uevent-hdcp14.html> (Intel XE#6707<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707> / Intel XE#7439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439>) +1 other test fail
* igt@kms_cursor_crc@cursor-onscreen-512x512:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321> / Intel XE#7355<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355>)
* igt@kms_cursor_crc@cursor-random-32x32:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_cursor_crc@cursor-random-32x32.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +5 other tests skip
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>)
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291> / Intel XE#7343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343>) +1 other test skip
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>)
* igt@kms_flip@2x-wf_vblank-ts-check:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_flip@2x-wf_vblank-ts-check.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html> (Intel XE#7178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178> / Intel XE#7351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351>) +2 other tests skip
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +17 other tests skip
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) +4 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) +10 other tests skip
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html> (Intel XE#7061<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061> / Intel XE#7356<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +11 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel XE#2352<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352> / Intel XE#7399<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399>)
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +2 other tests skip
* igt@kms_hdmi_inject@inject-audio:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_hdmi_inject@inject-audio.html> (Intel XE#7308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308>)
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html> (Intel XE#7283<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283>)
* igt@kms_plane_multiple@2x-tiling-none:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html> (Intel XE#4596<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596>)
* igt@kms_plane_multiple@2x-tiling-yf:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html> (Intel XE#5021<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021> / Intel XE#7377<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377>)
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#6886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886>) +3 other tests skip
* igt@kms_pm_backlight@basic-brightness:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-3/igt@kms_pm_backlight@basic-brightness.html> (Intel XE#7376<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376> / Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>)
* igt@kms_pm_dc@dc3co-vpb-simulation:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation.html> (Intel XE#2391<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391> / Intel XE#6927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927>)
* igt@kms_pm_dc@deep-pkgc:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_pm_dc@deep-pkgc.html> (Intel XE#2505<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505> / Intel XE#7447<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447>)
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +5 other tests skip
* igt@kms_psr2_su@page_flip-nv12:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#2387<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387> / Intel XE#7429<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429>)
* igt@kms_psr@fbc-psr2-cursor-plane-move:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_psr@fbc-psr2-cursor-plane-move.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +5 other tests skip
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406> / Intel XE#2414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414>)
* igt@kms_sharpness_filter@filter-toggle:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_sharpness_filter@filter-toggle.html> (Intel XE#6503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503>)
* igt@kms_vrr@cmrr:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_vrr@cmrr.html> (Intel XE#2168<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168> / Intel XE#7444<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444>)
* igt@kms_vrr@flip-suspend:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_vrr@flip-suspend.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>)
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
* shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html> (Intel XE#2142<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142>) +1 other test fail
* igt@xe_dma_buf_sync@export-dma-buf-once-read-sync:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_dma_buf_sync@export-dma-buf-once-read-sync.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_dma_buf_sync@export-dma-buf-once-read-sync.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) +66 other tests skip
* igt@xe_eudebug@vma-ufence:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@xe_eudebug@vma-ufence.html> (Intel XE#4837<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837>) +2 other tests skip
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html> (Intel XE#4837<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837> / Intel XE#6665<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665>) +3 other tests skip
* igt@xe_evict@evict-mixed-many-threads-small:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#6321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321>)
* igt@xe_exec_basic@multigpu-once-null-rebind:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-rebind.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322> / Intel XE#7372<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372>) +2 other tests skip
* igt@xe_exec_fault_mode@once-multi-queue-rebind-imm:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-rebind-imm.html> (Intel XE#7136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136>) +6 other tests skip
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html> (Intel XE#6874<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874>) +16 other tests skip
* igt@xe_exec_system_allocator@many-mmap-remap:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_exec_system_allocator@many-mmap-remap.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@xe_exec_system_allocator@many-mmap-remap.html> (Intel XE#2594<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594>)
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html> (Intel XE#7138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138>) +5 other tests skip
* igt@xe_pat@pat-index-xehpc:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html> (Intel XE#1420<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420>)
* igt@xe_pm@d3cold-basic:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_pm@d3cold-basic.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#7370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370>)
* igt@xe_query@multigpu-query-engines:
* shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-9/igt@xe_query@multigpu-query-engines.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>)
* igt@xe_sriov_flr@flr-vfs-parallel:
* shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html> (Intel XE#6569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569>)
Possible fixes
* igt@core_hotunplug@hotreplug:
* shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-8/igt@core_hotunplug@hotreplug.html> (Intel XE#7578<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@core_hotunplug@hotreplug.html>
* igt@core_hotunplug@hotunplug-rescan:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html> (Intel XE#6779<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@core_hotunplug@hotunplug-rescan.html>
* igt@intel_hwmon@hwmon-write:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@intel_hwmon@hwmon-write.html> (Intel XE#7445<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@intel_hwmon@hwmon-write.html>
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> +2 other tests pass
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291> / Intel XE#7343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html>
* igt@kms_flip@2x-flip-vs-dpms:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms.html> +3 other tests pass
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html> +1 other test pass
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
* shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html> (Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049> / Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html> +1 other test pass
* igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3:
* shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3.html> (Intel XE#5545<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3.html> +1 other test pass
* igt@kms_hdr@static-toggle:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_hdr@static-toggle.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_hdr@static-toggle.html>
* igt@kms_joiner@basic-force-big-joiner:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html> (Intel XE#7086<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_joiner@basic-force-big-joiner.html>
* igt@kms_pm_dc@dc6-psr:
* shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html> (Intel XE#7340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html>
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (Intel XE#5937<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html>
* igt@xe_exec_system_allocator@fault-threads-benchmark:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_exec_system_allocator@fault-threads-benchmark.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@xe_exec_system_allocator@fault-threads-benchmark.html>
* igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset.html> +104 other tests pass
* igt@xe_exec_system_allocator@twice-large-mmap:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_system_allocator@twice-large-mmap.html> (Intel XE#6557<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557> / Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-3/igt@xe_exec_system_allocator@twice-large-mmap.html> +2 other tests pass
Warnings
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (Intel XE#2370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>)
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>)
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +1 other test skip
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html> (Intel XE#7621<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621>)
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) +1 other test skip
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +2 other tests skip
* igt@kms_chamelium_edid@dp-edid-read:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-read.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_chamelium_edid@dp-edid-read.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +1 other test skip
* igt@kms_chamelium_edid@dp-edid-resolution-list:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_chamelium_edid@dp-edid-resolution-list.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) +2 other tests skip
* igt@kms_content_protection@atomic-dpms:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_content_protection@atomic-dpms.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178> / Intel XE#3304<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304> / Intel XE#7374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>)
* igt@kms_content_protection@dp-mst-type-1:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1.html> (Intel XE#2390<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390> / Intel XE#6974<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974>)
* igt@kms_content_protection@lic-type-0-hdcp14:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14.html> (Intel XE#7194<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_content_protection@lic-type-0-hdcp14.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178> / Intel XE#3304<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304> / Intel XE#7374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374>)
* igt@kms_content_protection@srm:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@srm.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-9/igt@kms_content_protection@srm.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178> / Intel XE#3304<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304> / Intel XE#7374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374>)
* igt@kms_content_protection@suspend-resume:
* shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_content_protection@suspend-resume.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178> / Intel XE#3304<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304> / Intel XE#7374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_content_protection@suspend-resume.html> (Intel XE#6705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705>)
* igt@kms_cursor_crc@cursor-random-256x85:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-random-256x85.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_cursor_crc@cursor-random-256x85.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>)
* igt@kms_cursor_crc@cursor-sliding-32x32:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-32x32.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-32x32.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>)
* igt@kms_cursor_crc@cursor-sliding-512x512:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x512.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321> / Intel XE#7355<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355>)
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291> / Intel XE#7343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>)
* igt@kms_dsc@dsc-with-formats:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_dsc@dsc-with-formats.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@kms_dsc@dsc-with-formats.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>)
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> (Intel XE#7178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178> / Intel XE#7351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351>)
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html> (Intel XE#7178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178> / Intel XE#7351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>)
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#6557<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557> / Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>)
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +14 other tests skip
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +5 other tests skip
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +7 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +4 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#4141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) +9 other tests skip
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) +2 other tests skip
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html> (Intel XE#2352<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352> / Intel XE#7399<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399>)
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) +1 other test skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>)
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +5 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +10 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +6 other tests skip
* igt@kms_joiner@basic-big-joiner:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_joiner@basic-big-joiner.html> (Intel XE#6901<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901>)
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#7591<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591>)
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html> (Intel XE#7283<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283>)
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#6886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886>)
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>)
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>)
* igt@kms_psr@fbc-pr-suspend:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-8/igt@kms_psr@fbc-pr-suspend.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_psr@fbc-pr-suspend.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>)
* igt@kms_psr@pr-cursor-plane-onoff:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr@pr-cursor-plane-onoff.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_psr@pr-cursor-plane-onoff.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +2 other tests skip
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414> / Intel XE#3904<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904> / Intel XE#7342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>)
* igt@kms_sharpness_filter@filter-basic:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_sharpness_filter@filter-basic.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-5/igt@kms_sharpness_filter@filter-basic.html> (Intel XE#6503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503>)
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426> / Intel XE#5848<https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>)
* igt@xe_eudebug@multigpu-basic-client:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_eudebug@multigpu-basic-client.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@xe_eudebug@multigpu-basic-client.html> (Intel XE#4837<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837>)
* igt@xe_eudebug@vm-bind-clear-faultable:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_eudebug@vm-bind-clear-faultable.html> (Intel XE#4837<https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_eudebug@vm-bind-clear-faultable.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>)
* igt@xe_evict@evict-threads-small-multi-queue:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_evict@evict-threads-small-multi-queue.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-8/igt@xe_evict@evict-threads-small-multi-queue.html> (Intel XE#7140<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140>)
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322> / Intel XE#7372<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372>) +1 other test skip
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-4/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html> (Intel XE#7136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136>) +1 other test skip
* igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html> (Intel XE#6874<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874>) +5 other tests skip
* igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr-invalidate:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr-invalidate.html> (Intel XE#6874<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr-invalidate.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) +2 other tests skip
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html> (Intel XE#7138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138>) +1 other test skip
* igt@xe_exec_threads@threads-multi-queue-shared-vm-basic:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-shared-vm-basic.html> (Intel XE#7138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-shared-vm-basic.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>)
* igt@xe_pm@d3cold-mmap-system:
* shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.html> (Intel XE#6703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14792/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#7370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370>)
Build changes
* IGT: IGT_8807 -> IGTPW_14792
* Linux: xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6 -> xe-4739-14efcb821ecb1a7935a3148109e7903839243d53
IGTPW_14792: 9f59f4e8a822b3050b56b0543dbc450aa0f1ae94 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6: 113073d07f958385b5b80d29b62e10d2cf0181d6
xe-4739-14efcb821ecb1a7935a3148109e7903839243d53: 14efcb821ecb1a7935a3148109e7903839243d53
[-- Attachment #2: Type: text/html, Size: 104193 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-03-19 13:35 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-17 15:21 [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Skip madvise-pat-idx-uc-comp-* compression tests on PVC nishit.sharma
2026-03-17 17:41 ` Kamil Konieczny
2026-03-17 23:28 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-03-17 23:55 ` ✓ i915.CI.BAT: " Patchwork
2026-03-19 10:36 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-03-19 13:35 ` Sharma, Nishit
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox