* [PATCH i-g-t] lib/xe: Use proper GT lookup in xe_gt_get_tile_id()
@ 2026-08-31 20:23 Matt Roper
2026-09-01 8:20 ` Dnyaneshwar Bhadane
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Matt Roper @ 2026-08-31 20:23 UTC (permalink / raw)
To: igt-dev; +Cc: Matt Roper
xe_gt_get_tile_id() should lookup the GT record associated with a GT ID
via drm_xe_get_gt() rather than directly indexing into gt_list[]. The
ID may not always match the array index on future platforms if we ever
have cases where GT IDs are non-contiguous.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
lib/xe/xe_query.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
index 68e60ddc7..0b309be03 100644
--- a/lib/xe/xe_query.c
+++ b/lib/xe/xe_query.c
@@ -1070,14 +1070,16 @@ bool xe_is_main_gt(int fd, int gt)
*/
uint16_t xe_gt_get_tile_id(int fd, int gt)
{
+ const struct drm_xe_gt *gt_data;
struct xe_device *xe_dev;
xe_dev = find_in_cache(fd);
-
igt_assert(xe_dev);
- igt_assert(gt < xe_number_gt(fd));
- return xe_dev->gt_list->gt_list[gt].tile_id;
+ gt_data = drm_xe_get_gt(xe_dev, gt);
+ igt_assert(gt_data);
+
+ return gt_data->tile_id;
}
/**
---
base-commit: d822caac6e3589c05fffb63fbfc89134b0f7ccb3
change-id: 20260831-gtlookup_noncontig-13ef96a45b4f
Best regards,
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] lib/xe: Use proper GT lookup in xe_gt_get_tile_id()
2026-08-31 20:23 [PATCH i-g-t] lib/xe: Use proper GT lookup in xe_gt_get_tile_id() Matt Roper
@ 2026-09-01 8:20 ` Dnyaneshwar Bhadane
2026-09-01 20:57 ` ✓ i915.CI.BAT: success for " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Dnyaneshwar Bhadane @ 2026-09-01 8:20 UTC (permalink / raw)
To: igt-dev
On 01-Sep-26 1:53 AM, Matt Roper wrote:
> xe_gt_get_tile_id() should lookup the GT record associated with a GT ID
> via drm_xe_get_gt() rather than directly indexing into gt_list[]. The
> ID may not always match the array index on future platforms if we ever
> have cases where GT IDs are non-contiguous.
>
> Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
> ---
> lib/xe/xe_query.c | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
> index 68e60ddc7..0b309be03 100644
> --- a/lib/xe/xe_query.c
> +++ b/lib/xe/xe_query.c
> @@ -1070,14 +1070,16 @@ bool xe_is_main_gt(int fd, int gt)
> */
> uint16_t xe_gt_get_tile_id(int fd, int gt)
> {
> + const struct drm_xe_gt *gt_data;
> struct xe_device *xe_dev;
>
> xe_dev = find_in_cache(fd);
> -
> igt_assert(xe_dev);
> - igt_assert(gt < xe_number_gt(fd));
>
> - return xe_dev->gt_list->gt_list[gt].tile_id;
> + gt_data = drm_xe_get_gt(xe_dev, gt);
> + igt_assert(gt_data);
> +
> + return gt_data->tile_id;
Hi Matt,
Could we use xe_get_tile() directly having assert on negative return?
Dnyaneshwar> }
>
> /**
>
> ---
> base-commit: d822caac6e3589c05fffb63fbfc89134b0f7ccb3
> change-id: 20260831-gtlookup_noncontig-13ef96a45b4f
>
> Best regards,
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for lib/xe: Use proper GT lookup in xe_gt_get_tile_id()
2026-08-31 20:23 [PATCH i-g-t] lib/xe: Use proper GT lookup in xe_gt_get_tile_id() Matt Roper
2026-09-01 8:20 ` Dnyaneshwar Bhadane
@ 2026-09-01 20:57 ` Patchwork
2026-09-01 21:07 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-09-01 20:57 UTC (permalink / raw)
To: Matt Roper; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1650 bytes --]
== Series Details ==
Series: lib/xe: Use proper GT lookup in xe_gt_get_tile_id()
URL : https://patchwork.freedesktop.org/series/173091/
State : success
== Summary ==
CI Bug Log - changes from IGT_9079 -> IGTPW_15761
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/index.html
Participating hosts (37 -> 36)
------------------------------
Missing (1): bat-dg2-13
Known issues
------------
Here are the changes found in IGTPW_15761 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- bat-rpls-4: [DMESG-WARN][1] ([i915#13400]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9079/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
[i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9079 -> IGTPW_15761
* Linux: CI_DRM_19066 -> CI_DRM_19068
CI-20190529: 20190529
CI_DRM_19066: b8f17b16c0f8638b9df4f090511e3ae97210eb77 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_19068: 97649417ea562630ab357dbea25f153a654b61c6 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15761: 3b5b19092278c68e6ba8294c07dbb98a08324a1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9079: 9079
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/index.html
[-- Attachment #2: Type: text/html, Size: 2250 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for lib/xe: Use proper GT lookup in xe_gt_get_tile_id()
2026-08-31 20:23 [PATCH i-g-t] lib/xe: Use proper GT lookup in xe_gt_get_tile_id() Matt Roper
2026-09-01 8:20 ` Dnyaneshwar Bhadane
2026-09-01 20:57 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2026-09-01 21:07 ` Patchwork
2026-09-02 8:42 ` ✗ i915.CI.Full: failure " Patchwork
2026-09-02 8:45 ` ✓ Xe.CI.FULL: success " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-09-01 21:07 UTC (permalink / raw)
To: Matt Roper; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5012 bytes --]
== Series Details ==
Series: lib/xe: Use proper GT lookup in xe_gt_get_tile_id()
URL : https://patchwork.freedesktop.org/series/173091/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9079_BAT -> XEIGTPW_15761_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 12)
------------------------------
Additional (1): bat-bmg-2
Known issues
------------
Here are the changes found in XEIGTPW_15761_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@write:
- bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/bat-bmg-2/igt@fbdev@write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_frontbuffer_tracking@basic:
- bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@xe_exec_multi_queue@priority:
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#8364]) +13 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/bat-bmg-2/igt@xe_exec_multi_queue@priority.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2229])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#1420] / [Intel XE#7590])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2245] / [Intel XE#7590])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2236] / [Intel XE#7590])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
Build changes
-------------
* IGT: IGT_9079 -> IGTPW_15761
* Linux: xe-5668-b8f17b16c0f8638b9df4f090511e3ae97210eb77 -> xe-5670-97649417ea562630ab357dbea25f153a654b61c6
IGTPW_15761: 3b5b19092278c68e6ba8294c07dbb98a08324a1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9079: 9079
xe-5668-b8f17b16c0f8638b9df4f090511e3ae97210eb77: b8f17b16c0f8638b9df4f090511e3ae97210eb77
xe-5670-97649417ea562630ab357dbea25f153a654b61c6: 97649417ea562630ab357dbea25f153a654b61c6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/index.html
[-- Attachment #2: Type: text/html, Size: 5935 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for lib/xe: Use proper GT lookup in xe_gt_get_tile_id()
2026-08-31 20:23 [PATCH i-g-t] lib/xe: Use proper GT lookup in xe_gt_get_tile_id() Matt Roper
` (2 preceding siblings ...)
2026-09-01 21:07 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-09-02 8:42 ` Patchwork
2026-09-02 8:45 ` ✓ Xe.CI.FULL: success " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-09-02 8:42 UTC (permalink / raw)
To: Matt Roper; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 141845 bytes --]
== Series Details ==
Series: lib/xe: Use proper GT lookup in xe_gt_get_tile_id()
URL : https://patchwork.freedesktop.org/series/173091/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_19068_full -> IGTPW_15761_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15761_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15761_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_15761/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15761_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@kms:
- shard-rkl: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@gem_eio@kms.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-tglu: [PASS][2] -> [DMESG-WARN][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-8/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-7/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@perf_pmu@semaphore-wait:
- shard-rkl: [PASS][4] -> [FAIL][5] +4 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-2/igt@perf_pmu@semaphore-wait.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@perf_pmu@semaphore-wait.html
Known issues
------------
Here are the changes found in IGTPW_15761_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#6230])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-10/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@fbdev@pan:
- shard-snb: NOTRUN -> [FAIL][8] ([i915#15792])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-snb5/igt@fbdev@pan.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#3281]) +18 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-6/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-12/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-10/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-3/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#13356] / [i915#16348]) +1 other test incomplete
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-7/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#7697])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: NOTRUN -> [INCOMPLETE][21] ([i915#13356]) +1 other test incomplete
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][22] ([i915#13356] / [i915#16466]) +1 other test incomplete
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk3/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-15/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@legacy-engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][24] ([i915#1099]) +5 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed-process.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][26] ([i915#13390])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk4/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][27] ([i915#8898]) +1 other test fail
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-snb7/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#4525])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-3/igt@gem_exec_fence@submit3.html
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-7/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-4/igt@gem_exec_flush@basic-wb-rw-before-default.html
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-14/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3281]) +5 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +5 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281]) +7 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-13/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +4 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-13/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#7276])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4860])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-13/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-2/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#2190])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613]) +5 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-9/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][47] ([i915#4613]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk3/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-3/igt@gem_lmem_swapping@verify-random.html
* igt@gem_media_vme:
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#284])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-10/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-small-bo-tiledx:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-5/igt@gem_mmap_gtt@basic-small-bo-tiledx.html
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +6 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-17/igt@gem_mmap_gtt@basic-small-bo-tiledx.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4077]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4083])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-4/igt@gem_mmap_wc@coherency.html
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4083]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-14/igt@gem_mmap_wc@coherency.html
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4083])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-1/igt@gem_mmap_wc@coherency.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#3282])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-7/igt@gem_partial_pwrite_pread@reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#3282])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-13/igt@gem_partial_pwrite_pread@reads-uncached.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3282])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-2/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][60] ([i915#2658])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@gem_pread@exhaustion.html
- shard-snb: NOTRUN -> [WARN][61] ([i915#2658]) +1 other test warn
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-snb7/igt@gem_pread@exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-16/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#5190] / [i915#8428])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-7/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-7/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_userptr_blits@access-control:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#3297])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#3297]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#14544] / [i915#3297])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#3297]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-9/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [PASS][70] -> [ABORT][71] ([i915#15152])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-5/igt@gem_workarounds@suspend-resume-fd.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-1/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#2527] / [i915#2856]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-7/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu-1: NOTRUN -> [SKIP][73] ([i915#2527] / [i915#2856])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#2527]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#2856])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-1/igt@gen9_exec_parse@valid-registers.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#2527]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-17/igt@gen9_exec_parse@valid-registers.html
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#2856])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@busy-idle@bcs0:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#14073]) +5 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-13/igt@i915_drm_fdinfo@busy-idle@bcs0.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk11: NOTRUN -> [ABORT][79] ([i915#15342]) +1 other test abort
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk11/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#8399]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#6590]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-7/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-snb: NOTRUN -> [SKIP][82] +654 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-snb5/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][83] ([i915#13356] / [i915#15172])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk6/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#6188])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-7/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#6188])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-3/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#16109])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#16079])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-6/igt@i915_query@query-topology-unsupported.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#5723])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-4/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-dg2: [PASS][89] -> [DMESG-WARN][90] ([i915#14545])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg2-4/igt@i915_suspend@basic-s2idle-without-i915.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-8/igt@i915_suspend@basic-s2idle-without-i915.html
- shard-dg1: [PASS][91] -> [DMESG-WARN][92] ([i915#14545])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-16/igt@i915_suspend@basic-s2idle-without-i915.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-13/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][93] ([i915#16182] / [i915#4817])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk9/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@bad-pitch-63:
- shard-dg1: [PASS][94] -> [DMESG-WARN][95] ([i915#4391] / [i915#4423])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-14/igt@kms_addfb_basic@bad-pitch-63.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-16/igt@kms_addfb_basic@bad-pitch-63.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-dg1: NOTRUN -> [FAIL][96] ([i915#14888]) +1 other test fail
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-17/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][97] ([i915#14888]) +1 other test fail
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-dg1: [PASS][98] -> [ABORT][99] ([i915#16866] / [i915#16932])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-13/igt@kms_async_flips@async-flip-suspend-resume.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-15/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-b-hdmi-a-1:
- shard-dg1: NOTRUN -> [ABORT][100] ([i915#16866] / [i915#16932])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-15/igt@kms_async_flips@async-flip-suspend-resume@pipe-b-hdmi-a-1.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#9531])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk10: NOTRUN -> [SKIP][102] ([i915#1769])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][103] ([i915#1769])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#1769] / [i915#3555])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1:
- shard-tglu: [PASS][105] -> [ABORT][106] ([i915#16837] / [i915#16844] / [i915#16857]) +1 other test abort
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][107] +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#5286]) +6 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-4/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#5286]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#14544] / [i915#5286])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][113] +9 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-8/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#3638]) +4 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#3638]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-18/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#3828]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180:
- shard-mtlp: [PASS][117] -> [FAIL][118] ([i915#15733] / [i915#5138])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#3828])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5190]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#14544]) +8 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6095]) +34 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][124] +586 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-c-hdmi-a-2:
- shard-glk10: NOTRUN -> [SKIP][125] +119 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk10/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][126] +39 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#14544] / [i915#6095]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#10307] / [i915#10434] / [i915#6095])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#6095]) +94 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#12313])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#12313])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#12313])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#12313])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#12313])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#12805])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#6095]) +34 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#6095]) +8 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#14098] / [i915#6095]) +50 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][140] ([i915#15582]) +1 other test incomplete
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#6095]) +69 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#6095]) +212 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#6095]) +71 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [ABORT][144] ([i915#16866])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#3742])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3742])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-16/igt@kms_cdclk@plane-scaling.html
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#3742])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#13783]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#11151])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_chamelium_audio@dp-audio-after-suspend.html
* igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#16471])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-15/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#16471]) +2 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-8/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut3d-green-only:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#16471])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#14544] / [i915#7828])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-17/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +9 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +6 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-8/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#9979])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-9/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#15330])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-8/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#15330]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#15330])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-13/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#15330])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-8/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#15330])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-3/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#15865])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#15865]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#15865])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-1/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#15865]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#15865])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-14/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#15865])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-5/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#13049]) +4 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#3555]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-19/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#13049])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#13049]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#13049])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#13049])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-tglu: [PASS][176] -> [FAIL][177] ([i915#13566]) +1 other test fail
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-9/igt@kms_cursor_crc@cursor-random-64x21.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-10/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#3555]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [PASS][179] -> [FAIL][180] ([i915#13566]) +3 other tests fail
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#9809]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/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][183] ([i915#4103])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#13046] / [i915#5354]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-dg1: NOTRUN -> [SKIP][185] +38 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-12/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy:
- shard-dg1: [PASS][186] -> [FAIL][187] ([i915#15999])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-16/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-15/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#9067])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#9723])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#9723]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-17/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#9723])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#13691])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3804])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#1769] / [i915#3555] / [i915#3804])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#3804])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#3804])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#13748])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-8/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#16867])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_dp_linktrain_fallback@uhbr-to-hbr-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#16361]) +4 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_dsc@dsc-basic.html
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#16361]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-15/igt@kms_dsc@dsc-basic.html
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#16361]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#16361]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#14544] / [i915#16361])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-bigjoiner:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#16361]) +4 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-9/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#16680])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-8/igt@kms_fbcon_fbt@psr.html
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#16680])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@kms_fbcon_fbt@psr.html
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#16680])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-12/igt@kms_fbcon_fbt@psr.html
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#16680])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-10/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#16084])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#658])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@kms_feature_discovery@psr2.html
* igt@kms_feature_discovery@vrr:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#16600])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@kms_feature_discovery@vrr.html
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#16600])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-14/igt@kms_feature_discovery@vrr.html
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#16600])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-4/igt@kms_feature_discovery@vrr.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#9934]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-5/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#9934]) +4 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-17/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3637] / [i915#9934]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#3637] / [i915#9934]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#14544] / [i915#9934])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#9934])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][220] ([i915#12745] / [i915#4839])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk10/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk10: NOTRUN -> [INCOMPLETE][221] ([i915#12745])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk10/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#9934]) +8 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#3637] / [i915#9934]) +5 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][224] ([i915#12745] / [i915#4839])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][225] ([i915#12745])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: NOTRUN -> [INCOMPLETE][226] ([i915#16276] / [i915#6113]) +1 other test incomplete
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-mtlp: [PASS][227] -> [FAIL][228] ([i915#10826]) +1 other test fail
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-2/igt@kms_flip@modeset-vs-vblank-race.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-5/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-tglu: [PASS][229] -> [ABORT][230] ([i915#16876])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-7/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-7/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible@c-hdmi-a1:
- shard-tglu: [PASS][231] -> [ABORT][232] ([i915#16876] / [i915#16881])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-7/igt@kms_flip@modeset-vs-vblank-race-interruptible@c-hdmi-a1.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-7/igt@kms_flip@modeset-vs-vblank-race-interruptible@c-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#15643]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#15643]) +5 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#15643])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#15643] / [i915#5190])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#15643]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8813])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#8810] / [i915#8813])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile:
- shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#15643]) +2 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#1825]) +6 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#14544] / [i915#1825]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#15989]) +29 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#15990]) +6 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#15989]) +4 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#15989]) +24 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-fullscreen:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#15989]) +10 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#15991]) +11 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#15989]) +11 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-stridechange:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#15989]) +7 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-18/igt@kms_frontbuffer_tracking@fbchdr-stridechange.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#5439]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#5439]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-8/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#15991] / [i915#1825]) +6 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#15990] / [i915#8708]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#15990] / [i915#8708]) +4 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#15990] / [i915#8708])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][257] +48 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][258] +125 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#15102]) +17 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#15102]) +21 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#15990]) +18 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#14544] / [i915#15102]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move:
- shard-glk: [PASS][263] -> [SKIP][264] +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [PASS][265] -> [SKIP][266] ([i915#15989]) +7 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#4423])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-16/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#14544] / [i915#9766])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#9766])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#15104] / [i915#15990])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#15104] / [i915#15990])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#15104] / [i915#15990])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#15991] / [i915#5354]) +6 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#15102]) +53 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-10/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#15102]) +10 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-1/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#15102]) +47 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][277] +113 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#15991]) +10 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-3/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#15990]) +4 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-6/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#16518] / [i915#3555] / [i915#8228])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-3/igt@kms_hdr@invalid-hdr.html
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#14544] / [i915#16644] / [i915#3555] / [i915#8228])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_hdr@invalid-hdr.html
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8228])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-15/igt@kms_hdr@invalid-hdr.html
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#16644] / [i915#3555] / [i915#8228])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#15459])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_joiner@basic-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#15459])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-19/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#15458])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#6301])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#6301])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][291] ([i915#12756] / [i915#13409] / [i915#13476] / [i915#16789]) +1 other test incomplete
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pipe_stress@stress-xrgb8888-untiled:
- shard-glk: NOTRUN -> [DMESG-FAIL][292] ([i915#118])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk6/igt@kms_pipe_stress@stress-xrgb8888-untiled.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#14712]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#14712])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#14712])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#14712])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#14712])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-19/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#15709]) +7 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#15709]) +3 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#16386]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#15709]) +8 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#15709]) +6 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-16/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#15709]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#16386]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#15709]) +2 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#16386]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-15/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#16386]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-9/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#16112])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-1/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html
- shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#16112])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: [PASS][310] -> [INCOMPLETE][311] ([i915#14412]) +1 other test incomplete
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][312] ([i915#10647] / [i915#12169])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk3/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][313] ([i915#10647]) +1 other test fail
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk3/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#13958]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#13958])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-none@pipe-b-hdmi-a-1:
- shard-tglu: [PASS][316] -> [ABORT][317] ([i915#16881]) +1 other test abort
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-7/igt@kms_plane_multiple@tiling-none@pipe-b-hdmi-a-1.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-7/igt@kms_plane_multiple@tiling-none@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#6953])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#15329]) +3 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#15329]) +4 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#15329]) +9 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#12343] / [i915#5354]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-dpms-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][323] ([i915#16938])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk8/igt@kms_pm_dc@dc5-dpms-suspend-resume.html
* igt@kms_pm_dc@dc5-pageflip-negative:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#9685])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-3/igt@kms_pm_dc@dc5-pageflip-negative.html
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#9685])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_pm_dc@dc5-pageflip-negative.html
- shard-dg1: NOTRUN -> [SKIP][326] ([i915#9685])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-17/igt@kms_pm_dc@dc5-pageflip-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#15948])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-6/igt@kms_pm_dc@dc5-psr.html
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#15948])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][329] ([i915#15948])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-16/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#15948])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-9/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#15739])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: NOTRUN -> [SKIP][332] ([i915#15739])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][333] ([i915#8430])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-10/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#15073])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#15073])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#15073])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [PASS][337] -> [DMESG-WARN][338] ([i915#4423]) +1 other test dmesg-warn
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-15/igt@kms_pm_rpm@i2c.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-19/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][339] -> [SKIP][340] ([i915#15073])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][341] ([i915#15073])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][342] ([i915#6524])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#6524])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-10/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][344] ([i915#11520]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][345] ([i915#11520]) +8 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-snb6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#11520]) +4 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][347] ([i915#11520]) +9 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#11520] / [i915#14544])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
- shard-glk11: NOTRUN -> [SKIP][349] ([i915#11520])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][350] ([i915#11520]) +7 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#11520]) +3 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#11520]) +2 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-19/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#9683])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-5/igt@kms_psr2_su@page_flip-nv12.html
- shard-rkl: NOTRUN -> [SKIP][354] ([i915#9683])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][355] ([i915#9683])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-12/igt@kms_psr2_su@page_flip-nv12.html
- shard-tglu: NOTRUN -> [SKIP][356] ([i915#9683])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-4/igt@kms_psr2_su@page_flip-nv12.html
- shard-mtlp: NOTRUN -> [SKIP][357] ([i915#4348])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-basic:
- shard-mtlp: NOTRUN -> [SKIP][358] ([i915#9688]) +3 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-3/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#1072] / [i915#9732]) +19 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][360] ([i915#1072] / [i915#9732]) +5 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-8/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][361] ([i915#9732]) +17 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-6/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr-sprite-render:
- shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#9732]) +7 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@kms_psr@psr-sprite-render.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][364] ([i915#1072] / [i915#9732]) +10 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-16/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][365] ([i915#15949]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk10: NOTRUN -> [INCOMPLETE][366] ([i915#15500] / [i915#16184])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk: NOTRUN -> [INCOMPLETE][367] ([i915#15492] / [i915#16184])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk6/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][368] ([i915#5289]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#5289]) +1 other test skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create:
- shard-glk: NOTRUN -> [ABORT][370] ([i915#13179]) +1 other test abort
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk3/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-glk: NOTRUN -> [DMESG-FAIL][371] ([i915#13179])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk3/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][372] ([i915#3555] / [i915#8809])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-4/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-tglu: NOTRUN -> [SKIP][373] ([i915#3555]) +3 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-7/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@flip-basic:
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#15243] / [i915#3555])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-3/igt@kms_vrr@flip-basic.html
- shard-rkl: NOTRUN -> [SKIP][375] ([i915#15243] / [i915#3555]) +2 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_vrr@flip-basic.html
- shard-mtlp: NOTRUN -> [SKIP][376] ([i915#3555] / [i915#8808])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-8/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@max-min:
- shard-rkl: NOTRUN -> [SKIP][377] ([i915#9906])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg1: NOTRUN -> [SKIP][378] ([i915#9906])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-12/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][379] ([i915#9906])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][380] ([i915#8808] / [i915#9906])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#14121]) +1 other test skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-1/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg1: NOTRUN -> [SKIP][382] ([i915#14121]) +1 other test skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-14/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
- shard-mtlp: NOTRUN -> [SKIP][383] ([i915#14121]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_udl@share-import:
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#16420])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@prime_udl@share-import.html
- shard-dg1: NOTRUN -> [SKIP][385] ([i915#16420])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-14/igt@prime_udl@share-import.html
- shard-tglu: NOTRUN -> [SKIP][386] ([i915#16420])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-4/igt@prime_udl@share-import.html
* igt@prime_udl@share-import-addfb:
- shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#16420])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-1/igt@prime_udl@share-import-addfb.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][388] ([i915#3708] / [i915#4077]) +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-7/igt@prime_vgem@basic-gtt.html
- shard-dg2: NOTRUN -> [SKIP][389] ([i915#3708] / [i915#4077]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-7/igt@prime_vgem@basic-gtt.html
- shard-dg1: NOTRUN -> [SKIP][390] ([i915#3708] / [i915#4077]) +1 other test skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-19/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][391] ([i915#3291] / [i915#3708])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@prime_vgem@basic-write.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][392] ([i915#4818])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-5/igt@tools_test@sysfs_l3_parity.html
- shard-dg1: NOTRUN -> [SKIP][393] ([i915#4818])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-15/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][394] ([i915#4818])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-4/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_exec_big@single:
- shard-mtlp: [FAIL][395] ([i915#15871]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-5/igt@gem_exec_big@single.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-5/igt@gem_exec_big@single.html
* igt@gem_exec_suspend@basic-s3:
- shard-rkl: [INCOMPLETE][397] ([i915#13356]) -> [PASS][398] +1 other test pass
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@gem_exec_suspend@basic-s3.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@gem_exec_suspend@basic-s3.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-glk: [INCOMPLETE][399] ([i915#13356] / [i915#14586]) -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk3/igt@gem_workarounds@suspend-resume-fd.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk6/igt@gem_workarounds@suspend-resume-fd.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: [DMESG-WARN][401] ([i915#13029] / [i915#14545]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg2-8/igt@i915_module_load@reload-no-display.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-1/igt@i915_module_load@reload-no-display.html
- shard-dg1: [DMESG-WARN][403] ([i915#13029] / [i915#14545]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-19/igt@i915_module_load@reload-no-display.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-14/igt@i915_module_load@reload-no-display.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: [INCOMPLETE][405] ([i915#16182] / [i915#4817]) -> [PASS][406] +1 other test pass
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk6/igt@i915_suspend@debugfs-reader.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk3/igt@i915_suspend@debugfs-reader.html
* igt@kms_3d@basic:
- shard-mtlp: [SKIP][407] ([i915#15726]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-1/igt@kms_3d@basic.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-6/igt@kms_3d@basic.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg1: [DMESG-WARN][409] ([i915#4423]) -> [PASS][410] +2 other tests pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-16/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-13/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_color@deep-color:
- shard-rkl: [SKIP][411] ([i915#12655] / [i915#3555]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@kms_color@deep-color.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_color@deep-color.html
* igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d:
- shard-rkl: [ABORT][413] ([i915#16866]) -> [PASS][414] +1 other test pass
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-7/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [FAIL][415] ([i915#13566]) -> [PASS][416] +1 other test pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][417] ([i915#13566]) -> [PASS][418] +1 other test pass
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-8/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_edge_walk@256x256-top-edge:
- shard-dg1: [DMESG-WARN][419] -> [PASS][420]
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-12/igt@kms_cursor_edge_walk@256x256-top-edge.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-15/igt@kms_cursor_edge_walk@256x256-top-edge.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible:
- shard-tglu: [ABORT][421] ([i915#16876]) -> [PASS][422]
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-7/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-9/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible@c-hdmi-a1:
- shard-tglu: [ABORT][423] ([i915#16857] / [i915#16876]) -> [PASS][424]
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-7/igt@kms_flip@dpms-vs-vblank-race-interruptible@c-hdmi-a1.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-9/igt@kms_flip@dpms-vs-vblank-race-interruptible@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [INCOMPLETE][425] ([i915#16276] / [i915#6113]) -> [PASS][426]
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-rte:
- shard-rkl: [SKIP][427] ([i915#15989]) -> [PASS][428] +5 other tests pass
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt:
- shard-glk: [SKIP][429] -> [PASS][430] +1 other test pass
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-mtlp: [SKIP][431] ([i915#15725]) -> [PASS][432]
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane_lowres@tiling-none:
- shard-rkl: [ABORT][433] ([i915#16879]) -> [PASS][434] +1 other test pass
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-4/igt@kms_plane_lowres@tiling-none.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_plane_lowres@tiling-none.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][435] ([i915#15073]) -> [PASS][436]
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][437] ([i915#14544] / [i915#15073]) -> [PASS][438]
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][439] ([i915#15073]) -> [PASS][440]
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-dg1: [SKIP][441] ([i915#15073]) -> [PASS][442] +2 other tests pass
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][443] ([i915#4349]) -> [PASS][444] +1 other test pass
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-mtlp-6/igt@perf_pmu@busy-double-start@rcs0.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
#### Warnings ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: [SKIP][445] ([i915#11078] / [i915#14544]) -> [SKIP][446] ([i915#11078])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: [SKIP][447] ([i915#14544] / [i915#280]) -> [SKIP][448] ([i915#280])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@kms:
- shard-tglu: [ABORT][449] ([i915#16837]) -> [ABORT][450] ([i915#16837] / [i915#16881])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-6/igt@gem_eio@kms.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-9/igt@gem_eio@kms.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: [SKIP][451] ([i915#4525]) -> [SKIP][452] ([i915#14544] / [i915#4525])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: [SKIP][453] ([i915#14544] / [i915#3281]) -> [SKIP][454] ([i915#3281]) +4 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-rkl: [SKIP][455] ([i915#3281]) -> [SKIP][456] ([i915#14544] / [i915#3281]) +3 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_media_vme:
- shard-rkl: [SKIP][457] ([i915#14544] / [i915#284]) -> [SKIP][458] ([i915#284])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@gem_media_vme.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@gem_media_vme.html
* igt@gem_pread@snoop:
- shard-rkl: [SKIP][459] ([i915#14544] / [i915#3282]) -> [SKIP][460] ([i915#3282]) +1 other test skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@gem_pread@snoop.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@gem_pread@snoop.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: [SKIP][461] ([i915#3282]) -> [SKIP][462] ([i915#14544] / [i915#3282]) +4 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-4/igt@gem_readwrite@beyond-eob.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@gem_readwrite@beyond-eob.html
* igt@gem_tiled_pread_basic@basic:
- shard-rkl: [SKIP][463] ([i915#14544] / [i915#15656]) -> [SKIP][464] ([i915#15656])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: [SKIP][465] ([i915#3297]) -> [SKIP][466] ([i915#14544] / [i915#3297]) +2 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: [SKIP][467] ([i915#3282] / [i915#3297]) -> [SKIP][468] ([i915#14544] / [i915#3282] / [i915#3297])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-7/igt@gem_userptr_blits@forbidden-operations.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: [SKIP][469] ([i915#14544] / [i915#2527]) -> [SKIP][470] ([i915#2527]) +2 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@fault-injection:
- shard-tglu: [ABORT][471] ([i915#15342]) -> [ABORT][472] ([i915#15342] / [i915#15840])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-8/igt@i915_module_load@fault-injection.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-7/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: [SKIP][473] ([i915#15479]) -> [SKIP][474] ([i915#14544] / [i915#15479]) +4 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-5/igt@i915_module_load@fault-injection@__uc_init.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: [SKIP][475] ([i915#12454] / [i915#12712] / [i915#14544]) -> [SKIP][476] ([i915#12454] / [i915#12712])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1:
- shard-tglu: [ABORT][477] ([i915#16837] / [i915#16844] / [i915#16857]) -> [ABORT][478] ([i915#16837] / [i915#16844]) +1 other test abort
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][479] ([i915#5286]) -> [SKIP][480] ([i915#14544] / [i915#5286]) +2 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][481] ([i915#14544] / [i915#5286]) -> [SKIP][482] ([i915#5286]) +2 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-rkl: [SKIP][483] ([i915#14544] / [i915#3638]) -> [SKIP][484] ([i915#3638])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][485] ([i915#14544]) -> [SKIP][486] +29 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][487] ([i915#14544] / [i915#6095]) -> [SKIP][488] ([i915#6095]) +3 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][489] ([i915#14098] / [i915#6095]) -> [SKIP][490] ([i915#14098] / [i915#14544] / [i915#6095])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][491] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][492] ([i915#14098] / [i915#6095]) +7 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-rkl: [SKIP][493] ([i915#14098] / [i915#6095]) -> [ABORT][494] ([i915#16866])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: [SKIP][495] ([i915#3742]) -> [SKIP][496] ([i915#14544] / [i915#3742]) +1 other test skip
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-7/igt@kms_cdclk@mode-transition.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-rkl: [SKIP][497] ([i915#11151] / [i915#7828]) -> [SKIP][498] ([i915#11151] / [i915#14544] / [i915#7828])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-2/igt@kms_chamelium_edid@hdmi-mode-timings.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: [SKIP][499] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][500] ([i915#11151] / [i915#7828]) +1 other test skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-3/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: [SKIP][501] ([i915#15330] / [i915#3116]) -> [SKIP][502] ([i915#14544] / [i915#15330] / [i915#3116])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-rkl: [SKIP][503] ([i915#14544] / [i915#15865]) -> [SKIP][504] ([i915#15865])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_content_protection@lic-type-0.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][505] ([i915#15865]) -> [SKIP][506] ([i915#9433])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-16/igt@kms_content_protection@mei-interface.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: [SKIP][507] ([i915#13049] / [i915#14544]) -> [SKIP][508] ([i915#13049])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-rkl: [SKIP][509] ([i915#14544] / [i915#3555]) -> [SKIP][510] ([i915#3555]) +1 other test skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x32.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_dsc@dsc-basic-ultrajoiner:
- shard-rkl: [SKIP][511] ([i915#16361]) -> [SKIP][512] ([i915#14544] / [i915#16361]) +1 other test skip
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-7/igt@kms_dsc@dsc-basic-ultrajoiner.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_dsc@dsc-basic-ultrajoiner.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][513] ([i915#14544] / [i915#16361]) -> [SKIP][514] ([i915#16361]) +1 other test skip
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
- shard-dg1: [SKIP][515] ([i915#16361] / [i915#4423]) -> [SKIP][516] ([i915#16361])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-12/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-rkl: [SKIP][517] ([i915#9934]) -> [SKIP][518] ([i915#14544] / [i915#9934])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-rkl: [SKIP][519] ([i915#14544] / [i915#15643]) -> [SKIP][520] ([i915#15643])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-rkl: [SKIP][521] ([i915#15643]) -> [SKIP][522] ([i915#14544] / [i915#15643])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][523] -> [SKIP][524] ([i915#14544]) +26 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][525] ([i915#1825]) -> [SKIP][526] ([i915#14544] / [i915#1825])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][527] ([i915#14544] / [i915#15102]) -> [SKIP][528] ([i915#15102]) +10 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: [SKIP][529] ([i915#15102]) -> [SKIP][530] ([i915#14544] / [i915#15102]) +10 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-suspend:
- shard-glk: [SKIP][531] -> [INCOMPLETE][532] ([i915#16056] / [i915#16593])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-glk9/igt@kms_frontbuffer_tracking@hdr-suspend.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-glk8/igt@kms_frontbuffer_tracking@hdr-suspend.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][533] ([i915#15990] / [i915#4423] / [i915#8708]) -> [SKIP][534] ([i915#15990] / [i915#8708])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][535] ([i915#14544] / [i915#1825]) -> [SKIP][536] ([i915#1825])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-suspend:
- shard-dg1: [SKIP][537] ([i915#15102]) -> [SKIP][538] ([i915#15102] / [i915#4423]) +1 other test skip
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-16/igt@kms_frontbuffer_tracking@psrhdr-suspend.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-16/igt@kms_frontbuffer_tracking@psrhdr-suspend.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: [INCOMPLETE][539] ([i915#15436]) -> [SKIP][540] ([i915#16644] / [i915#3555] / [i915#8228])
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-rkl: [SKIP][541] ([i915#14544] / [i915#15709]) -> [SKIP][542] ([i915#15709]) +1 other test skip
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_pm_dc@dc5-psr-suspend-resume:
- shard-rkl: [SKIP][543] ([i915#14544] / [i915#16914]) -> [SKIP][544] ([i915#16914])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_pm_dc@dc5-psr-suspend-resume.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-8/igt@kms_pm_dc@dc5-psr-suspend-resume.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: [SKIP][545] ([i915#9340]) -> [SKIP][546] ([i915#3828])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-12/igt@kms_pm_lpsp@kms-lpsp.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [ABORT][547] ([i915#15132]) -> [INCOMPLETE][548] ([i915#14419])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-1/igt@kms_pm_rpm@system-suspend-modeset.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][549] ([i915#11520] / [i915#14544]) -> [SKIP][550] ([i915#11520]) +2 other tests skip
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][551] ([i915#11520]) -> [SKIP][552] ([i915#11520] / [i915#14544])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-3/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-rkl: [SKIP][553] ([i915#1072] / [i915#9732]) -> [SKIP][554] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-3/igt@kms_psr@psr-cursor-plane-move.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-cursor-render:
- shard-rkl: [SKIP][555] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][556] ([i915#1072] / [i915#9732]) +4 other tests skip
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-6/igt@kms_psr@psr-cursor-render.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-7/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-primary-render:
- shard-dg1: [SKIP][557] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][558] ([i915#1072] / [i915#9732])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-dg1-13/igt@kms_psr@psr2-primary-render.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-dg1-14/igt@kms_psr@psr2-primary-render.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-rkl: [SKIP][559] ([i915#3555]) -> [SKIP][560] ([i915#14544] / [i915#3555])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][561] ([i915#2433]) -> [SKIP][562] ([i915#14544] / [i915#2433])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19068/shard-rkl-8/igt@perf@unprivileged-single-ctx-counters.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[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#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[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#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#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[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#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
[i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[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#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#15999]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15999
[i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056
[i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079
[i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084
[i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109
[i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184
[i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276
[i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
[i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420
[i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466
[i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
[i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518
[i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593
[i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600
[i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644
[i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680
[i915#16789]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16789
[i915#16837]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16837
[i915#16844]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16844
[i915#16857]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16857
[i915#16866]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16866
[i915#16867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16867
[i915#16876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16876
[i915#16879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16879
[i915#16881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16881
[i915#16914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16914
[i915#16932]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16932
[i915#16938]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16938
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[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#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#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[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#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[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#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[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#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[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#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[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#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9079 -> IGTPW_15761
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_19068: 97649417ea562630ab357dbea25f153a654b61c6 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15761: 3b5b19092278c68e6ba8294c07dbb98a08324a1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9079: 9079
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15761/index.html
[-- Attachment #2: Type: text/html, Size: 187292 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.FULL: success for lib/xe: Use proper GT lookup in xe_gt_get_tile_id()
2026-08-31 20:23 [PATCH i-g-t] lib/xe: Use proper GT lookup in xe_gt_get_tile_id() Matt Roper
` (3 preceding siblings ...)
2026-09-02 8:42 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-09-02 8:45 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-09-02 8:45 UTC (permalink / raw)
To: Matt Roper; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 29156 bytes --]
== Series Details ==
Series: lib/xe: Use proper GT lookup in xe_gt_get_tile_id()
URL : https://patchwork.freedesktop.org/series/173091/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9079_FULL -> XEIGTPW_15761_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_15761_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotreplug-with-load:
- shard-bmg: [PASS][1] -> [ABORT][2] ([Intel XE#8007]) +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-3/igt@core_hotunplug@hotreplug-with-load.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-9/igt@core_hotunplug@hotreplug-with-load.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: [PASS][4] -> [FAIL][5] ([Intel XE#8628])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-lnl-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +7 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#610] / [Intel XE#7387])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@linear-tiling-1-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#367]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-target-3840x2160p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2652]) +8 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#3432])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +11 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-negative:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-8/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#7358])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-3/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2252]) +5 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-7/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2390] / [Intel XE#6974]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][16] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-8/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2320]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-10/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#8265]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#8680])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2373] / [Intel XE#7448])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-6/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2374] / [Intel XE#6128])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-4/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][23] -> [FAIL][24] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#4141]) +11 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7061] / [Intel XE#7356]) +4 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2311]) +50 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2313]) +48 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7399])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html
* igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7061]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-7/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-blt.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7283]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#8303]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-9/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2393])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-9/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#5020] / [Intel XE#7348])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-9/igt@kms_plane_multiple@tiling-y.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-framegap:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#8395] / [Intel XE#8396]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-framegap.html
* igt@kms_pm_dc@dc3co-vpb-framegap@psr2-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#8396]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-framegap@psr2-xrgb8888.html
* igt@kms_pm_rpm@package-g7:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#6814] / [Intel XE#7428])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-2/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-bmg: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#6819]) +1 other test incomplete
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-8/igt@kms_pm_rpm@universal-planes-dpms.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-3/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1489]) +6 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2387] / [Intel XE#7429])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-2/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-10/igt@kms_psr@psr2-no-drrs.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2330] / [Intel XE#5813]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1435] / [Intel XE#8695])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-3/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#6503]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-8/igt@kms_sharpness_filter@filter-basic.html
* igt@sriov_basic@pf-unbind-with-vf-probed:
- shard-bmg: NOTRUN -> [ABORT][49] ([Intel XE#8868])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-10/igt@sriov_basic@pf-unbind-with-vf-probed.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2322] / [Intel XE#7372]) +5 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#8374]) +11 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-6/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#8364]) +21 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-6/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_exec_reset@multi-queue-long-spin-many-queue-switch:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#8369]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-6/igt@xe_exec_reset@multi-queue-long-spin-many-queue-switch.html
* igt@xe_exec_threads@threads-hang-userptr-invalidate-race:
- shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#9096])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-7/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-lnl-2/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#8378]) +7 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race.html
* igt@xe_multigpu_svm@mgpu-atomic-op-basic:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#6964]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-4/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html
* igt@xe_page_reclaim@boundary-split:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7793]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-2/igt@xe_page_reclaim@boundary-split.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1420] / [Intel XE#7590])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-10/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-8/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#944]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-8/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-bmg: [PASS][62] -> [FAIL][63] ([Intel XE#7992]) +2 other tests fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-10/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: NOTRUN -> [FAIL][64] ([Intel XE#6569])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-7/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][65] -> [FAIL][66] ([Intel XE#6569])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-10/igt@xe_sriov_flr@flr-vfs-parallel.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-2/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [FAIL][67] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][68] +1 other test pass
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-10/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-lnl: [FAIL][69] ([Intel XE#7949]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-1/igt@kms_fbcon_fbt@psr-suspend.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-lnl-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@basic-flip-vs-wf_vblank@c-dp2:
- shard-bmg: [FAIL][71] ([Intel XE#3098]) -> [PASS][72] +1 other test pass
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-8/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp2.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-10/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][73] ([Intel XE#301]) -> [PASS][74] +1 other test pass
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [ABORT][75] ([Intel XE#9093]) -> [PASS][76] +1 other test pass
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: [FAIL][77] ([Intel XE#7992]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-10/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][79] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-eocheck:
- shard-bmg: [INCOMPLETE][81] ([Intel XE#8159]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-10/igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-eocheck.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-mmap-remap-ro-eocheck.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-bmg: [ABORT][83] ([Intel XE#9101]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-5/igt@xe_pm@s4-vm-bind-userptr.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-10/igt@xe_pm@s4-vm-bind-userptr.html
#### Warnings ####
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][85] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][86] ([Intel XE#2509] / [Intel XE#7437])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [ABORT][87] ([Intel XE#8591] / [Intel XE#8963]) -> [DMESG-WARN][88] ([Intel XE#8963])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9079/shard-bmg-3/igt@xe_wedged@basic-wedged.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/shard-bmg-5/igt@xe_wedged@basic-wedged.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#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[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#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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[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#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[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#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[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#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[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#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
[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#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7949]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7949
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395
[Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396
[Intel XE#8591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8591
[Intel XE#8628]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8628
[Intel XE#8680]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8680
[Intel XE#8695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8695
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#8868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8868
[Intel XE#8963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8963
[Intel XE#9093]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9093
[Intel XE#9096]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9096
[Intel XE#9101]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/9101
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_9079 -> IGTPW_15761
* Linux: xe-5668-b8f17b16c0f8638b9df4f090511e3ae97210eb77 -> xe-5670-97649417ea562630ab357dbea25f153a654b61c6
IGTPW_15761: 3b5b19092278c68e6ba8294c07dbb98a08324a1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9079: 9079
xe-5668-b8f17b16c0f8638b9df4f090511e3ae97210eb77: b8f17b16c0f8638b9df4f090511e3ae97210eb77
xe-5670-97649417ea562630ab357dbea25f153a654b61c6: 97649417ea562630ab357dbea25f153a654b61c6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15761/index.html
[-- Attachment #2: Type: text/html, Size: 31587 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-09-02 8:45 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-31 20:23 [PATCH i-g-t] lib/xe: Use proper GT lookup in xe_gt_get_tile_id() Matt Roper
2026-09-01 8:20 ` Dnyaneshwar Bhadane
2026-09-01 20:57 ` ✓ i915.CI.BAT: success for " Patchwork
2026-09-01 21:07 ` ✓ Xe.CI.BAT: " Patchwork
2026-09-02 8:42 ` ✗ i915.CI.Full: failure " Patchwork
2026-09-02 8:45 ` ✓ Xe.CI.FULL: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox