* [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
@ 2025-04-29 14:30 Kamil Konieczny
2025-04-29 15:17 ` Francois Dugast
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Kamil Konieczny @ 2025-04-29 14:30 UTC (permalink / raw)
To: igt-dev; +Cc: Kamil Konieczny, Matthew Brost, Jonathan Cavitt, Francois Dugast
There is one more place which needs fixing of Xe test
compilation for 32-bit platforms, reported errors are:
../tests/intel/xe_exec_system_allocator.c:382:41: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
aligned_alloc_type.ptr = (void *)ALIGN((uint64_t)aligned_alloc_type.__ptr, alignment);
^
../tests/intel/xe_exec_system_allocator.c:382:27: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast]
aligned_alloc_type.ptr = (void *)ALIGN((uint64_t)aligned_alloc_type.__ptr, alignment);
^
cc1: some warnings being treated as errors
Fixes: 9eda33fedff7 ("tests/xe: Add system_allocator test")
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Francois Dugast <francois.dugast@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/intel/xe_exec_system_allocator.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_exec_system_allocator.c b/tests/intel/xe_exec_system_allocator.c
index e1121a862..30b99f3ed 100644
--- a/tests/intel/xe_exec_system_allocator.c
+++ b/tests/intel/xe_exec_system_allocator.c
@@ -374,12 +374,15 @@ struct aligned_alloc_type {
static struct aligned_alloc_type __aligned_alloc(size_t alignment, size_t size)
{
struct aligned_alloc_type aligned_alloc_type;
+ uint64_t addr;
aligned_alloc_type.__ptr = mmap(NULL, alignment + size, PROT_NONE, MAP_PRIVATE |
MAP_ANONYMOUS, -1, 0);
igt_assert(aligned_alloc_type.__ptr != MAP_FAILED);
- aligned_alloc_type.ptr = (void *)ALIGN((uint64_t)aligned_alloc_type.__ptr, alignment);
+ addr = to_user_pointer(aligned_alloc_type.__ptr);
+ addr = ALIGN(addr, (uint64_t)alignment);
+ aligned_alloc_type.ptr = from_user_pointer(addr);
aligned_alloc_type.size = size;
aligned_alloc_type.__size = size + alignment;
--
2.49.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
2025-04-29 14:30 [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Fix 32-bit compilation Kamil Konieczny
@ 2025-04-29 15:17 ` Francois Dugast
2025-04-30 4:00 ` ✓ i915.CI.BAT: success for " Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Francois Dugast @ 2025-04-29 15:17 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev, Matthew Brost, Jonathan Cavitt
Hi,
On Tue, Apr 29, 2025 at 04:30:51PM +0200, Kamil Konieczny wrote:
> There is one more place which needs fixing of Xe test
> compilation for 32-bit platforms, reported errors are:
>
> ../tests/intel/xe_exec_system_allocator.c:382:41: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
> aligned_alloc_type.ptr = (void *)ALIGN((uint64_t)aligned_alloc_type.__ptr, alignment);
> ^
> ../tests/intel/xe_exec_system_allocator.c:382:27: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast]
> aligned_alloc_type.ptr = (void *)ALIGN((uint64_t)aligned_alloc_type.__ptr, alignment);
> ^
> cc1: some warnings being treated as errors
>
> Fixes: 9eda33fedff7 ("tests/xe: Add system_allocator test")
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Cc: Francois Dugast <francois.dugast@intel.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/intel/xe_exec_system_allocator.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/tests/intel/xe_exec_system_allocator.c b/tests/intel/xe_exec_system_allocator.c
> index e1121a862..30b99f3ed 100644
> --- a/tests/intel/xe_exec_system_allocator.c
> +++ b/tests/intel/xe_exec_system_allocator.c
> @@ -374,12 +374,15 @@ struct aligned_alloc_type {
> static struct aligned_alloc_type __aligned_alloc(size_t alignment, size_t size)
> {
> struct aligned_alloc_type aligned_alloc_type;
> + uint64_t addr;
>
> aligned_alloc_type.__ptr = mmap(NULL, alignment + size, PROT_NONE, MAP_PRIVATE |
> MAP_ANONYMOUS, -1, 0);
> igt_assert(aligned_alloc_type.__ptr != MAP_FAILED);
>
> - aligned_alloc_type.ptr = (void *)ALIGN((uint64_t)aligned_alloc_type.__ptr, alignment);
> + addr = to_user_pointer(aligned_alloc_type.__ptr);
> + addr = ALIGN(addr, (uint64_t)alignment);
Is (uint64_t) needed here?
Anyway, tested on armv7l and it fixes the build, but let's wait for CI.
Reviewed-by: Francois Dugast <francois.dugast@intel.com>
Francois
> + aligned_alloc_type.ptr = from_user_pointer(addr);
> aligned_alloc_type.size = size;
> aligned_alloc_type.__size = size + alignment;
>
> --
> 2.49.0
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
2025-04-29 14:30 [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Fix 32-bit compilation Kamil Konieczny
2025-04-29 15:17 ` Francois Dugast
@ 2025-04-30 4:00 ` Patchwork
2025-04-30 4:28 ` [PATCH i-g-t] " Matthew Brost
` (3 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-04-30 4:00 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10318 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
URL : https://patchwork.freedesktop.org/series/148419/
State : success
== Summary ==
CI Bug Log - changes from IGT_8344 -> IGTPW_13060
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/index.html
Participating hosts (43 -> 43)
------------------------------
Additional (1): bat-arlh-2
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_13060 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@eof:
- bat-arlh-2: NOTRUN -> [SKIP][1] ([i915#11345] / [i915#11346]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@fbdev@eof.html
* igt@fbdev@info:
- bat-arlh-2: NOTRUN -> [SKIP][2] ([i915#11346] / [i915#1849])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@basic:
- bat-arlh-2: NOTRUN -> [SKIP][3] ([i915#10213] / [i915#11346] / [i915#11671]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@gem_lmem_swapping@basic.html
* igt@gem_mmap@basic:
- bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#11343] / [i915#11346])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][5] ([i915#10197] / [i915#10211] / [i915#11346] / [i915#11725])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][6] ([i915#11346] / [i915#12637]) +4 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#10206] / [i915#11346] / [i915#11724])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-arlh-2: NOTRUN -> [SKIP][8] ([i915#10209] / [i915#11346] / [i915#11681])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-dg2-8: NOTRUN -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: NOTRUN -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [PASS][11] -> [DMESG-FAIL][12] ([i915#12061]) +1 other test dmesg-fail
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8344/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
- bat-dg2-11: [PASS][13] -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8344/bat-dg2-11/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-dg2-11/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-arlh-2: NOTRUN -> [SKIP][15] ([i915#11346] / [i915#11680] / [i915#7707]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][16] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][17] ([i915#10200] / [i915#11346] / [i915#11666]) +8 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_psr@psr-primary-page-flip:
- bat-arlh-2: NOTRUN -> [SKIP][18] ([i915#11346]) +32 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arlh-2: NOTRUN -> [SKIP][19] ([i915#10208] / [i915#11346] / [i915#8809])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-arlh-2: NOTRUN -> [SKIP][20] ([i915#10212] / [i915#11346] / [i915#11726])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-arlh-2: NOTRUN -> [SKIP][21] ([i915#10214] / [i915#11346] / [i915#11726])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-arlh-2: NOTRUN -> [SKIP][22] ([i915#10216] / [i915#11346] / [i915#11723])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-arlh-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-nick: [INCOMPLETE][23] ([i915#12904]) -> [PASS][24] +1 other test pass
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8344/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@gem_lmem_swapping@basic:
- bat-dg2-8: [ABORT][25] ([i915#13465] / [i915#13571]) -> [PASS][26] +1 other test pass
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8344/bat-dg2-8/igt@gem_lmem_swapping@basic.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-dg2-8/igt@gem_lmem_swapping@basic.html
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][27] ([i915#12061]) -> [PASS][28] +1 other test pass
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8344/bat-mtlp-8/igt@i915_selftest@live.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [DMESG-FAIL][29] ([i915#12061]) -> [PASS][30] +1 other test pass
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8344/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [DMESG-FAIL][31] ([i915#12061]) -> [PASS][32] +1 other test pass
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8344/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11680
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723
[i915#11724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11724
[i915#11725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11725
[i915#11726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11726
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203
[i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#13465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13465
[i915#13571]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13571
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8344 -> IGTPW_13060
* Linux: CI_DRM_16475 -> CI_DRM_16477
CI-20190529: 20190529
CI_DRM_16475: f13165b51331915eb63fdb160331e035ecae35c7 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16477: 1295f065de1df2595f37d907efa3354b19d9b639 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13060: af7fb58db5e270cc4a52628047dc7cf78f62372c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8344: 00f143c5f06f7d5936aacb70dad22be371570d38 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/index.html
[-- Attachment #2: Type: text/html, Size: 13234 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
2025-04-29 14:30 [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Fix 32-bit compilation Kamil Konieczny
2025-04-29 15:17 ` Francois Dugast
2025-04-30 4:00 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2025-04-30 4:28 ` Matthew Brost
2025-04-30 4:49 ` ✓ Xe.CI.BAT: success for " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Matthew Brost @ 2025-04-30 4:28 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev, Jonathan Cavitt, Francois Dugast
On Tue, Apr 29, 2025 at 04:30:51PM +0200, Kamil Konieczny wrote:
> There is one more place which needs fixing of Xe test
> compilation for 32-bit platforms, reported errors are:
>
> ../tests/intel/xe_exec_system_allocator.c:382:41: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]
> aligned_alloc_type.ptr = (void *)ALIGN((uint64_t)aligned_alloc_type.__ptr, alignment);
> ^
> ../tests/intel/xe_exec_system_allocator.c:382:27: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast]
> aligned_alloc_type.ptr = (void *)ALIGN((uint64_t)aligned_alloc_type.__ptr, alignment);
> ^
> cc1: some warnings being treated as errors
>
> Fixes: 9eda33fedff7 ("tests/xe: Add system_allocator test")
> Cc: Matthew Brost <matthew.brost@intel.com>
Sorry for the trouble and thanks for the fix:
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Cc: Francois Dugast <francois.dugast@intel.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/intel/xe_exec_system_allocator.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/tests/intel/xe_exec_system_allocator.c b/tests/intel/xe_exec_system_allocator.c
> index e1121a862..30b99f3ed 100644
> --- a/tests/intel/xe_exec_system_allocator.c
> +++ b/tests/intel/xe_exec_system_allocator.c
> @@ -374,12 +374,15 @@ struct aligned_alloc_type {
> static struct aligned_alloc_type __aligned_alloc(size_t alignment, size_t size)
> {
> struct aligned_alloc_type aligned_alloc_type;
> + uint64_t addr;
>
> aligned_alloc_type.__ptr = mmap(NULL, alignment + size, PROT_NONE, MAP_PRIVATE |
> MAP_ANONYMOUS, -1, 0);
> igt_assert(aligned_alloc_type.__ptr != MAP_FAILED);
>
> - aligned_alloc_type.ptr = (void *)ALIGN((uint64_t)aligned_alloc_type.__ptr, alignment);
> + addr = to_user_pointer(aligned_alloc_type.__ptr);
> + addr = ALIGN(addr, (uint64_t)alignment);
> + aligned_alloc_type.ptr = from_user_pointer(addr);
> aligned_alloc_type.size = size;
> aligned_alloc_type.__size = size + alignment;
>
> --
> 2.49.0
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
2025-04-29 14:30 [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Fix 32-bit compilation Kamil Konieczny
` (2 preceding siblings ...)
2025-04-30 4:28 ` [PATCH i-g-t] " Matthew Brost
@ 2025-04-30 4:49 ` Patchwork
2025-04-30 6:52 ` ✗ Xe.CI.Full: failure " Patchwork
2025-04-30 7:19 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-04-30 4:49 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1174 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
URL : https://patchwork.freedesktop.org/series/148419/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8344_BAT -> XEIGTPW_13060_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8344 -> IGTPW_13060
* Linux: xe-3009-f13165b51331915eb63fdb160331e035ecae35c7 -> xe-3010-11bac2f4b353b42599a9b028f48261d32b94fe34
IGTPW_13060: af7fb58db5e270cc4a52628047dc7cf78f62372c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8344: 00f143c5f06f7d5936aacb70dad22be371570d38 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3009-f13165b51331915eb63fdb160331e035ecae35c7: f13165b51331915eb63fdb160331e035ecae35c7
xe-3010-11bac2f4b353b42599a9b028f48261d32b94fe34: 11bac2f4b353b42599a9b028f48261d32b94fe34
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/index.html
[-- Attachment #2: Type: text/html, Size: 1733 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
2025-04-29 14:30 [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Fix 32-bit compilation Kamil Konieczny
` (3 preceding siblings ...)
2025-04-30 4:49 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2025-04-30 6:52 ` Patchwork
2025-04-30 8:44 ` Kamil Konieczny
2025-04-30 7:19 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2025-04-30 6:52 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 88554 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
URL : https://patchwork.freedesktop.org/series/148419/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8344_FULL -> XEIGTPW_13060_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_13060_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_13060_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 3)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_13060_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_invalid_mode@overflow-vrefresh:
- shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-466/igt@kms_invalid_mode@overflow-vrefresh.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@kms_invalid_mode@overflow-vrefresh.html
* igt@kms_pm_rpm@i2c:
- shard-bmg: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-6/igt@kms_pm_rpm@i2c.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_pm_rpm@i2c.html
- shard-dg2-set2: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-436/igt@kms_pm_rpm@i2c.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@kms_pm_rpm@i2c.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
- shard-lnl: [PASS][7] -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-bmg: [PASS][9] -> [WARN][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-1/igt@xe_pm@s2idle-d3hot-basic-exec.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-6/igt@xe_pm@s2idle-d3hot-basic-exec.html
New tests
---------
New tests have been introduced between XEIGT_8344_FULL and XEIGTPW_13060_FULL:
### New IGT tests (1) ###
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- Statuses : 1 dmesg-warn(s)
- Exec time: [0.34] s
Known issues
------------
Here are the changes found in XEIGTPW_13060_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: NOTRUN -> [FAIL][11] ([Intel XE#4665])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_3d:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1465])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-3/igt@kms_3d.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2233])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic:
- shard-lnl: [PASS][14] -> [FAIL][15] ([Intel XE#911])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2327]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#316]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +10 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +6 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#607]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#607])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1477])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2314] / [Intel XE#2894])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2191]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2191]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#367]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#2907]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +4 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +16 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#3442])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2652] / [Intel XE#787]) +16 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#3432])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#3432])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#787]) +230 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][39] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [PASS][42] -> [INCOMPLETE][43] ([Intel XE#3124])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [PASS][44] -> [DMESG-WARN][45] ([Intel XE#1727] / [Intel XE#3113])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#455] / [Intel XE#787]) +48 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#306])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-8/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2325]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#306]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2252]) +8 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#373]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-8/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#373]) +7 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#1178]) +2 other tests fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#307])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@srm:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#3278])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-7/igt@kms_content_protection@srm.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][56] ([Intel XE#1178]) +8 other tests fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-464/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2341])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2320]) +6 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x64:
- shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#2320])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-3/igt@kms_cursor_crc@cursor-rapid-movement-64x64.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-64x64.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1424]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#455]) +13 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2321]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#309]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2286])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2291]) +6 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2291]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#4633])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1340]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#4494])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4354])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#4294])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2244])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#4422])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#4422])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#4422])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1138])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2374])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [PASS][82] -> [SKIP][83] ([Intel XE#2316]) +9 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][84] ([Intel XE#3321])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a2-dp2:
- shard-dg2-set2: NOTRUN -> [FAIL][85] ([Intel XE#301]) +5 other tests fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a2-dp2.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1421]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-4/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2316]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2:
- shard-bmg: NOTRUN -> [FAIL][88] ([Intel XE#2882]) +4 other tests fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2293]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#651]) +7 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2312]) +14 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2311]) +28 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#651]) +25 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4141]) +7 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#656]) +13 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#658])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1469])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2313]) +23 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#653]) +31 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2352]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#4298])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-7/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#346])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#346])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#346])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-1/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#4090])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#2925]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-436/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#4090])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-bmg: NOTRUN -> [DMESG-WARN][109] ([Intel XE#3428]) +3 other tests dmesg-warn
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][110] ([Intel XE#616]) +2 other tests fail
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [PASS][111] -> [SKIP][112] ([Intel XE#4596])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-none.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#4596])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4 (NEW):
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][114] ([Intel XE#4212])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [ABORT][115] ([Intel XE#4760]) +1 other test abort
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2763]) +11 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2763]) +29 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2763]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#870]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#870])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][122] -> [FAIL][123] ([Intel XE#718])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#1129])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#3309])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#1489]) +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#2893]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-8/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#1489]) +7 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1122])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2234] / [Intel XE#2850]) +17 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-basic@edp-1:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#4609]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-4/igt@kms_psr@fbc-psr2-basic@edp-1.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1406]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-4/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#3414]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@kms_rotation_crc@bad-tiling.html
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#3414] / [Intel XE#3904])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-4/igt@kms_rotation_crc@bad-tiling.html
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2330]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#1127]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1127]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_setmode@basic:
- shard-bmg: [PASS][141] -> [FAIL][142] ([Intel XE#2883]) +2 other tests fail
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-7/igt@kms_setmode@basic.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@kms_setmode@basic.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#1435])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vblank@wait-busy:
- shard-bmg: [PASS][144] -> [FAIL][145] ([Intel XE#4892])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-5/igt@kms_vblank@wait-busy.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-6/igt@kms_vblank@wait-busy.html
* igt@kms_vblank@wait-busy@pipe-d-dp-2:
- shard-bmg: NOTRUN -> [FAIL][146] ([Intel XE#4892]) +1 other test fail
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-6/igt@kms_vblank@wait-busy@pipe-d-dp-2.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#1499])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1499])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#756])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#756]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@kms_writeback@writeback-pixel-formats.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1091] / [Intel XE#2849])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#1123]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#1126])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2504])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eu_stall@non-blocking-read:
- shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#4497])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-436/igt@xe_eu_stall@non-blocking-read.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#4837]) +15 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#4837]) +15 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@xe_eudebug_online@single-step.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd:
- shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#688]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2322]) +8 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1392]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [PASS][161] -> [SKIP][162] ([Intel XE#1392]) +5 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-433/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#288]) +31 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-436/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_sip_eudebug@breakpoint-waitsip:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#4837]) +5 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-2/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html
* igt@xe_exec_system_allocator@many-large-malloc-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#4915]) +155 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@xe_exec_system_allocator@many-large-malloc-nomemset.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-nomemset:
- shard-bmg: [PASS][166] -> [DMESG-WARN][167] ([Intel XE#3428]) +5 other tests dmesg-warn
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-1/igt@xe_exec_system_allocator@process-many-execqueues-mmap-nomemset.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-6/igt@xe_exec_system_allocator@process-many-execqueues-mmap-nomemset.html
* igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [FAIL][168] ([Intel XE#4914]) +22 other tests fail
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
- shard-lnl: NOTRUN -> [FAIL][169] ([Intel XE#4914]) +8 other tests fail
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-6/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_add_hw_engine_class_defaults:
- shard-lnl: NOTRUN -> [ABORT][170] ([Intel XE#4757])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-2/igt@xe_fault_injection@inject-fault-probe-function-xe_add_hw_engine_class_defaults.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195]) -> ([PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [SKIP][220], [PASS][221]) ([Intel XE#378])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-433/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-432/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-464/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-432/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-432/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-432/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-432/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-466/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-434/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-434/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-434/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-436/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-435/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-435/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-433/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-466/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-466/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-435/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-436/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-436/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-464/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-464/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-433/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-433/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-464/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-464/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-464/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-436/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-436/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-436/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-464/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-464/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@xe_module_load@load.html
* igt@xe_noexec_ping_pong:
- shard-lnl: NOTRUN -> [SKIP][222] ([Intel XE#379])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-6/igt@xe_noexec_ping_pong.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][223] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@syncs-syncobj-none:
- shard-dg2-set2: NOTRUN -> [SKIP][224] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@xe_oa@syncs-syncobj-none.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][225] ([Intel XE#977])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][226] ([Intel XE#979])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][227] ([Intel XE#1173]) +1 other test fail
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][228] ([Intel XE#2284])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-3/igt@xe_pm@s2idle-d3cold-basic-exec.html
- shard-dg2-set2: NOTRUN -> [SKIP][229] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@xe_pm@s2idle-d3cold-basic-exec.html
- shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#2284] / [Intel XE#366])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-3/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s4-basic:
- shard-lnl: [PASS][231] -> [ABORT][232] ([Intel XE#1794]) +1 other test abort
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-lnl-4/igt@xe_pm@s4-basic.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-2/igt@xe_pm@s4-basic.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][233] ([Intel XE#4650]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-bmg: NOTRUN -> [SKIP][234] ([Intel XE#4650])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-3/igt@xe_pmu@fn-engine-activity-load.html
- shard-lnl: NOTRUN -> [SKIP][235] ([Intel XE#4650])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-7/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-dg2-set2: NOTRUN -> [SKIP][236] ([Intel XE#4733]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][237] ([Intel XE#4733]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
* igt@xe_query@multigpu-query-engines:
- shard-lnl: NOTRUN -> [SKIP][238] ([Intel XE#944]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-8/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][239] ([Intel XE#944]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: NOTRUN -> [SKIP][240] ([Intel XE#944]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_render_copy@render-stress-2-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][241] ([Intel XE#4814])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-464/igt@xe_render_copy@render-stress-2-copies.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-bmg: NOTRUN -> [SKIP][242] ([Intel XE#4130]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
- shard-dg2-set2: NOTRUN -> [SKIP][243] ([Intel XE#4130])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
- shard-lnl: NOTRUN -> [SKIP][244] ([Intel XE#4130])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-6/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-dg2-set2: NOTRUN -> [SKIP][245] ([Intel XE#4351])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@xe_sriov_scheduling@equal-throughput.html
- shard-lnl: NOTRUN -> [SKIP][246] ([Intel XE#4351])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-5/igt@xe_sriov_scheduling@equal-throughput.html
- shard-bmg: NOTRUN -> [SKIP][247] ([Intel XE#4351])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-7/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][248] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [INCOMPLETE][250] ([Intel XE#3862]) -> [PASS][251] +1 other test pass
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-bmg: [FAIL][252] ([Intel XE#4928]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][254] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][256] ([Intel XE#2291]) -> [PASS][257] +6 other tests pass
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [SKIP][258] ([Intel XE#4354]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [SKIP][260] ([Intel XE#2316]) -> [PASS][261] +5 other tests pass
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [FAIL][262] ([Intel XE#301]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][264] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [FAIL][266] ([Intel XE#3321]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][268] ([Intel XE#301]) -> [PASS][269] +1 other test pass
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: [INCOMPLETE][270] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][271] +1 other test pass
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-435/igt@kms_flip@flip-vs-suspend@d-dp4.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-464/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1:
- shard-lnl: [FAIL][272] ([Intel XE#886]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3:
- shard-bmg: [FAIL][274] ([Intel XE#2882]) -> [PASS][275] +3 other tests pass
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-7/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [SKIP][276] ([Intel XE#1503]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-4/igt@kms_hdr@static-toggle.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [SKIP][278] ([Intel XE#3012]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane_cursor@overlay:
- shard-dg2-set2: [FAIL][280] ([Intel XE#616]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-436/igt@kms_plane_cursor@overlay.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-432/igt@kms_plane_cursor@overlay.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [SKIP][282] ([Intel XE#4596]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-x.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][284] ([Intel XE#718]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-bmg: [ABORT][286] -> [PASS][287] +1 other test pass
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][288] ([Intel XE#4459]) -> [PASS][289] +1 other test pass
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-dg2-set2: [SKIP][290] ([Intel XE#1392]) -> [PASS][291] +5 other tests pass
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-bmg: [DMESG-WARN][292] ([Intel XE#4931]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-3/igt@xe_exec_reset@gt-reset-stress.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_exec_system_allocator@many-stride-new:
- shard-bmg: [DMESG-WARN][294] ([Intel XE#3428]) -> [PASS][295] +8 other tests pass
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-6/igt@xe_exec_system_allocator@many-stride-new.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@xe_exec_system_allocator@many-stride-new.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [DMESG-WARN][296] ([Intel XE#4792]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
- shard-lnl: [DMESG-WARN][298] ([Intel XE#4792]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-lnl-5/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][300] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) -> [INCOMPLETE][301] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][302] ([Intel XE#2341]) -> [FAIL][303] ([Intel XE#1178])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-5/igt@kms_content_protection@atomic.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][304] ([Intel XE#1178]) -> [SKIP][305] ([Intel XE#2341]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-2/igt@kms_content_protection@lic-type-0.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [FAIL][306] ([Intel XE#3321]) -> [SKIP][307] ([Intel XE#2316])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [SKIP][308] ([Intel XE#2316]) -> [FAIL][309] ([Intel XE#3321])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][310] ([Intel XE#2312]) -> [SKIP][311] ([Intel XE#2311]) +18 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][312] ([Intel XE#4141]) -> [INCOMPLETE][313] ([Intel XE#2050])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][314] ([Intel XE#2312]) -> [SKIP][315] ([Intel XE#4141]) +14 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][316] ([Intel XE#4141]) -> [SKIP][317] ([Intel XE#2312]) +8 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][318] ([Intel XE#2311]) -> [SKIP][319] ([Intel XE#2312]) +13 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][320] ([Intel XE#2312]) -> [SKIP][321] ([Intel XE#2313]) +16 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][322] ([Intel XE#2313]) -> [SKIP][323] ([Intel XE#2312]) +15 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][324] ([Intel XE#3544]) -> [SKIP][325] ([Intel XE#3374] / [Intel XE#3544])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][326] ([Intel XE#2426]) -> [FAIL][327] ([Intel XE#1729])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
- shard-lnl: [FAIL][328] -> [FAIL][329] ([Intel XE#4927])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [DMESG-WARN][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354]) ([Intel XE#3428]) -> ([PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [SKIP][377], [PASS][378], [PASS][379], [PASS][380]) ([Intel XE#2457])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-6/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-6/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-4/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-3/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-4/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-4/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-6/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-5/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-2/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-2/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-3/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-6/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-1/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-1/igt@xe_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-7/igt@xe_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-8/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-8/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-5/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-5/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-5/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-1/igt@xe_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-4/igt@xe_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-8/igt@xe_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-2/igt@xe_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-3/igt@xe_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-6/igt@xe_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@xe_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@xe_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-3/igt@xe_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@xe_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@xe_module_load@load.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@xe_module_load@load.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@xe_module_load@load.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-7/igt@xe_module_load@load.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@xe_module_load@load.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@xe_module_load@load.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-2/igt@xe_module_load@load.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@xe_module_load@load.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-8/igt@xe_module_load@load.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@xe_module_load@load.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@xe_module_load@load.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-7/igt@xe_module_load@load.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-7/igt@xe_module_load@load.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@xe_module_load@load.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@xe_module_load@load.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-3/igt@xe_module_load@load.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-3/igt@xe_module_load@load.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@xe_module_load@load.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-4/igt@xe_module_load@load.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@xe_module_load@load.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-6/igt@xe_module_load@load.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[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#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4757
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#4792]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4792
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4892
[Intel XE#4914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4914
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4927
[Intel XE#4928]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4928
[Intel XE#4931]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4931
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#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_8344 -> IGTPW_13060
* Linux: xe-3009-f13165b51331915eb63fdb160331e035ecae35c7 -> xe-3010-11bac2f4b353b42599a9b028f48261d32b94fe34
IGTPW_13060: af7fb58db5e270cc4a52628047dc7cf78f62372c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8344: 00f143c5f06f7d5936aacb70dad22be371570d38 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3009-f13165b51331915eb63fdb160331e035ecae35c7: f13165b51331915eb63fdb160331e035ecae35c7
xe-3010-11bac2f4b353b42599a9b028f48261d32b94fe34: 11bac2f4b353b42599a9b028f48261d32b94fe34
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/index.html
[-- Attachment #2: Type: text/html, Size: 102045 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
2025-04-29 14:30 [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Fix 32-bit compilation Kamil Konieczny
` (4 preceding siblings ...)
2025-04-30 6:52 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-04-30 7:19 ` Patchwork
2025-04-30 8:39 ` Kamil Konieczny
5 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2025-04-30 7:19 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 101785 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
URL : https://patchwork.freedesktop.org/series/148419/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16477_full -> IGTPW_13060_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_13060_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_13060_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/index.html
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_13060_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rps@waitboost:
- shard-dg2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg2-5/igt@i915_pm_rps@waitboost.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-5/igt@i915_pm_rps@waitboost.html
- shard-dg1: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-19/igt@i915_pm_rps@waitboost.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-17/igt@i915_pm_rps@waitboost.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-rkl-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
Known issues
------------
Here are the changes found in IGTPW_13060_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-3/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@core_hotunplug@unbind-rebind:
- shard-snb: [PASS][8] -> [ABORT][9] ([i915#11703])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-snb7/igt@core_hotunplug@unbind-rebind.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-snb7/igt@core_hotunplug@unbind-rebind.html
* igt@device_reset@cold-reset-bound:
- shard-dg2-9: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@device_reset@cold-reset-bound.html
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#3281]) +9 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-16/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-2/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#7697]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-8/igt@gem_close_race@multigpu-basic-process.html
- shard-dg2-9: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8562])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#280])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-4/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2-9: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-1/igt@gem_ctx_sseu@mmap-args.html
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][24] -> [FAIL][25] ([i915#12714] / [i915#5784])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-16/igt@gem_eio@unwedge-stress.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-12/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2-9: NOTRUN -> [SKIP][26] ([i915#4812])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4812]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg2-9: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#3539])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-15/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +14 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +5 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-19/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg2-9: NOTRUN -> [SKIP][35] ([i915#3281]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4537])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-1/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: [PASS][39] -> [ABORT][40] ([i915#7975] / [i915#8213]) +1 other test abort
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg2-4/igt@gem_exec_suspend@basic-s4-devices.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2-9: NOTRUN -> [SKIP][41] ([i915#4860])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-10/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-8/igt@gem_lmem_swapping@random.html
* igt@gem_mmap@basic-small-bo:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4083]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-6/igt@gem_mmap@basic-small-bo.html
* igt@gem_mmap@pf-nonblock:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4083]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@gem_mmap@pf-nonblock.html
* igt@gem_mmap_gtt@basic-read:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4077]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-15/igt@gem_mmap_gtt@basic-read.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +11 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077]) +11 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg2-9: NOTRUN -> [SKIP][51] ([i915#4077]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_wc@pf-nonblock:
- shard-dg2-9: NOTRUN -> [SKIP][52] ([i915#4083]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gem_mmap_wc@pf-nonblock.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3282]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-8/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3282]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-1/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pread@snoop:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3282]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@gem_pread@snoop.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-10/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-dg2-9: NOTRUN -> [SKIP][57] ([i915#4270]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#13717])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: NOTRUN -> [TIMEOUT][59] ([i915#12917] / [i915#12964])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [TIMEOUT][60] ([i915#12964])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_readwrite@read-bad-handle:
- shard-dg2-9: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8428]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#5190] / [i915#8428]) +6 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_render_copy@yf-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#5190] / [i915#8428]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gem_render_copy@yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#8411]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4079])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4079])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4885])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@gem_softpin@evict-snoop.html
* igt@gem_unfence_active_buffers:
- shard-dg2-9: NOTRUN -> [SKIP][69] ([i915#4879])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#3297] / [i915#4880])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4880])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3297]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-2/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen3_render_mixed_blits:
- shard-dg2-9: NOTRUN -> [SKIP][74] +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gen3_render_mixed_blits.html
* igt@gen3_render_tiledy_blits:
- shard-mtlp: NOTRUN -> [SKIP][75] +19 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-4/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#2856]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-8/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#2856])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#2527])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-13/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#2527]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#2856]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-3/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#11527]) +6 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-2/igt@i915_drm_fdinfo@busy-check-all@ccs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@ccs0:
- shard-dg2-9: NOTRUN -> [SKIP][82] ([i915#11527]) +7 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@i915_drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@i915_drm_fdinfo@busy@bcs0:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#14073]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-6/igt@i915_drm_fdinfo@busy@bcs0.html
* igt@i915_drm_fdinfo@busy@rcs0:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#14073]) +5 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-19/igt@i915_drm_fdinfo@busy@rcs0.html
* igt@i915_drm_fdinfo@busy@vecs1:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#14073]) +23 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-1/igt@i915_drm_fdinfo@busy@vecs1.html
* igt@i915_drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#14118])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy-all.html
* igt@i915_drm_fdinfo@virtual-busy-hang:
- shard-dg2-9: NOTRUN -> [SKIP][87] ([i915#14118])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@i915_drm_fdinfo@virtual-busy-hang.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#14118])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#13786])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-1/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#6590]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#6590]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-5/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [PASS][92] -> [FAIL][93] ([i915#3591]) +1 other test fail
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rpm@reg-read-ioctl:
- shard-dg1: [PASS][94] -> [DMESG-WARN][95] ([i915#4391] / [i915#4423])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-15/igt@i915_pm_rpm@reg-read-ioctl.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-14/igt@i915_pm_rpm@reg-read-ioctl.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2-9: NOTRUN -> [SKIP][96] ([i915#11681] / [i915#6621])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#11681])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-7/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_rps@waitboost:
- shard-mtlp: NOTRUN -> [FAIL][98] ([i915#8346])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-1/igt@i915_pm_rps@waitboost.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#8437])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#5723])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@workarounds:
- shard-dg2-9: NOTRUN -> [DMESG-FAIL][101] ([i915#12061]) +1 other test dmesg-fail
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@i915_selftest@live@workarounds.html
* igt@i915_selftest@mock@memory_region:
- shard-rkl: NOTRUN -> [DMESG-WARN][102] ([i915#9311]) +1 other test dmesg-warn
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4212])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2-9: NOTRUN -> [SKIP][104] ([i915#4212])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#12454] / [i915#12712])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-1-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#8709]) +7 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-1-4-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#12967] / [i915#6228])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2-9: NOTRUN -> [SKIP][108] ([i915#12967])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2-9: NOTRUN -> [SKIP][109] ([i915#9531])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#1769] / [i915#3555])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2-9: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg2: [PASS][112] -> [FAIL][113] ([i915#5956])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg2-5/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][114] ([i915#5956])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-dp-3.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5286])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-14/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][117] -> [FAIL][118] ([i915#5138])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#3638]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-dg2-9: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5190]) +4 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-16/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5190]) +10 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6187])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#5190]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][125] +12 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#12313]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#12313]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#6095]) +164 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6095]) +49 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#6095]) +34 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-snb: NOTRUN -> [SKIP][131] +19 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-snb4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#12313]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#6095]) +11 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#6095]) +120 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#12805])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#6095]) +21 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#14098] / [i915#6095]) +14 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][138] +96 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-glk1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][139] ([i915#12313])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#3742])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#13781]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#13783]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2-9: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-8/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +5 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-9: NOTRUN -> [SKIP][148] ([i915#3299])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6944] / [i915#9424])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-7/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#9424])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-5/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#7118])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#7118] / [i915#9424]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][153] ([i915#1339] / [i915#7173])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#8814])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#13049]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-rkl: NOTRUN -> [FAIL][156] ([i915#13566]) +3 other tests fail
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#8814]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#13049]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3555]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#9809]) +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#13046] / [i915#5354]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-3/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#4103] / [i915#4213])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#4103])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipa-varying-size:
- shard-rkl: NOTRUN -> [DMESG-WARN][164] ([i915#12964]) +1 other test dmesg-warn
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2-9: NOTRUN -> [SKIP][165] ([i915#13046] / [i915#5354]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#9067])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-9: NOTRUN -> [SKIP][167] ([i915#4103] / [i915#4213])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2: [PASS][168] -> [SKIP][169] ([i915#3555])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#1257])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-5/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#13749])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#13749])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-6/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-dg2-9: NOTRUN -> [SKIP][174] ([i915#13749])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#13707])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#8812])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840] / [i915#9159])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-2/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#3840])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-6/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840] / [i915#9053])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#13798])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3955])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#4854])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#1839])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#1839])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-9: NOTRUN -> [SKIP][185] ([i915#1839])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_feature_discovery@display-4x.html
* igt@kms_fence_pin_leak:
- shard-dg2-9: NOTRUN -> [SKIP][186] ([i915#4881])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3637] / [i915#9934]) +6 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2-9: NOTRUN -> [SKIP][188] ([i915#9934])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1:
- shard-snb: [PASS][189] -> [FAIL][190] ([i915#11832] / [i915#13734]) +1 other test fail
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-snb1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-snb7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#8381])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#9934]) +9 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][193] -> [FAIL][194] ([i915#13734]) +1 other test fail
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#9934]) +7 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-rkl: [PASS][196] -> [INCOMPLETE][197] ([i915#6113])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-rkl-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#2672]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#2672] / [i915#3555])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#2672]) +3 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][201] ([i915#2672] / [i915#3555] / [i915#5190])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#8813])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8810] / [i915#8813])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][206] ([i915#2672] / [i915#3555])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][207] ([i915#2672]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#10055])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#3458]) +15 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render:
- shard-dg2-9: NOTRUN -> [SKIP][212] ([i915#3458]) +6 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#1825]) +27 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][214] ([i915#8708]) +4 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][215] ([i915#5354]) +15 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#1825]) +21 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#8708])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#8708]) +23 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#5354]) +31 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#3458]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#3023]) +14 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8708]) +5 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [PASS][223] -> [SKIP][224] ([i915#3555] / [i915#8228])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@kms_hdr@static-swap.html
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#10656]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-10/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: [PASS][229] -> [SKIP][230] ([i915#12388])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#10656]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-2/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#10656])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#12339])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#13522])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][235] +13 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-5/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][236] ([i915#12178])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][237] ([i915#7862]) +1 other test fail
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#13958]) +2 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-4.html
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#13958])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#13958])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-6/igt@kms_plane_multiple@2x-tiling-none.html
- shard-dg2-9: NOTRUN -> [SKIP][241] ([i915#13958])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2-9: NOTRUN -> [SKIP][242] ([i915#13046] / [i915#5354] / [i915#9423])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-9: NOTRUN -> [SKIP][243] ([i915#6953] / [i915#9423])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#12247] / [i915#9423]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#12247]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#12247] / [i915#3555] / [i915#6953])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#12247]) +12 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#12247] / [i915#6953] / [i915#9423])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#12247]) +15 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#12247] / [i915#3555] / [i915#9423])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#12247] / [i915#6953])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#12343])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-18/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#9685])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#9340])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#8430])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@basic-rte:
- shard-dg1: [PASS][256] -> [DMESG-WARN][257] ([i915#4423])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-15/igt@kms_pm_rpm@basic-rte.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-14/igt@kms_pm_rpm@basic-rte.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2-9: NOTRUN -> [SKIP][258] ([i915#9519])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#9519]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: [PASS][260] -> [SKIP][261] ([i915#9519])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg2-1/igt@kms_pm_rpm@dpms-non-lpsp.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#6524] / [i915#6805])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-10/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#6524])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#9808]) +2 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#12316]) +7 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#11520]) +7 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][267] ([i915#11520]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-glk1/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#11520]) +4 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-9: NOTRUN -> [SKIP][269] ([i915#11520]) +3 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#9683])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-9: NOTRUN -> [SKIP][271] ([i915#9683])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#1072] / [i915#9732]) +14 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#9688]) +16 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-1/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@pr-cursor-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#1072] / [i915#9732]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-16/igt@kms_psr@pr-cursor-mmap-gtt.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg2-9: NOTRUN -> [SKIP][275] ([i915#1072] / [i915#9732]) +8 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#1072] / [i915#9732]) +27 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#4077] / [i915#9688]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-9: NOTRUN -> [SKIP][278] ([i915#9685])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#9685])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-9: NOTRUN -> [SKIP][280] ([i915#12755])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#12755])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#12755] / [i915#5190])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic:
- shard-snb: [PASS][283] -> [FAIL][284] ([i915#5465]) +2 other tests fail
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-snb6/igt@kms_setmode@basic.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-snb1/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [PASS][285] -> [FAIL][286] ([i915#5465]) +2 other tests fail
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-mtlp-6/igt@kms_setmode@basic@pipe-b-edp-1.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8809])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [PASS][288] -> [FAIL][289] ([i915#9196]) +1 other test fail
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][290] ([i915#12276]) +1 other test incomplete
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-glk1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-dpms:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8808]) +2 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-4/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@flip-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][292] ([i915#3555]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#11920])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-2/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#9906])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2-9: NOTRUN -> [SKIP][295] ([i915#9906])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#9906]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#2437])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-2/igt@kms_writeback@writeback-check-output.html
* igt@perf_pmu@event-wait:
- shard-dg1: NOTRUN -> [SKIP][298] +3 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-15/igt@perf_pmu@event-wait.html
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#8807])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-5/igt@perf_pmu@event-wait.html
* igt@perf_pmu@event-wait@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8807])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-5/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][301] ([i915#12549] / [i915#6806]) +1 other test fail
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-1/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@module-unload:
- shard-mtlp: [PASS][302] -> [INCOMPLETE][303] ([i915#13520])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-mtlp-7/igt@perf_pmu@module-unload.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-2/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#8516])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@perf_pmu@rc6-all-gts.html
* igt@prime_mmap@test_aperture_limit:
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#14121]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-3/igt@prime_mmap@test_aperture_limit.html
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#14121]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-7/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#14121]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-14/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#3291] / [i915#3708])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-8/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#10216] / [i915#3708])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-8/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#3708] / [i915#4077]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#3708])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@prime_vgem@fence-flip-hang.html
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#3708])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-mtlp: NOTRUN -> [SKIP][313] ([i915#3708]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-1/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2-9: NOTRUN -> [SKIP][314] ([i915#3708])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2:
- shard-mtlp: NOTRUN -> [FAIL][315] ([i915#12910]) +19 other tests fail
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-8/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2-9: NOTRUN -> [SKIP][316] ([i915#9917])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-9/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sysfs_heartbeat_interval@nopreempt@vcs0:
- shard-mtlp: [PASS][317] -> [ABORT][318] ([i915#13193] / [i915#13723]) +3 other tests abort
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-mtlp-1/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
* igt@tools_test@sysfs_l3_parity:
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#4818])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-4/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_ctx_persistence@engines-mixed-process@vcs1:
- shard-mtlp: [DMESG-WARN][320] ([i915#13723]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-mtlp-7/igt@gem_ctx_persistence@engines-mixed-process@vcs1.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-1/igt@gem_ctx_persistence@engines-mixed-process@vcs1.html
* igt@gem_eio@kms:
- shard-dg1: [FAIL][322] ([i915#5784]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-18/igt@gem_eio@kms.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-19/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-mtlp: [ABORT][324] ([i915#13193] / [i915#13723]) -> [PASS][325] +2 other tests pass
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-mtlp-7/igt@gem_eio@reset-stress.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-5/igt@gem_eio@reset-stress.html
- shard-dg1: [FAIL][326] ([i915#12543] / [i915#5784]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-13/igt@gem_eio@reset-stress.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-15/igt@gem_eio@reset-stress.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-dg1: [FAIL][328] ([i915#3591]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: [INCOMPLETE][330] ([i915#12796]) -> [PASS][331] +1 other test pass
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][332] ([i915#14033]) -> [PASS][333] +3 other tests pass
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg1: [DMESG-WARN][334] ([i915#4423]) -> [PASS][335] +2 other tests pass
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-14/igt@kms_flip@flip-vs-suspend.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-12/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1:
- shard-mtlp: [FAIL][336] ([i915#13734]) -> [PASS][337] +2 other tests pass
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-mtlp-3/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-mtlp-4/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move:
- shard-snb: [SKIP][338] -> [PASS][339] +4 other tests pass
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [SKIP][340] ([i915#3555] / [i915#9906]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg2-6/igt@kms_vrr@negative-basic.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-11/igt@kms_vrr@negative-basic.html
#### Warnings ####
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][342] ([i915#6095]) -> [SKIP][343] ([i915#14098] / [i915#6095])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-rkl-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][344] ([i915#14098] / [i915#6095]) -> [SKIP][345] ([i915#6095])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg1: [SKIP][346] ([i915#12313]) -> [SKIP][347] ([i915#12313] / [i915#4423])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-dg1: [SKIP][348] ([i915#11151] / [i915#4423] / [i915#7828]) -> [SKIP][349] ([i915#11151] / [i915#7828])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-14/igt@kms_chamelium_edid@dp-edid-resolution-list.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-14/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_content_protection@uevent:
- shard-dg2: [SKIP][350] ([i915#7118] / [i915#9424]) -> [FAIL][351] ([i915#1339] / [i915#7173])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg2-2/igt@kms_content_protection@uevent.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-10/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg1: [SKIP][352] ([i915#13049]) -> [SKIP][353] ([i915#13049] / [i915#4423])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: [SKIP][354] ([i915#8708]) -> [SKIP][355] ([i915#4423] / [i915#8708])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: [SKIP][356] ([i915#3458]) -> [SKIP][357] ([i915#3458] / [i915#4423])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [SKIP][358] ([i915#10433] / [i915#3458]) -> [SKIP][359] ([i915#3458])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][360] ([i915#3458]) -> [SKIP][361] ([i915#10433] / [i915#3458]) +1 other test skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@bpc-switch:
- shard-dg1: [SKIP][362] ([i915#3555] / [i915#4423] / [i915#8228]) -> [SKIP][363] ([i915#3555] / [i915#8228])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-15/igt@kms_hdr@bpc-switch.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-13/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][364] ([i915#1187] / [i915#12713]) -> [SKIP][365] ([i915#12713])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg1: [SKIP][366] ([i915#3555]) -> [SKIP][367] ([i915#3555] / [i915#4423])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-19/igt@kms_plane_lowres@tiling-yf.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-18/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-dg1: [SKIP][368] ([i915#11520]) -> [SKIP][369] ([i915#11520] / [i915#4423])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-18/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-14/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr@fbc-psr2-cursor-mmap-cpu:
- shard-dg1: [SKIP][370] ([i915#1072] / [i915#9732]) -> [SKIP][371] ([i915#1072] / [i915#4423] / [i915#9732])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-12/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-16/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703
[i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12714]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12714
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13723
[i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13798]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13798
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8807]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8807
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8344 -> IGTPW_13060
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_16477: 1295f065de1df2595f37d907efa3354b19d9b639 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13060: af7fb58db5e270cc4a52628047dc7cf78f62372c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8344: 00f143c5f06f7d5936aacb70dad22be371570d38 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/index.html
[-- Attachment #2: Type: text/html, Size: 129710 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ i915.CI.Full: failure for tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
2025-04-30 7:19 ` ✗ i915.CI.Full: " Patchwork
@ 2025-04-30 8:39 ` Kamil Konieczny
0 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2025-04-30 8:39 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra
Hi igt-dev,
On 2025-04-30 at 07:19:01 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
> URL : https://patchwork.freedesktop.org/series/148419/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_16477_full -> IGTPW_13060_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_13060_full absolutely need to be
> verified manually.
Unrelated to Xe test change, no need for respin, I will merge it soon.
Regards,
Kamil
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_13060_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/index.html
>
> Participating hosts (11 -> 11)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_13060_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@i915_pm_rps@waitboost:
> - shard-dg2: [PASS][1] -> [FAIL][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg2-5/igt@i915_pm_rps@waitboost.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-5/igt@i915_pm_rps@waitboost.html
> - shard-dg1: [PASS][3] -> [FAIL][4]
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-dg1-19/igt@i915_pm_rps@waitboost.html
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg1-17/igt@i915_pm_rps@waitboost.html
>
> * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
> - shard-rkl: [PASS][5] -> [INCOMPLETE][6]
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16477/shard-rkl-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
>
>
> Known issues
> ------------
>
> Here are the changes found in IGTPW_13060_full that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@api_intel_bb@object-reloc-purge-cache:
> - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411])
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/shard-dg2-3/igt@api_intel_bb@object-reloc-purge-cache.html
...cut...
>
>
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_8344 -> IGTPW_13060
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_16477: 1295f065de1df2595f37d907efa3354b19d9b639 @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_13060: af7fb58db5e270cc4a52628047dc7cf78f62372c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8344: 00f143c5f06f7d5936aacb70dad22be371570d38 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13060/index.html
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ Xe.CI.Full: failure for tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
2025-04-30 6:52 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-04-30 8:44 ` Kamil Konieczny
0 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2025-04-30 8:44 UTC (permalink / raw)
To: igt-dev; +Cc: Matthew Brost, Francois Dugast, I915-ci-infra
Hi,
On 2025-04-30 at 06:52:03 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: tests/intel/xe_exec_system_allocator: Fix 32-bit compilation
> URL : https://patchwork.freedesktop.org/series/148419/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from XEIGT_8344_FULL -> XEIGTPW_13060_FULL
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with XEIGTPW_13060_FULL absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_13060_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
>
>
> Participating hosts (4 -> 3)
> ------------------------------
>
> Missing (1): shard-adlp
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in XEIGTPW_13060_FULL:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@kms_invalid_mode@overflow-vrefresh:
> - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-466/igt@kms_invalid_mode@overflow-vrefresh.html
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-434/igt@kms_invalid_mode@overflow-vrefresh.html
>
> * igt@kms_pm_rpm@i2c:
> - shard-bmg: [PASS][3] -> [FAIL][4]
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-6/igt@kms_pm_rpm@i2c.html
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-1/igt@kms_pm_rpm@i2c.html
> - shard-dg2-set2: [PASS][5] -> [FAIL][6]
> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-dg2-436/igt@kms_pm_rpm@i2c.html
> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-dg2-433/igt@kms_pm_rpm@i2c.html
Above are unrelated.
>
> * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
> - shard-lnl: [PASS][7] -> [FAIL][8]
> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
>
Matthew or Francois, could you help and look into a bug reported in
this test? imho this is not introduced by this change so I will merge
patch now.
> * igt@xe_pm@s2idle-d3hot-basic-exec:
> - shard-bmg: [PASS][9] -> [WARN][10]
> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8344/shard-bmg-1/igt@xe_pm@s2idle-d3hot-basic-exec.html
> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-6/igt@xe_pm@s2idle-d3hot-basic-exec.html
>
Also unrelated.
>
> New tests
> ---------
>
> New tests have been introduced between XEIGT_8344_FULL and XEIGTPW_13060_FULL:
>
> ### New IGT tests (1) ###
>
> * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
> - Statuses : 1 dmesg-warn(s)
> - Exec time: [0.34] s
>
>
>
> Known issues
> ------------
>
> Here are the changes found in XEIGTPW_13060_FULL that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@intel_hwmon@hwmon-write:
> - shard-bmg: NOTRUN -> [FAIL][11] ([Intel XE#4665])
> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
...cut...
>
>
> Build changes
> -------------
>
> * IGT: IGT_8344 -> IGTPW_13060
> * Linux: xe-3009-f13165b51331915eb63fdb160331e035ecae35c7 -> xe-3010-11bac2f4b353b42599a9b028f48261d32b94fe34
>
> IGTPW_13060: af7fb58db5e270cc4a52628047dc7cf78f62372c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> IGT_8344: 00f143c5f06f7d5936aacb70dad22be371570d38 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-3009-f13165b51331915eb63fdb160331e035ecae35c7: f13165b51331915eb63fdb160331e035ecae35c7
> xe-3010-11bac2f4b353b42599a9b028f48261d32b94fe34: 11bac2f4b353b42599a9b028f48261d32b94fe34
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13060/index.html
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-04-30 8:44 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-29 14:30 [PATCH i-g-t] tests/intel/xe_exec_system_allocator: Fix 32-bit compilation Kamil Konieczny
2025-04-29 15:17 ` Francois Dugast
2025-04-30 4:00 ` ✓ i915.CI.BAT: success for " Patchwork
2025-04-30 4:28 ` [PATCH i-g-t] " Matthew Brost
2025-04-30 4:49 ` ✓ Xe.CI.BAT: success for " Patchwork
2025-04-30 6:52 ` ✗ Xe.CI.Full: failure " Patchwork
2025-04-30 8:44 ` Kamil Konieczny
2025-04-30 7:19 ` ✗ i915.CI.Full: " Patchwork
2025-04-30 8:39 ` Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox