* [PATCH] tests/intel: only check multi-LRC support for parallel submission paths
@ 2026-04-08 7:14 Xin Wang
2026-04-08 17:27 ` Daniel Charles
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Xin Wang @ 2026-04-08 7:14 UTC (permalink / raw)
To: igt-dev; +Cc: Xin Wang, Daniel Charles
The previous commit "tests/intel: skip or adjust tests for non-multi-LRC
engine classes" unconditionally guarded balancer test functions with
xe_engine_class_supports_multi_lrc(), causing virtual (non-parallel)
subtests to be skipped on engine classes that have multiple placements
but do not support multi-LRC.
Only parallel submission requires multi-LRC support; virtual balancer
tests should still run whenever num_placements >= 2 regardless of
multi-LRC capability.
Fix this by making the multi-LRC check conditional on the PARALLEL flag
in test_exec(), test_cm(), test_balancer(), and utilization_multi().
Remove the check entirely from test_all_active() which is a pure virtual
test. In xe_exec_threads, move the filter into the caller threads() so
that VIRTUAL threads are still spawned while PARALLEL threads are skipped
for non-multi-LRC classes.
Fixes: 09d91fcf2961 ("tests/intel: skip or adjust tests for non-multi-LRC engine classes")
Cc: Daniel Charles <daniel.charles@intel.com>
Signed-off-by: Xin Wang <x.wang@intel.com>
---
tests/intel/xe_drm_fdinfo.c | 3 ++-
tests/intel/xe_exec_balancer.c | 8 +++++---
tests/intel/xe_exec_reset.c | 3 ++-
tests/intel/xe_exec_threads.c | 7 ++++++-
4 files changed, 15 insertions(+), 6 deletions(-)
diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c
index 3c113ed5d..8449a4f17 100644
--- a/tests/intel/xe_drm_fdinfo.c
+++ b/tests/intel/xe_drm_fdinfo.c
@@ -673,7 +673,8 @@ utilization_multi(int fd, int gt, int class, unsigned int flags)
igt_assert(virtual ^ parallel);
num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
- if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class))
+ if (num_placements < 2 ||
+ (parallel && !xe_engine_class_supports_multi_lrc(fd, class)))
return;
igt_debug("Target class: %s\n", engine_map[class]);
diff --git a/tests/intel/xe_exec_balancer.c b/tests/intel/xe_exec_balancer.c
index 3c6ec45f1..4aaef7666 100644
--- a/tests/intel/xe_exec_balancer.c
+++ b/tests/intel/xe_exec_balancer.c
@@ -57,7 +57,7 @@ static bool test_all_active(int fd, int gt, int class)
int i, num_placements;
num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
- if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class))
+ if (num_placements < 2)
return false;
vm = xe_vm_create(fd, 0, 0);
@@ -187,7 +187,8 @@ test_exec(int fd, int gt, int class, int n_exec_queues, int n_execs,
igt_assert_lte(n_exec_queues, MAX_N_EXEC_QUEUES);
num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
- if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class))
+ if (num_placements < 2 ||
+ ((flags & PARALLEL) && !xe_engine_class_supports_multi_lrc(fd, class)))
return false;
vm = xe_vm_create(fd, 0, 0);
@@ -402,7 +403,8 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs,
igt_assert_lte(n_exec_queues, MAX_N_EXEC_QUEUES);
num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
- if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class))
+ if (num_placements < 2 ||
+ ((flags & PARALLEL) && !xe_engine_class_supports_multi_lrc(fd, class)))
return false;
vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c
index 95191139d..66580ea44 100644
--- a/tests/intel/xe_exec_reset.c
+++ b/tests/intel/xe_exec_reset.c
@@ -184,7 +184,8 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
fd = drm_open_driver(DRIVER_XE);
num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
- if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class))
+ if (num_placements < 2 ||
+ ((flags & PARALLEL) && !xe_engine_class_supports_multi_lrc(fd, class)))
return;
vm = xe_vm_create(fd, 0, 0);
diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
index 7b8100c5b..40a6c0c6d 100644
--- a/tests/intel/xe_exec_threads.c
+++ b/tests/intel/xe_exec_threads.c
@@ -85,7 +85,6 @@ test_balancer(int fd, int gt, uint32_t vm, uint64_t addr, uint64_t userptr,
num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
igt_assert_lt(1, num_placements);
- igt_assert(xe_engine_class_supports_multi_lrc(fd, class));
bo_size = sizeof(*data) * n_execs;
bo_size = xe_bb_size(fd, bo_size);
@@ -1211,6 +1210,12 @@ static void threads(int fd, int flags)
continue;
while (*data_flags >= 0) {
+ if ((*data_flags & PARALLEL) &&
+ !xe_engine_class_supports_multi_lrc(fd, class)) {
+ data_flags++;
+ continue;
+ }
+
threads_data[i].mutex = &mutex;
threads_data[i].cond = &cond;
if (flags & SHARED_VM)
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: tests/intel: only check multi-LRC support for parallel submission paths
2026-04-08 7:14 [PATCH] tests/intel: only check multi-LRC support for parallel submission paths Xin Wang
@ 2026-04-08 17:27 ` Daniel Charles
2026-04-09 13:41 ` Kamil Konieczny
2026-04-09 8:14 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 7+ messages in thread
From: Daniel Charles @ 2026-04-08 17:27 UTC (permalink / raw)
To: Xin Wang, igt-dev
On 4/8/2026 12:14 AM, Xin Wang wrote:
> The previous commit "tests/intel: skip or adjust tests for non-multi-LRC
> engine classes" unconditionally guarded balancer test functions with
> xe_engine_class_supports_multi_lrc(), causing virtual (non-parallel)
> subtests to be skipped on engine classes that have multiple placements
> but do not support multi-LRC.
>
> Only parallel submission requires multi-LRC support; virtual balancer
> tests should still run whenever num_placements >= 2 regardless of
> multi-LRC capability.
>
> Fix this by making the multi-LRC check conditional on the PARALLEL flag
> in test_exec(), test_cm(), test_balancer(), and utilization_multi().
> Remove the check entirely from test_all_active() which is a pure virtual
> test. In xe_exec_threads, move the filter into the caller threads() so
> that VIRTUAL threads are still spawned while PARALLEL threads are skipped
> for non-multi-LRC classes.
>
> Fixes: 09d91fcf2961 ("tests/intel: skip or adjust tests for non-multi-LRC engine classes")
> Cc: Daniel Charles <daniel.charles@intel.com>
> Signed-off-by: Xin Wang <x.wang@intel.com>
> ---
> tests/intel/xe_drm_fdinfo.c | 3 ++-
> tests/intel/xe_exec_balancer.c | 8 +++++---
> tests/intel/xe_exec_reset.c | 3 ++-
> tests/intel/xe_exec_threads.c | 7 ++++++-
> 4 files changed, 15 insertions(+), 6 deletions(-)
>
> diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c
> index 3c113ed5d..8449a4f17 100644
> --- a/tests/intel/xe_drm_fdinfo.c
> +++ b/tests/intel/xe_drm_fdinfo.c
> @@ -673,7 +673,8 @@ utilization_multi(int fd, int gt, int class, unsigned int flags)
> igt_assert(virtual ^ parallel);
>
> num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
> - if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class))
> + if (num_placements < 2 ||
> + (parallel && !xe_engine_class_supports_multi_lrc(fd, class)))
> return;
>
> igt_debug("Target class: %s\n", engine_map[class]);
> diff --git a/tests/intel/xe_exec_balancer.c b/tests/intel/xe_exec_balancer.c
> index 3c6ec45f1..4aaef7666 100644
> --- a/tests/intel/xe_exec_balancer.c
> +++ b/tests/intel/xe_exec_balancer.c
> @@ -57,7 +57,7 @@ static bool test_all_active(int fd, int gt, int class)
> int i, num_placements;
>
> num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
> - if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class))
> + if (num_placements < 2)
> return false;
>
> vm = xe_vm_create(fd, 0, 0);
> @@ -187,7 +187,8 @@ test_exec(int fd, int gt, int class, int n_exec_queues, int n_execs,
> igt_assert_lte(n_exec_queues, MAX_N_EXEC_QUEUES);
>
> num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
> - if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class))
> + if (num_placements < 2 ||
> + ((flags & PARALLEL) && !xe_engine_class_supports_multi_lrc(fd, class)))
> return false;
>
> vm = xe_vm_create(fd, 0, 0);
> @@ -402,7 +403,8 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs,
> igt_assert_lte(n_exec_queues, MAX_N_EXEC_QUEUES);
>
> num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
> - if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class))
> + if (num_placements < 2 ||
> + ((flags & PARALLEL) && !xe_engine_class_supports_multi_lrc(fd, class)))
> return false;
>
> vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
> diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c
> index 95191139d..66580ea44 100644
> --- a/tests/intel/xe_exec_reset.c
> +++ b/tests/intel/xe_exec_reset.c
> @@ -184,7 +184,8 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
> fd = drm_open_driver(DRIVER_XE);
>
> num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
> - if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class))
> + if (num_placements < 2 ||
> + ((flags & PARALLEL) && !xe_engine_class_supports_multi_lrc(fd, class)))
> return;
>
> vm = xe_vm_create(fd, 0, 0);
> diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
> index 7b8100c5b..40a6c0c6d 100644
> --- a/tests/intel/xe_exec_threads.c
> +++ b/tests/intel/xe_exec_threads.c
> @@ -85,7 +85,6 @@ test_balancer(int fd, int gt, uint32_t vm, uint64_t addr, uint64_t userptr,
>
> num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
> igt_assert_lt(1, num_placements);
> - igt_assert(xe_engine_class_supports_multi_lrc(fd, class));
>
> bo_size = sizeof(*data) * n_execs;
> bo_size = xe_bb_size(fd, bo_size);
> @@ -1211,6 +1210,12 @@ static void threads(int fd, int flags)
> continue;
>
> while (*data_flags >= 0) {
> + if ((*data_flags & PARALLEL) &&
> + !xe_engine_class_supports_multi_lrc(fd, class)) {
> + data_flags++;
> + continue;
> + }
> +
> threads_data[i].mutex = &mutex;
> threads_data[i].cond = &cond;
> if (flags & SHARED_VM)
Reviewed-by: Daniel Charles <daniel.charles@intel.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel: only check multi-LRC support for parallel submission paths
2026-04-08 7:14 [PATCH] tests/intel: only check multi-LRC support for parallel submission paths Xin Wang
2026-04-08 17:27 ` Daniel Charles
@ 2026-04-09 8:14 ` Patchwork
2026-04-09 8:31 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-09 8:14 UTC (permalink / raw)
To: Xin Wang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 801 bytes --]
== Series Details ==
Series: tests/intel: only check multi-LRC support for parallel submission paths
URL : https://patchwork.freedesktop.org/series/164496/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8851_BAT -> XEIGTPW_14942_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8851 -> IGTPW_14942
IGTPW_14942: 14942
IGT_8851: 8851
xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf: 5ee75b2816df74bfe606d4dfc061547d5cda4ebf
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/index.html
[-- Attachment #2: Type: text/html, Size: 1346 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel: only check multi-LRC support for parallel submission paths
2026-04-08 7:14 [PATCH] tests/intel: only check multi-LRC support for parallel submission paths Xin Wang
2026-04-08 17:27 ` Daniel Charles
2026-04-09 8:14 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-04-09 8:31 ` Patchwork
2026-04-09 9:25 ` ✓ Xe.CI.FULL: " Patchwork
2026-04-09 20:43 ` ✗ i915.CI.Full: failure " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-09 8:31 UTC (permalink / raw)
To: Xin Wang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2887 bytes --]
== Series Details ==
Series: tests/intel: only check multi-LRC support for parallel submission paths
URL : https://patchwork.freedesktop.org/series/164496/
State : success
== Summary ==
CI Bug Log - changes from IGT_8851 -> IGTPW_14942
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14942 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-glk-j4005: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/fi-glk-j4005/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-glk-j4005: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8851/bat-mtlp-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8851/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/bat-dg2-14/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@prime_vgem@basic-gtt:
- fi-glk-j4005: [ABORT][7] ([i915#15773]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8851/fi-glk-j4005/igt@prime_vgem@basic-gtt.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/fi-glk-j4005/igt@prime_vgem@basic-gtt.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15773]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15773
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8851 -> IGTPW_14942
* Linux: CI_DRM_18296 -> CI_DRM_18297
CI-20190529: 20190529
CI_DRM_18296: 994d34e9b0e78a8c9f5768d55529bdf194654793 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18297: e105f427a4533d9a6d4597597da78484313c9b61 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14942: 14942
IGT_8851: 8851
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/index.html
[-- Attachment #2: Type: text/html, Size: 3686 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.FULL: success for tests/intel: only check multi-LRC support for parallel submission paths
2026-04-08 7:14 [PATCH] tests/intel: only check multi-LRC support for parallel submission paths Xin Wang
` (2 preceding siblings ...)
2026-04-09 8:31 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-04-09 9:25 ` Patchwork
2026-04-09 20:43 ` ✗ i915.CI.Full: failure " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-09 9:25 UTC (permalink / raw)
To: Xin Wang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 21711 bytes --]
== Series Details ==
Series: tests/intel: only check multi-LRC support for parallel submission paths
URL : https://patchwork.freedesktop.org/series/164496/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8851_FULL -> XEIGTPW_14942_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14942_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#7059] / [Intel XE#7085]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#1124]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#367] / [Intel XE#7354])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-10/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: NOTRUN -> [INCOMPLETE][5] ([Intel XE#7084]) +1 other test incomplete
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#3432])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-after-hibernate:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2252]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-10/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#6974])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][10] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-6/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][11] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-3/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2320]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-10/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2286] / [Intel XE#6035])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][14] -> [FAIL][15] ([Intel XE#301]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#7178] / [Intel XE#7351])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#4141]) +6 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2311]) +11 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2313]) +9 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7061] / [Intel XE#7356])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7591])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7283])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [PASS][23] -> [ABORT][24] ([Intel XE#6652])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-4.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-4@pipe-c-dp-2-pipe-a-hdmi-a-3:
- shard-bmg: [PASS][25] -> [ABORT][26] ([Intel XE#5545] / [Intel XE#6652] / [Intel XE#7200])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-4@pipe-c-dp-2-pipe-a-hdmi-a-3.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4@pipe-c-dp-2-pipe-a-hdmi-a-3.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#5021] / [Intel XE#7377])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1489]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2387] / [Intel XE#7429])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-1/igt@kms_psr@psr2-no-drrs.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#1406] / [Intel XE#2414])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_vrr@flipline:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1499])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-6/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][34] -> [FAIL][35] ([Intel XE#2142]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_eudebug@basic-vms:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7636]) +5 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-3/igt@xe_eudebug@basic-vms.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7136]) +4 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#6874]) +11 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-3/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7138]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-10/igt@xe_mmap@small-bar.html
* igt@xe_multigpu_svm@mgpu-latency-copy-basic:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#6964])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-6/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
* igt@xe_pat@xa-app-transient-media-off:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7590])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-6/igt@xe_pat@xa-app-transient-media-off.html
* igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-3/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
* igt@xe_query@multigpu-query-oa-units:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#944])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-10/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: [PASS][46] -> [DMESG-WARN][47] ([Intel XE#6627] / [Intel XE#7419])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-5/igt@xe_survivability@runtime-survivability.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-8/igt@xe_survivability@runtime-survivability.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-transition-nonblocking:
- shard-bmg: [INCOMPLETE][48] -> [PASS][49] +1 other test pass
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-2/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-10/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][50] ([Intel XE#7571]) -> [PASS][51] +1 other test pass
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [FAIL][52] -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][54] ([Intel XE#7340]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-bmg: [ABORT][56] ([Intel XE#7200]) -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [FAIL][58] ([Intel XE#4227]) -> [PASS][59] +1 other test pass
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-lnl-4/igt@kms_vrr@max-min@pipe-a-edp-1.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-lnl-5/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][60] ([Intel XE#6321]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-10/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [FAIL][62] ([Intel XE#6569]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-6/igt@xe_sriov_flr@flr-vf1-clear.html
#### Warnings ####
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][64] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][65] ([Intel XE#2509] / [Intel XE#7437])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8851/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7200]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7200
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8851 -> IGTPW_14942
IGTPW_14942: 14942
IGT_8851: 8851
xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf: 5ee75b2816df74bfe606d4dfc061547d5cda4ebf
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14942/index.html
[-- Attachment #2: Type: text/html, Size: 23395 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: tests/intel: only check multi-LRC support for parallel submission paths
2026-04-08 17:27 ` Daniel Charles
@ 2026-04-09 13:41 ` Kamil Konieczny
0 siblings, 0 replies; 7+ messages in thread
From: Kamil Konieczny @ 2026-04-09 13:41 UTC (permalink / raw)
To: Daniel Charles; +Cc: Xin Wang, igt-dev
Hi Daniel,
On 2026-04-08 at 10:27:11 -0700, Daniel Charles wrote:
>
> On 4/8/2026 12:14 AM, Xin Wang wrote:
> > The previous commit "tests/intel: skip or adjust tests for non-multi-LRC
> > engine classes" unconditionally guarded balancer test functions with
> > xe_engine_class_supports_multi_lrc(), causing virtual (non-parallel)
> > subtests to be skipped on engine classes that have multiple placements
> > but do not support multi-LRC.
> >
> > Only parallel submission requires multi-LRC support; virtual balancer
> > tests should still run whenever num_placements >= 2 regardless of
> > multi-LRC capability.
> >
> > Fix this by making the multi-LRC check conditional on the PARALLEL flag
> > in test_exec(), test_cm(), test_balancer(), and utilization_multi().
> > Remove the check entirely from test_all_active() which is a pure virtual
> > test. In xe_exec_threads, move the filter into the caller threads() so
> > that VIRTUAL threads are still spawned while PARALLEL threads are skipped
> > for non-multi-LRC classes.
> >
> > Fixes: 09d91fcf2961 ("tests/intel: skip or adjust tests for non-multi-LRC engine classes")
> > Cc: Daniel Charles <daniel.charles@intel.com>
> > Signed-off-by: Xin Wang <x.wang@intel.com>
> > ---
> > tests/intel/xe_drm_fdinfo.c | 3 ++-
> > tests/intel/xe_exec_balancer.c | 8 +++++---
> > tests/intel/xe_exec_reset.c | 3 ++-
> > tests/intel/xe_exec_threads.c | 7 ++++++-
> > 4 files changed, 15 insertions(+), 6 deletions(-)
> >
> > diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c
> > index 3c113ed5d..8449a4f17 100644
> > --- a/tests/intel/xe_drm_fdinfo.c
> > +++ b/tests/intel/xe_drm_fdinfo.c
> > @@ -673,7 +673,8 @@ utilization_multi(int fd, int gt, int class, unsigned int flags)
> > igt_assert(virtual ^ parallel);
> > num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
> > - if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class))
> > + if (num_placements < 2 ||
> > + (parallel && !xe_engine_class_supports_multi_lrc(fd, class)))
> > return;
> > igt_debug("Target class: %s\n", engine_map[class]);
[cut]
> > + if ((*data_flags & PARALLEL) &&
> > + !xe_engine_class_supports_multi_lrc(fd, class)) {
> > + data_flags++;
> > + continue;
> > + }
> > +
> > threads_data[i].mutex = &mutex;
> > threads_data[i].cond = &cond;
> > if (flags & SHARED_VM)
> Reviewed-by: Daniel Charles <daniel.charles@intel.com>
Thank you all, pushed.
Regards,
Kamil
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel: only check multi-LRC support for parallel submission paths
2026-04-08 7:14 [PATCH] tests/intel: only check multi-LRC support for parallel submission paths Xin Wang
` (3 preceding siblings ...)
2026-04-09 9:25 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-04-09 20:43 ` Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-09 20:43 UTC (permalink / raw)
To: Xin Wang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 142627 bytes --]
== Series Details ==
Series: tests/intel: only check multi-LRC support for parallel submission paths
URL : https://patchwork.freedesktop.org/series/164496/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18297_full -> IGTPW_14942_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14942_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14942_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_14942/index.html
Participating hosts (11 -> 10)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14942_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_big@single:
- shard-rkl: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@gem_exec_big@single.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@gem_exec_big@single.html
#### Warnings ####
* igt@gem_exec_big@single:
- shard-tglu: [FAIL][3] ([i915#15816]) -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-7/igt@gem_exec_big@single.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-5/igt@gem_exec_big@single.html
Known issues
------------
Here are the changes found in IGTPW_14942_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-15/igt@device_reset@cold-reset-bound.html
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-4/igt@device_reset@cold-reset-bound.html
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-8/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-8/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#11078]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#15678])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-7/igt@drm_buddy@drm_buddy.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@gem_basic@multigpu-create-close.html
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-18/igt@gem_basic@multigpu-create-close.html
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-4/igt@gem_basic@multigpu-create-close.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-3/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#13008])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#8562])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-snb7/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@reset-stress@blt:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#15314])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-4/igt@gem_eio@reset-stress@blt.html
* igt@gem_eio@reset-stress@bsd:
- shard-snb: NOTRUN -> [FAIL][25] ([i915#8898]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-snb7/igt@gem_eio@reset-stress@bsd.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel:
- shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#6344])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4812]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-3/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-16/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +6 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3281]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#3281]) +7 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-16/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#14544] / [i915#3281])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-3/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-14/igt@gem_exec_schedule@semaphore-power.html
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-8/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s3-devices:
- shard-rkl: [PASS][41] -> [ABORT][42] ([i915#15131])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-5/igt@gem_exec_suspend@basic-s3-devices.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices.html
* igt@gem_exec_suspend@basic-s3-devices@smem:
- shard-rkl: [PASS][43] -> [ABORT][44] ([i915#15542])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-5/igt@gem_exec_suspend@basic-s3-devices@smem.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices@smem.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4860])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-glk: NOTRUN -> [SKIP][46] ([i915#4613]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk9/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-5/igt@gem_lmem_swapping@parallel-multi.html
- shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4613])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-8/igt@gem_lmem_swapping@random.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#8289])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-8/igt@gem_media_fill@media-fill.html
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#8289])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-8/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#284])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-1/igt@gem_media_vme.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4083]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-15/igt@gem_mmap_wc@read.html
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4083]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-7/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#3282]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +8 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pwrite@basic-random:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#14544] / [i915#3282])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@gem_pwrite@basic-random.html
* igt@gem_pwrite_snooped:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@gem_pwrite_snooped.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4270]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-8/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4270])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-16/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-7/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#5190] / [i915#8428]) +6 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4079])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][67] ([i915#13809])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk6/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#3297])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#14544] / [i915#3297])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][70] ([i915#3297]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-15/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-7/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#14544] / [i915#3282] / [i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#3297])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#4958])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-4/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4958])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-14/igt@gem_userptr_blits@sd-probe.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk10: NOTRUN -> [ABORT][77] ([i915#5566])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk10/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#2856]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@gen9_exec_parse@bb-start-far.html
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#2527]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-17/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#2527] / [i915#2856]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-8/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@secure-batches:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#2856]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-5/igt@gen9_exec_parse@secure-batches.html
* igt@i915_drm_fdinfo@busy-check-all:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#11527]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-16/igt@i915_drm_fdinfo@busy-check-all.html
* igt@i915_drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#11527]) +6 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-2/igt@i915_drm_fdinfo@busy-check-all@ccs0.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#11527]) +7 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@virtual-busy-all:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#14118]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-5/igt@i915_drm_fdinfo@virtual-busy-all.html
* igt@i915_drm_fdinfo@virtual-busy-hang:
- shard-snb: NOTRUN -> [SKIP][87] +133 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-snb6/igt@i915_drm_fdinfo@virtual-busy-hang.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#14118]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-12/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#14118]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#8399])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#14544] / [i915#8399])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#8399])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-7/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][93] +14 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [PASS][94] -> [FAIL][95] ([i915#12964]) +1 other test fail
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#14498])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-rkl: [PASS][97] -> [INCOMPLETE][98] ([i915#13356])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-5/igt@i915_pm_rpm@system-suspend.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#11681] / [i915#6621])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#11681])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@i915_pm_rps@thresholds-idle-park.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#11681])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-15/igt@i915_pm_rps@thresholds-idle-park.html
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#11681])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][103] -> [SKIP][104] ([i915#7984])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-6/igt@i915_power@sanity.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-5/igt@i915_power@sanity.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg1: NOTRUN -> [SKIP][105] +27 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-15/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_suspend@debugfs-reader:
- shard-glk11: NOTRUN -> [INCOMPLETE][106] ([i915#4817])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk11/igt@i915_suspend@debugfs-reader.html
- shard-rkl: [PASS][107] -> [INCOMPLETE][108] ([i915#4817]) +1 other test incomplete
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-2/igt@i915_suspend@debugfs-reader.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][109] ([i915#4817])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk5/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#5190]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#5190])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#1769] / [i915#3555])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][113] ([i915#1769])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-mtlp: [PASS][114] -> [FAIL][115] ([i915#5956]) +1 other test fail
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg2: [PASS][116] -> [FAIL][117] ([i915#5956])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][118] ([i915#5956])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-19/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#5286]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#5286]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-2/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#5286])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-19/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#3638]) +4 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#3638]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-13/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#3828])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#3828])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#3828])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-12/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#3828])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-10/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#3828])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][131] +11 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][132] +10 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5190]) +5 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#14544] / [i915#3638])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-17/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#14544] / [i915#6095]) +14 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#6095]) +207 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-19/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][138] +121 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk11/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6095]) +49 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-a-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][140] +469 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#6095]) +34 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#12313]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#6095]) +98 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#6095]) +82 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#12805])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#12805])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#14098] / [i915#14544] / [i915#6095]) +11 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#6095]) +64 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-rkl: [PASS][149] -> [INCOMPLETE][150] ([i915#15582])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][151] ([i915#15582])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][152] ([i915#14694] / [i915#15582]) +1 other test incomplete
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#14098] / [i915#6095]) +55 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#12313]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#6095]) +34 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#12313])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#3742]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +4 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +7 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-19/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#14544] / [i915#7828])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +8 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#12655] / [i915#3555])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#15865]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#15330])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#15330] / [i915#3116] / [i915#3299])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#15865])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-8/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#15865])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-8/igt@kms_content_protection@lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#15865])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-14/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#15865]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-1/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#15865]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#3555]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#3555]) +6 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#3555])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][178] ([i915#13566]) +2 other tests fail
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][179] ([i915#13566]) +3 other tests fail
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][180] -> [FAIL][181] ([i915#13566]) +4 other tests fail
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#13049]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#13049])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#13049] / [i915#14544])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#13049])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#13049])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#14544] / [i915#3555]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#3555]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-19/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8814])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#13046] / [i915#5354]) +6 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#14544]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#9809]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#4103])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][195] ([i915#15804])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#9067])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#4103])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#4103] / [i915#4213])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-15/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#4103] / [i915#4213])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#9723])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#3804])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev@basic:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#1257])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-1/igt@kms_dp_aux_dev@basic.html
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#1257] / [i915#14544])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_dp_aux_dev@basic.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#1257])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-19/igt@kms_dp_aux_dev@basic.html
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#1257])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-2/igt@kms_dp_aux_dev@basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#13749])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-1/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#13748])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#13707])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#3840])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3840])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#3840])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-10/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-8/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-15/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-4/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#3840]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#3840]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-9/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#3840] / [i915#9053])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#3469])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#1839])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#9337])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#9934]) +7 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#3637] / [i915#9934]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#14544] / [i915#9934])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#9934]) +5 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-1/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk10: NOTRUN -> [INCOMPLETE][225] ([i915#12745] / [i915#4839])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk10: NOTRUN -> [INCOMPLETE][226] ([i915#12745])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#3637] / [i915#9934]) +10 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-5/igt@kms_flip@2x-nonexisting-fb.html
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3637] / [i915#9934]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-4/igt@kms_flip@2x-nonexisting-fb.html
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#9934])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-17/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#4423] / [i915#9934])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-18/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#15643]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#15643]) +3 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#15643])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#15643]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#15643])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#15643]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#15643] / [i915#5190])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: [PASS][239] -> [SKIP][240] ([i915#15672])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-7/igt@kms_force_connector_basic@prune-stale-modes.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-dg2: [PASS][241] -> [FAIL][242] ([i915#15389] / [i915#6880]) +1 other test fail
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#8708]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#1825]) +22 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#5354]) +29 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#15104])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#15102] / [i915#3458]) +7 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#8708]) +12 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][250] +25 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-glk10: NOTRUN -> [SKIP][251] +126 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][252] +55 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#10433] / [i915#15102] / [i915#3458])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#15102]) +10 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#15104]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#15102]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#15104]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#15102]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#15102] / [i915#3023]) +16 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#15102] / [i915#3458]) +9 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#15102]) +24 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#1825]) +37 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#14544] / [i915#1825]) +5 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#8708]) +8 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@kms_hdr@bpc-switch.html
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@kms_hdr@bpc-switch.html
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-12/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#12713])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-8/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#15459])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-7/igt@kms_joiner@basic-force-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#15459])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-1/igt@kms_joiner@basic-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#14544] / [i915#15459])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#15459])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-12/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#13688])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#15460])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-10/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#15459]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#15458])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#15458]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#15458])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-18/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#15458])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#15458])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#15638] / [i915#15722])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#15815])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#6301])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#6301])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#6301])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-18/igt@kms_panel_fitting@atomic-fastset.html
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#6301])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [PASS][288] -> [ABORT][289] ([i915#15132]) +1 other test abort
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
- shard-glk: NOTRUN -> [INCOMPLETE][290] ([i915#12756] / [i915#13409] / [i915#13476])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][291] ([i915#13409] / [i915#13476])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#14712])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#13705])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#13705])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#15709]) +4 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
- shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#15709]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#15709]) +4 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#15709]) +2 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#15709]) +4 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#15709]) +3 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#15608]) +3 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-2/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#14544] / [i915#15709])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][303] ([i915#10647] / [i915#12177])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][304] ([i915#10647]) +1 other test fail
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk11: NOTRUN -> [FAIL][305] ([i915#10647] / [i915#12169])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk11/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [FAIL][306] ([i915#10647]) +1 other test fail
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk11/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-x:
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#11614] / [i915#3582]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-5/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-5/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#13046] / [i915#5354] / [i915#9423])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#15329]) +9 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#15329] / [i915#3555])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-12/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#15329]) +3 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-12/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][313] ([i915#15329] / [i915#3555] / [i915#6953])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#15329]) +3 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#5354])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#12343])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#9812]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#9685])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#14544] / [i915#8430])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#15073])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#14544] / [i915#15073])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#15073])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-13/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg1: [PASS][323] -> [SKIP][324] ([i915#15073])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: [PASS][325] -> [SKIP][326] ([i915#15073])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-5/igt@kms_pm_rpm@dpms-non-lpsp.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html
- shard-rkl: [PASS][327] -> [SKIP][328] ([i915#15073])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@fences-dpms:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#4077]) +10 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-7/igt@kms_pm_rpm@fences-dpms.html
- shard-dg1: NOTRUN -> [SKIP][330] ([i915#4077]) +2 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-12/igt@kms_pm_rpm@fences-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#4077]) +3 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-2/igt@kms_pm_rpm@fences-dpms.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-tglu: [PASS][332] -> [ABORT][333] ([i915#10553] / [i915#15652])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-10/igt@kms_pm_rpm@system-suspend-modeset.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-4/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#6524] / [i915#6805]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#6524])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-19/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#11520]) +3 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][337] ([i915#11520]) +10 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][338] ([i915#11520]) +13 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk3/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#11520]) +8 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][340] ([i915#11520]) +3 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-19/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#9808])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][342] ([i915#12316]) +3 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][343] ([i915#11520]) +4 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-glk11: NOTRUN -> [SKIP][344] ([i915#11520]) +2 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-glk10: NOTRUN -> [SKIP][345] ([i915#11520]) +3 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#11520]) +6 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#11520] / [i915#14544])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][348] ([i915#4348]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#9683]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#9683])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#9683])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-14/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][352] ([i915#9683])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-dg1: NOTRUN -> [SKIP][353] ([i915#1072] / [i915#9732]) +9 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-16/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-mtlp: NOTRUN -> [SKIP][354] ([i915#9688]) +8 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-6/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr-cursor-render:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#1072] / [i915#9732]) +20 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-4/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][356] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#1072] / [i915#9732]) +16 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][358] ([i915#4077] / [i915#9688]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-3/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#9732]) +9 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][360] ([i915#9732]) +16 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-7/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][361] ([i915#15492])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk4/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][362] ([i915#15500])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][363] ([i915#5289])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][364] ([i915#14544] / [i915#5289])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#5289])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][366] ([i915#13179]) +1 other test abort
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-9/igt@kms_selftest@drm_framebuffer.html
- shard-glk: NOTRUN -> [ABORT][367] ([i915#13179]) +1 other test abort
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk4/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][368] ([i915#15106]) +4 other tests fail
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-snb7/igt@kms_setmode@basic.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#15243] / [i915#3555])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-5/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][370] ([i915#9906])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-4/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [PASS][371] -> [FAIL][372] ([i915#15420]) +1 other test fail
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-5/igt@kms_vrr@negative-basic.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][373] ([i915#9906])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#2436])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start:
- shard-mtlp: NOTRUN -> [FAIL][375] ([i915#4349]) +2 other tests fail
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-7/igt@perf_pmu@busy-double-start.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][376] ([i915#15778])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk1/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][377] ([i915#13356])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk11/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][378] ([i915#3708])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-18/igt@prime_vgem@basic-fence-flip.html
- shard-dg2: NOTRUN -> [SKIP][379] ([i915#3708])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#3291] / [i915#3708])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][381] ([i915#14544] / [i915#3291] / [i915#3708])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][382] ([i915#14544] / [i915#3708])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][383] ([i915#9917])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-18/igt@sriov_basic@enable-vfs-bind-unbind-each.html
#### Possible fixes ####
* igt@api_intel_bb@render@render-y-1024:
- shard-dg1: [ABORT][384] -> [PASS][385] +1 other test pass
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-15/igt@api_intel_bb@render@render-y-1024.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-14/igt@api_intel_bb@render@render-y-1024.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][386] ([i915#13356]) -> [PASS][387] +3 other tests pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-4/igt@gem_ccs@suspend-resume.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-clear:
- shard-tglu: [INCOMPLETE][388] -> [PASS][389]
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-7/igt@gem_create@create-clear.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-8/igt@gem_create@create-clear.html
* igt@gem_create@create-clear@smem0:
- shard-tglu: [INCOMPLETE][390] ([i915#5493]) -> [PASS][391]
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-7/igt@gem_create@create-clear@smem0.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-8/igt@gem_create@create-clear@smem0.html
* igt@gem_eio@wait-wedge-1us:
- shard-mtlp: [ABORT][392] ([i915#15511]) -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-2/igt@gem_eio@wait-wedge-1us.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-8/igt@gem_eio@wait-wedge-1us.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: [FAIL][394] -> [PASS][395] +1 other test pass
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@gem_exec_suspend@basic-s4-devices.html
- shard-tglu: [FAIL][396] -> [PASS][397] +1 other test pass
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-7/igt@gem_exec_suspend@basic-s4-devices.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-3/igt@gem_exec_suspend@basic-s4-devices.html
- shard-mtlp: [FAIL][398] ([i915#15762]) -> [PASS][399] +1 other test pass
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-7/igt@gem_exec_suspend@basic-s4-devices.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-2/igt@gem_exec_suspend@basic-s4-devices.html
* igt@i915_selftest@live:
- shard-mtlp: [DMESG-FAIL][400] ([i915#15560]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-7/igt@i915_selftest@live.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@gem_contexts:
- shard-rkl: [DMESG-FAIL][402] -> [PASS][403] +1 other test pass
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@i915_selftest@live@gem_contexts.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-5/igt@i915_selftest@live@gem_contexts.html
* igt@i915_selftest@live@mman:
- shard-tglu: [DMESG-FAIL][404] -> [PASS][405] +3 other tests pass
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-7/igt@i915_selftest@live@mman.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-10/igt@i915_selftest@live@mman.html
* igt@i915_selftest@live@objects:
- shard-mtlp: [DMESG-FAIL][406] -> [PASS][407] +1 other test pass
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-7/igt@i915_selftest@live@objects.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-6/igt@i915_selftest@live@objects.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [FAIL][408] ([i915#13566]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][410] ([i915#13566]) -> [PASS][411] +1 other test pass
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-rkl: [INCOMPLETE][412] ([i915#12358] / [i915#14152]) -> [PASS][413]
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-rkl: [FAIL][414] ([i915#14600]) -> [PASS][415]
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
- shard-mtlp: [FAIL][416] ([i915#14600]) -> [PASS][417] +1 other test pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg1: [ABORT][418] ([i915#4423]) -> [PASS][419]
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-13/igt@kms_force_connector_basic@prune-stale-modes.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-12/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [INCOMPLETE][420] ([i915#10056]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: [SKIP][422] ([i915#3555] / [i915#8228]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-2/igt@kms_hdr@bpc-switch-dpms.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg1: [DMESG-WARN][424] ([i915#4423]) -> [PASS][425] +2 other tests pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-13/igt@kms_pipe_crc_basic@suspend-read-crc.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-13/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][426] ([i915#15073]) -> [PASS][427] +2 other tests pass
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg1: [SKIP][428] ([i915#15073]) -> [PASS][429] +1 other test pass
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp.html
#### Warnings ####
* igt@api_intel_bb@crc32:
- shard-rkl: [SKIP][430] ([i915#14544] / [i915#6230]) -> [SKIP][431] ([i915#6230])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@api_intel_bb@crc32.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@api_intel_bb@crc32.html
* igt@drm_buddy@drm_buddy:
- shard-rkl: [SKIP][432] ([i915#15678]) -> [SKIP][433] ([i915#14544] / [i915#15678])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-5/igt@drm_buddy@drm_buddy.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@drm_buddy@drm_buddy.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: [SKIP][434] ([i915#6335]) -> [SKIP][435] ([i915#14544] / [i915#6335])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: [SKIP][436] ([i915#3281]) -> [SKIP][437] ([i915#14544] / [i915#3281]) +5 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: [SKIP][438] ([i915#14544] / [i915#3281]) -> [SKIP][439] ([i915#3281]) +2 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: [SKIP][440] ([i915#14544] / [i915#4613]) -> [SKIP][441] ([i915#4613])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@gem_lmem_swapping@massive-random.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: [SKIP][442] ([i915#3282]) -> [SKIP][443] ([i915#14544] / [i915#3282])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@gem_partial_pwrite_pread@reads-uncached.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][444] ([i915#8411]) -> [SKIP][445] ([i915#14544] / [i915#8411])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: [SKIP][446] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][447] ([i915#3297] / [i915#3323])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-5/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gen9_exec_parse@basic-rejected:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#2527]) -> [SKIP][449] ([i915#2527]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-large:
- shard-rkl: [SKIP][450] ([i915#2527]) -> [SKIP][451] ([i915#14544] / [i915#2527])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-8/igt@gen9_exec_parse@bb-large.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@gen9_exec_parse@bb-large.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-rkl: [SKIP][452] ([i915#5286]) -> [SKIP][453] ([i915#14544] / [i915#5286]) +1 other test skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: [SKIP][454] ([i915#3638]) -> [SKIP][455] ([i915#14544] / [i915#3638]) +2 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_big_fb@linear-32bpp-rotate-90.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][456] ([i915#3828]) -> [SKIP][457] ([i915#14544] / [i915#3828])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-rkl: [SKIP][458] ([i915#14544] / [i915#3638]) -> [SKIP][459] ([i915#3638])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][460] -> [SKIP][461] ([i915#14544]) +8 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg1: [SKIP][462] ([i915#4423] / [i915#4538]) -> [SKIP][463] ([i915#4538])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][464] ([i915#14544]) -> [SKIP][465] +1 other test skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][466] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][467] ([i915#14098] / [i915#6095]) +3 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][468] ([i915#6095]) -> [SKIP][469] ([i915#14544] / [i915#6095]) +1 other test skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][470] ([i915#14098] / [i915#6095]) -> [SKIP][471] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][472] ([i915#12313]) -> [SKIP][473] ([i915#12313] / [i915#14544]) +1 other test skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: [SKIP][474] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][475] ([i915#11151] / [i915#7828]) +1 other test skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-5/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-rkl: [SKIP][476] ([i915#11151] / [i915#7828]) -> [SKIP][477] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][478] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][479] ([i915#15330] / [i915#3116])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-rkl: [SKIP][480] ([i915#15330]) -> [SKIP][481] ([i915#14544] / [i915#15330])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: [SKIP][482] ([i915#15865]) -> [SKIP][483] ([i915#14544] / [i915#15865]) +2 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_content_protection@legacy-hdcp14.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: [SKIP][484] ([i915#13707]) -> [SKIP][485] ([i915#13707] / [i915#14544])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][486] ([i915#9337]) -> [SKIP][487] ([i915#14544] / [i915#9337])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-2/igt@kms_feature_discovery@dp-mst.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-rkl: [SKIP][488] ([i915#14544] / [i915#9934]) -> [SKIP][489] ([i915#9934]) +2 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][490] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][491] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-glk2/igt@kms_flip@2x-flip-vs-suspend.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][492] ([i915#12745]) -> [INCOMPLETE][493] ([i915#12314] / [i915#12745])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-glk2/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-rkl: [SKIP][494] ([i915#15643]) -> [SKIP][495] ([i915#14544] / [i915#15643])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: [SKIP][496] ([i915#14544] / [i915#5439]) -> [SKIP][497] ([i915#5439])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [SKIP][498] ([i915#15102] / [i915#3458]) -> [SKIP][499] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-rkl: [SKIP][500] ([i915#14544] / [i915#1825]) -> [SKIP][501] ([i915#1825]) +8 other tests skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][502] ([i915#15102]) -> [SKIP][503] ([i915#14544] / [i915#15102])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][504] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][505] ([i915#15102] / [i915#3458]) +2 other tests skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][506] ([i915#15102] / [i915#3023]) -> [SKIP][507] ([i915#14544] / [i915#15102] / [i915#3023]) +11 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][508] ([i915#1825]) -> [SKIP][509] ([i915#14544] / [i915#1825]) +9 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-dg1: [SKIP][510] ([i915#4423] / [i915#8708]) -> [SKIP][511] ([i915#8708])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-rkl: [SKIP][512] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][513] ([i915#15102] / [i915#3023]) +3 other tests skip
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][514] ([i915#1187] / [i915#12713]) -> [SKIP][515] ([i915#12713])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: [SKIP][516] ([i915#13688] / [i915#14544]) -> [SKIP][517] ([i915#13688])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-4/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][518] ([i915#6301]) -> [SKIP][519] ([i915#14544] / [i915#6301])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-5/igt@kms_panel_fitting@legacy.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-rkl: [SKIP][520] ([i915#14712]) -> [SKIP][521] ([i915#14544] / [i915#14712])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
- shard-rkl: [SKIP][522] ([i915#14544] / [i915#15709]) -> [SKIP][523] ([i915#15709])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-rkl: [SKIP][524] ([i915#15709]) -> [SKIP][525] ([i915#14544] / [i915#15709]) +2 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: [SKIP][526] ([i915#15329] / [i915#3555]) -> [SKIP][527] ([i915#14544] / [i915#15329] / [i915#3555])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: [SKIP][528] ([i915#15329]) -> [SKIP][529] ([i915#14544] / [i915#15329]) +10 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: [SKIP][530] ([i915#12343] / [i915#14544]) -> [SKIP][531] ([i915#12343])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-4/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: [SKIP][532] ([i915#5354]) -> [SKIP][533] ([i915#14544] / [i915#5354]) +1 other test skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-5/igt@kms_pm_backlight@fade-with-dpms.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: [SKIP][534] ([i915#9685]) -> [SKIP][535] ([i915#14544] / [i915#9685])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: [SKIP][536] ([i915#9340]) -> [SKIP][537] ([i915#4423] / [i915#9340])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][538] ([i915#15073]) -> [SKIP][539] ([i915#14544] / [i915#15073])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: [SKIP][540] ([i915#14544] / [i915#6524]) -> [SKIP][541] ([i915#6524])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-dg1: [SKIP][542] ([i915#11520] / [i915#4423]) -> [SKIP][543] ([i915#11520])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-13/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][544] ([i915#11520]) -> [SKIP][545] ([i915#11520] / [i915#14544]) +2 other tests skip
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][546] ([i915#11520] / [i915#14544]) -> [SKIP][547] ([i915#11520]) +1 other test skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@pr-cursor-mmap-gtt:
- shard-dg1: [SKIP][548] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][549] ([i915#1072] / [i915#9732]) +1 other test skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-13/igt@kms_psr@pr-cursor-mmap-gtt.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-14/igt@kms_psr@pr-cursor-mmap-gtt.html
* igt@kms_psr@pr-primary-blt:
- shard-rkl: [SKIP][550] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][551] ([i915#1072] / [i915#9732]) +2 other tests skip
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_psr@pr-primary-blt.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-4/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr@psr-suspend:
- shard-rkl: [SKIP][552] ([i915#1072] / [i915#9732]) -> [SKIP][553] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_psr@psr-suspend.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_psr@psr-suspend.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: [SKIP][554] ([i915#5289]) -> [SKIP][555] ([i915#14544] / [i915#5289]) +1 other test skip
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: [SKIP][556] ([i915#3555]) -> [SKIP][557] ([i915#14544] / [i915#3555])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_scaling_modes@scaling-mode-none.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-rkl: [SKIP][558] ([i915#14544] / [i915#3555]) -> [SKIP][559] ([i915#3555])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: [SKIP][560] ([i915#9906]) -> [SKIP][561] ([i915#14544] / [i915#9906]) +1 other test skip
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][562] ([i915#9100]) -> [FAIL][563] ([i915#3089]) +1 other test fail
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@module-unload:
- shard-dg1: [ABORT][564] ([i915#13029] / [i915#15778]) -> [ABORT][565] ([i915#15778])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-dg1-19/igt@perf_pmu@module-unload.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-dg1-15/igt@perf_pmu@module-unload.html
- shard-tglu: [ABORT][566] ([i915#15778]) -> [ABORT][567] ([i915#13029] / [i915#15778])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-tglu-3/igt@perf_pmu@module-unload.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-tglu-6/igt@perf_pmu@module-unload.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: [SKIP][568] ([i915#9917]) -> [SKIP][569] ([i915#14544] / [i915#9917])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18297/shard-rkl-8/igt@sriov_basic@enable-vfs-autoprobe-on.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[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#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[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#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15511]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15511
[i915#15542]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15542
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15652]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15652
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15762]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15762
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[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#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3089]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3089
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[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#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[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#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[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#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[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#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#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[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#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[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#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[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_8851 -> IGTPW_14942
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18297: e105f427a4533d9a6d4597597da78484313c9b61 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14942: 14942
IGT_8851: 8851
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14942/index.html
[-- Attachment #2: Type: text/html, Size: 191228 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-04-09 20:43 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-08 7:14 [PATCH] tests/intel: only check multi-LRC support for parallel submission paths Xin Wang
2026-04-08 17:27 ` Daniel Charles
2026-04-09 13:41 ` Kamil Konieczny
2026-04-09 8:14 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-04-09 8:31 ` ✓ i915.CI.BAT: " Patchwork
2026-04-09 9:25 ` ✓ Xe.CI.FULL: " Patchwork
2026-04-09 20:43 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox