* [PATCH i-g-t] tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms
@ 2026-04-14 10:10 Jason-JH Lin
2026-04-14 10:44 ` Jani Nikula
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Jason-JH Lin @ 2026-04-14 10:10 UTC (permalink / raw)
To: igt-dev, Karthik B S, Swati Sharma, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Fei Shao
Cc: Jani, Jason-JH Lin, Paul-PL Chen, Nancy Lin, Singo Chang,
Gil Dekel, Yacoub, Project_Global_Chrome_Upstream_Group
The clock-too-high subtest was being skipped on non-Intel platforms
because igt_get_max_dotclock() returns 0 when reading from
Intel-specific debugfs fails.
This change allows the test to run on all platforms by:
- Using a clearly invalid clock value (10 GHz) when max_dotclock is
unavailable, which any reasonable driver should reject
- Restricting bigjoiner/ultrajoiner logic to Intel devices only
This prevents the test from being marked as IGNORED/SKIP on non-Intel
platforms while maintaining the original test intent of verifying that
drivers properly reject modes with excessively high clock rates.
Tested on MTK platforms where the test now properly executes and
verifies invalid clock validation.
Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
---
tests/kms_invalid_mode.c | 38 +++++++++++++++++++++++---------------
1 file changed, 23 insertions(+), 15 deletions(-)
diff --git a/tests/kms_invalid_mode.c b/tests/kms_invalid_mode.c
index 5edffb649ef4..18d79e59c736 100644
--- a/tests/kms_invalid_mode.c
+++ b/tests/kms_invalid_mode.c
@@ -126,7 +126,13 @@ adjust_mode_clock_too_high(data_t *data, drmModeModeInfoPtr mode)
{
int max_dotclock = data->max_dotclock;
- igt_require(max_dotclock != 0);
+ /*
+ * If max_dotclock is unavailable (e.g., non-Intel platforms),
+ * use an obviously invalid value that any driver should reject.
+ * 10 GHz is well beyond any reasonable hardware capability.
+ */
+ if (max_dotclock == 0)
+ max_dotclock = 10000000; /* 10 GHz in kHz */
/*
* FIXME When we have a fixed mode, the kernel will ignore
@@ -139,21 +145,23 @@ adjust_mode_clock_too_high(data_t *data, drmModeModeInfoPtr mode)
if (has_scaling_mode_prop(data))
return false;
- /*
- * Newer platforms can support modes higher than the maximum dot clock
- * by using pipe joiner, so set the mode clock twice that of maximum
- * dot clock;
- */
- if (can_bigjoiner(data)) {
- igt_info("Platform supports bigjoiner with %s\n",
- data->output->name);
- max_dotclock *= 2;
- }
+ if (is_intel_device(data->drm_fd)) {
+ /*
+ * Newer platforms can support modes higher than the maximum dot clock
+ * by using pipe joiner, so set the mode clock twice that of maximum
+ * dot clock;
+ */
+ if (can_bigjoiner(data)) {
+ igt_info("Platform supports bigjoiner with %s\n",
+ data->output->name);
+ max_dotclock *= 2;
+ }
- if (can_ultrajoiner(data)) {
- igt_info("Platform supports ultrajoiner with %s\n",
- data->output->name);
- max_dotclock *= 4;
+ if (can_ultrajoiner(data)) {
+ igt_info("Platform supports ultrajoiner with %s\n",
+ data->output->name);
+ max_dotclock *= 4;
+ }
}
mode->clock = max_dotclock + 1;
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t] tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms
2026-04-14 10:10 [PATCH i-g-t] tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms Jason-JH Lin
@ 2026-04-14 10:44 ` Jani Nikula
2026-04-15 1:26 ` Jason-JH Lin (林睿祥)
2026-04-14 13:11 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 7+ messages in thread
From: Jani Nikula @ 2026-04-14 10:44 UTC (permalink / raw)
To: Jason-JH Lin, igt-dev, Karthik B S, Swati Sharma, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Fei Shao
Cc: Jason-JH Lin, Paul-PL Chen, Nancy Lin, Singo Chang, Gil Dekel,
Yacoub, Project_Global_Chrome_Upstream_Group
On Tue, 14 Apr 2026, Jason-JH Lin <jason-jh.lin@mediatek.com> wrote:
> The clock-too-high subtest was being skipped on non-Intel platforms
> because igt_get_max_dotclock() returns 0 when reading from
> Intel-specific debugfs fails.
>
> This change allows the test to run on all platforms by:
> - Using a clearly invalid clock value (10 GHz) when max_dotclock is
> unavailable, which any reasonable driver should reject
> - Restricting bigjoiner/ultrajoiner logic to Intel devices only
>
> This prevents the test from being marked as IGNORED/SKIP on non-Intel
> platforms while maintaining the original test intent of verifying that
> drivers properly reject modes with excessively high clock rates.
>
> Tested on MTK platforms where the test now properly executes and
> verifies invalid clock validation.
I think overall we'll need a framework to ask platform/device specific
things instead of portraying the services as generic, like
igt_get_max_dotclock().
>
> Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> ---
> tests/kms_invalid_mode.c | 38 +++++++++++++++++++++++---------------
> 1 file changed, 23 insertions(+), 15 deletions(-)
>
> diff --git a/tests/kms_invalid_mode.c b/tests/kms_invalid_mode.c
> index 5edffb649ef4..18d79e59c736 100644
> --- a/tests/kms_invalid_mode.c
> +++ b/tests/kms_invalid_mode.c
> @@ -126,7 +126,13 @@ adjust_mode_clock_too_high(data_t *data, drmModeModeInfoPtr mode)
> {
> int max_dotclock = data->max_dotclock;
>
> - igt_require(max_dotclock != 0);
> + /*
> + * If max_dotclock is unavailable (e.g., non-Intel platforms),
> + * use an obviously invalid value that any driver should reject.
> + * 10 GHz is well beyond any reasonable hardware capability.
> + */
> + if (max_dotclock == 0)
> + max_dotclock = 10000000; /* 10 GHz in kHz */
Not a fan of using magic numbers like this.
Perhaps
if (!max_dotclock) {
mode->clock = -1;
return;
}
would be less magic?
>
> /*
> * FIXME When we have a fixed mode, the kernel will ignore
> @@ -139,21 +145,23 @@ adjust_mode_clock_too_high(data_t *data, drmModeModeInfoPtr mode)
> if (has_scaling_mode_prop(data))
> return false;
>
> - /*
> - * Newer platforms can support modes higher than the maximum dot clock
> - * by using pipe joiner, so set the mode clock twice that of maximum
> - * dot clock;
> - */
> - if (can_bigjoiner(data)) {
> - igt_info("Platform supports bigjoiner with %s\n",
> - data->output->name);
> - max_dotclock *= 2;
> - }
> + if (is_intel_device(data->drm_fd)) {
> + /*
> + * Newer platforms can support modes higher than the maximum dot clock
> + * by using pipe joiner, so set the mode clock twice that of maximum
> + * dot clock;
> + */
> + if (can_bigjoiner(data)) {
> + igt_info("Platform supports bigjoiner with %s\n",
> + data->output->name);
> + max_dotclock *= 2;
> + }
>
> - if (can_ultrajoiner(data)) {
> - igt_info("Platform supports ultrajoiner with %s\n",
> - data->output->name);
> - max_dotclock *= 4;
> + if (can_ultrajoiner(data)) {
> + igt_info("Platform supports ultrajoiner with %s\n",
> + data->output->name);
> + max_dotclock *= 4;
> + }
> }
>
> mode->clock = max_dotclock + 1;
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms
2026-04-14 10:10 [PATCH i-g-t] tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms Jason-JH Lin
2026-04-14 10:44 ` Jani Nikula
@ 2026-04-14 13:11 ` Patchwork
2026-04-14 13:34 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-14 13:11 UTC (permalink / raw)
To: Jason-JH Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6246 bytes --]
== Series Details ==
Series: tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms
URL : https://patchwork.freedesktop.org/series/164848/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8855_BAT -> XEIGTPW_14981_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 13)
------------------------------
Additional (2): bat-adlp-vm bat-ptl-vm
Known issues
------------
Here are the changes found in XEIGTPW_14981_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-beng-small-cm:
- bat-ptl-vm: NOTRUN -> [SKIP][1] ([Intel XE#5764]) +10 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_evict@evict-small-external-cm:
- bat-adlp-vm: NOTRUN -> [SKIP][2] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-adlp-vm/igt@xe_evict@evict-small-external-cm.html
* igt@xe_evict_ccs@evict-overcommit-simple:
- bat-adlp-vm: NOTRUN -> [SKIP][3] ([Intel XE#5563] / [Intel XE#688])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-adlp-vm/igt@xe_evict_ccs@evict-overcommit-simple.html
* igt@xe_exec_balancer@twice-parallel-basic:
- bat-ptl-vm: NOTRUN -> [SKIP][4] ([Intel XE#7482]) +17 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-ptl-vm/igt@xe_exec_balancer@twice-parallel-basic.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-imm:
- bat-adlp-vm: NOTRUN -> [SKIP][5] ([Intel XE#288] / [Intel XE#5561]) +32 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-adlp-vm/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-vm: NOTRUN -> [SKIP][6] ([Intel XE#2229] / [Intel XE#5488])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-adlp-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- bat-ptl-vm: NOTRUN -> [SKIP][7] ([Intel XE#5775])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-ptl-vm: NOTRUN -> [SKIP][8] ([Intel XE#5776])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-ptl-vm/igt@xe_mmap@vram.html
- bat-adlp-vm: NOTRUN -> [SKIP][9] ([Intel XE#1008] / [Intel XE#5591])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-adlp-vm/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xe2:
- bat-adlp-vm: NOTRUN -> [SKIP][10] ([Intel XE#977])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-adlp-vm/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-ptl-vm: NOTRUN -> [SKIP][11] ([Intel XE#5777] / [Intel XE#7590])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html
- bat-adlp-vm: NOTRUN -> [SKIP][12] ([Intel XE#2838] / [Intel XE#979])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-adlp-vm/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-ptl-vm: NOTRUN -> [SKIP][13] ([Intel XE#5771] / [Intel XE#7590])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-ptl-vm: NOTRUN -> [SKIP][14] ([Intel XE#5780] / [Intel XE#7590])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html
- bat-adlp-vm: NOTRUN -> [SKIP][15] ([Intel XE#979])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/bat-adlp-vm/igt@xe_pat@pat-index-xelpg.html
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591
[Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
[Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
[Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
[Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
[Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
[Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8855 -> IGTPW_14981
* Linux: xe-4897-c8bad7becc008716c8475847328c549e178c813c -> xe-4900-4e3f5ea9aacc227f8dc56389af013d1a15ccb323
IGTPW_14981: 93e0ffd1a11399b14830c29134e24539fbf0742f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8855: 3c05ee1076cee44a2bc3c176ec21e651f6eca600 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4897-c8bad7becc008716c8475847328c549e178c813c: c8bad7becc008716c8475847328c549e178c813c
xe-4900-4e3f5ea9aacc227f8dc56389af013d1a15ccb323: 4e3f5ea9aacc227f8dc56389af013d1a15ccb323
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/index.html
[-- Attachment #2: Type: text/html, Size: 7295 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms
2026-04-14 10:10 [PATCH i-g-t] tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms Jason-JH Lin
2026-04-14 10:44 ` Jani Nikula
2026-04-14 13:11 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-04-14 13:34 ` Patchwork
2026-04-14 14:23 ` ✓ Xe.CI.FULL: " Patchwork
2026-04-14 20:58 ` ✓ i915.CI.Full: " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-14 13:34 UTC (permalink / raw)
To: Jason-JH Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3338 bytes --]
== Series Details ==
Series: tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms
URL : https://patchwork.freedesktop.org/series/164848/
State : success
== Summary ==
CI Bug Log - changes from IGT_8855 -> IGTPW_14981
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): bat-dg2-13 bat-atsm-1 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14981 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-glk-j4005: NOTRUN -> [SKIP][1] ([i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-glk-j4005: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8855/bat-dg2-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8855/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
* igt@kms_psr@psr-primary-page-flip:
- fi-glk-j4005: NOTRUN -> [SKIP][7] +12 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [DMESG-FAIL][8] ([i915#12061]) -> [PASS][9] +1 other test pass
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8855/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8855 -> IGTPW_14981
* Linux: CI_DRM_18326 -> CI_DRM_18329
CI-20190529: 20190529
CI_DRM_18326: c8bad7becc008716c8475847328c549e178c813c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18329: 4e3f5ea9aacc227f8dc56389af013d1a15ccb323 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14981: 93e0ffd1a11399b14830c29134e24539fbf0742f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8855: 3c05ee1076cee44a2bc3c176ec21e651f6eca600 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/index.html
[-- Attachment #2: Type: text/html, Size: 4243 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.FULL: success for tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms
2026-04-14 10:10 [PATCH i-g-t] tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms Jason-JH Lin
` (2 preceding siblings ...)
2026-04-14 13:34 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-04-14 14:23 ` Patchwork
2026-04-14 20:58 ` ✓ i915.CI.Full: " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-14 14:23 UTC (permalink / raw)
To: Jason-JH Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 18090 bytes --]
== Series Details ==
Series: tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms
URL : https://patchwork.freedesktop.org/series/164848/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8855_FULL -> XEIGTPW_14981_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14981_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2] ([Intel XE#6819]) +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8855/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-2/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#7059] / [Intel XE#7085])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#7621]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#367] / [Intel XE#7354])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +4 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#3432]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2252]) +4 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-5/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#6974])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-10/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][12] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#7642])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-10/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][14] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2320]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#4141]) +5 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2311]) +9 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2313]) +9 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2350] / [Intel XE#7503])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7283])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-10/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#5021] / [Intel XE#7377])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][25] -> [FAIL][26] ([Intel XE#7340])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8855/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#1489]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-7/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2387] / [Intel XE#7429])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-9/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2413])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1499]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-1/igt@kms_vrr@flip-basic.html
* igt@xe_eudebug@basic-vm-access-faultable:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7636]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-4/igt@xe_eudebug@basic-vm-access-faultable.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-rebind-imm:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7136]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-5/igt@xe_exec_fault_mode@once-multi-queue-rebind-imm.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6874]) +11 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-9/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7138]) +4 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-atomic-op-basic:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#6964]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-10/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#1420] / [Intel XE#7590])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-7/igt@xe_pat@pat-index-xehpc.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-7/igt@xe_peer2peer@write.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#4733] / [Intel XE#7417])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#944]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-4/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [PASS][42] -> [FAIL][43] ([Intel XE#6569])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8855/shard-bmg-6/igt@xe_sriov_flr@flr-each-isolation.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-10/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#6569])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-bmg: [PASS][45] -> [FAIL][46] ([Intel XE#5937]) +1 other test fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8855/shard-bmg-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-7/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][47] ([Intel XE#7571]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8855/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [FAIL][49] ([Intel XE#6569]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8855/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/shard-bmg-9/igt@xe_sriov_flr@flr-twice.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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8855 -> IGTPW_14981
* Linux: xe-4897-c8bad7becc008716c8475847328c549e178c813c -> xe-4900-4e3f5ea9aacc227f8dc56389af013d1a15ccb323
IGTPW_14981: 93e0ffd1a11399b14830c29134e24539fbf0742f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8855: 3c05ee1076cee44a2bc3c176ec21e651f6eca600 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4897-c8bad7becc008716c8475847328c549e178c813c: c8bad7becc008716c8475847328c549e178c813c
xe-4900-4e3f5ea9aacc227f8dc56389af013d1a15ccb323: 4e3f5ea9aacc227f8dc56389af013d1a15ccb323
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14981/index.html
[-- Attachment #2: Type: text/html, Size: 19664 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.Full: success for tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms
2026-04-14 10:10 [PATCH i-g-t] tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms Jason-JH Lin
` (3 preceding siblings ...)
2026-04-14 14:23 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-04-14 20:58 ` Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-14 20:58 UTC (permalink / raw)
To: Jason-JH Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 128066 bytes --]
== Series Details ==
Series: tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms
URL : https://patchwork.freedesktop.org/series/164848/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18329_full -> IGTPW_14981_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_14981_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#8411]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-15/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu-1: NOTRUN -> [SKIP][3] ([i915#11078])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_basic@multigpu-create-close:
- shard-tglu: NOTRUN -> [SKIP][4] ([i915#7697])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-4/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#9323])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-9/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-19/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#13008])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-4/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][11] -> [INCOMPLETE][12] ([i915#13356])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#8562])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#8555])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#280])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-13/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#280])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-2/igt@gem_ctx_sseu@invalid-args.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#280]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-1/igt@gem_ctx_sseu@mmap-args.html
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#280]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#4771])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-17/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#4812])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-4/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#4525]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-2/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#4525])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_balancer@sliced:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#4812]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-18/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][25] ([i915#6334]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk4/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#3539])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-19/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-7/igt@gem_exec_flush@basic-wb-rw-default.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-13/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3281]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3281]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-8/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3281]) +8 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-14/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +12 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4537] / [i915#4812])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s0:
- shard-rkl: [PASS][36] -> [ABORT][37] ([i915#15131]) +1 other test abort
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-2/igt@gem_exec_suspend@basic-s0.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-1/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][38] ([i915#13196] / [i915#13356]) +1 other test incomplete
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk1/igt@gem_exec_suspend@basic-s3.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4860])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4860])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#2190])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][43] ([i915#2190])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#4613])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][45] ([i915#4613]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk9/igt@gem_lmem_swapping@massive-random.html
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-4/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#4613]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-9/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3282]) +6 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-18/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +7 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-4/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@coherency:
- shard-glk11: NOTRUN -> [SKIP][51] +48 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk11/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4077]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-1/igt@gem_mmap_gtt@medium-copy.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4083])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-6/igt@gem_mmap_wc@copy.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-8/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4083]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-14/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#14544] / [i915#3282])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3282]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-1/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3282]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-8/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][59] ([i915#14702] / [i915#2658])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk4/igt@gem_pwrite@basic-exhaustion.html
- shard-tglu-1: NOTRUN -> [WARN][60] ([i915#2658])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html
- shard-snb: NOTRUN -> [WARN][61] ([i915#2658])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-snb7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-7/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-14/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#5190] / [i915#8428]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-8/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-4/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4079])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4079])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-16/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4885])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-16/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@access-control:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3297])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#3297]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#14544] / [i915#3297] / [i915#3323])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282] / [i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-4/igt@gem_userptr_blits@forbidden-operations.html
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282] / [i915#3297])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#3297])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][76] ([i915#13356]) +2 other tests incomplete
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk3/igt@gem_workarounds@suspend-resume-context.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [PASS][77] -> [ABORT][78] ([i915#15152])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-1/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#2856]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-2/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@shadow-peek:
- shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#2527] / [i915#2856]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-10/igt@gen9_exec_parse@unaligned-jump.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-5/igt@gen9_exec_parse@valid-registers.html
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-7/igt@gen9_exec_parse@valid-registers.html
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#2527]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-17/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@busy-check-all:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#11527]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-16/igt@i915_drm_fdinfo@busy-check-all.html
* igt@i915_drm_fdinfo@busy@rcs0:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#14073]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-12/igt@i915_drm_fdinfo@busy@rcs0.html
* igt@i915_drm_fdinfo@most-busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#14073]) +7 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@virtual-busy-hang-all:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#14118])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-7/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk11: NOTRUN -> [ABORT][89] ([i915#15342]) +1 other test abort
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk11/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#6412])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@i915_module_load@resize-bar.html
- shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#6412])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#8399])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][93] -> [INCOMPLETE][94] ([i915#13356] / [i915#13820]) +1 other test incomplete
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#14498])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle.html
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#14498])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@reset:
- shard-mtlp: [PASS][97] -> [FAIL][98] ([i915#15365])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-mtlp-7/igt@i915_pm_rps@reset.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-4/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#11681]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-8/igt@i915_pm_rps@thresholds.html
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#11681]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-16/igt@i915_pm_rps@thresholds.html
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#11681]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-6/igt@i915_pm_rps@thresholds.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#5723])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-4/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-dg2: [PASS][103] -> [ABORT][104] ([i915#15131])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg2-4/igt@i915_suspend@basic-s3-without-i915.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-10/igt@i915_suspend@basic-s3-without-i915.html
- shard-tglu-1: NOTRUN -> [INCOMPLETE][105] ([i915#4817] / [i915#7443])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: [PASS][106] -> [INCOMPLETE][107] ([i915#4817]) +1 other test incomplete
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-glk6/igt@i915_suspend@fence-restore-tiled2untiled.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk2/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: NOTRUN -> [INCOMPLETE][108] ([i915#4817])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4212])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-16/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#12454] / [i915#12712])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#12454] / [i915#12712])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-9/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#12454] / [i915#12712])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#9531])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#9531])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-14/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][116] ([i915#1769])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#5286]) +5 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#5286])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#3638]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-15/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#14544] / [i915#3638]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#3828])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#3828])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][126] +10 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#5190])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +6 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#14544]) +5 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#6095]) +70 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#14098] / [i915#6095]) +48 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-glk10: NOTRUN -> [SKIP][133] +195 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk10/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#6095]) +65 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#6095]) +49 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#6095]) +24 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#6095]) +59 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#6095]) +209 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-15/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +24 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#12313])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-10/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#14544] / [i915#6095]) +7 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#3742])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#13781]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_chamelium_frames@hdmi-frame-dump.html
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-14/igt@kms_chamelium_frames@hdmi-frame-dump.html
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +5 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-7/igt@kms_chamelium_frames@hdmi-frame-dump.html
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-8/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#15865]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-7/igt@kms_content_protection@mei-interface.html
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#15865]) +4 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_content_protection@mei-interface.html
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#15865])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#15865])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-16/igt@kms_content_protection@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#15865]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-7/igt@kms_content_protection@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#15865])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-3/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3555]) +4 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#3555]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#8814]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#13049])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3555]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-8/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#3555])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][165] ([i915#13566]) +1 other test fail
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][166] ([i915#13566]) +3 other tests fail
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#13049])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][168] -> [FAIL][169] ([i915#13566]) +1 other test fail
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
- shard-tglu: [PASS][170] -> [FAIL][171] ([i915#13566]) +1 other test fail
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#4103] / [i915#4213])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#4103]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#13046] / [i915#5354]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
- shard-rkl: NOTRUN -> [SKIP][175] +12 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#13691])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#13691])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-12/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#8812])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_dsc@dsc-basic.html
- shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3840])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#3840])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-7/igt@kms_dsc@dsc-with-formats.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-19/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#1839])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#658])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#9934]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-18/igt@kms_flip@2x-dpms-vs-vblank-race.html
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#3637] / [i915#9934]) +5 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-5/igt@kms_flip@2x-dpms-vs-vblank-race.html
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3637] / [i915#9934]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-2/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][190] -> [FAIL][191] ([i915#13027]) +1 other test fail
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#9934]) +6 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#9934]) +10 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3637] / [i915#9934]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk11: NOTRUN -> [INCOMPLETE][195] ([i915#12745] / [i915#4839])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk11: NOTRUN -> [INCOMPLETE][196] ([i915#12745])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#15643]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-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-upscaling:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#15643]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#15643]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#15643])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#15643] / [i915#5190]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#15643]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#8708]) +11 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#8708]) +13 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#5354]) +17 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#14544] / [i915#1825]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#15102]) +5 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][208] +111 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-snb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#15104]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#15102] / [i915#3458]) +5 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-tglu-1: NOTRUN -> [SKIP][211] +19 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][212] +22 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][213] +32 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#1825]) +4 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#8708]) +3 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#15102] / [i915#3458]) +6 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#5439])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#9766])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#9766])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#15102]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#14544] / [i915#15102]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#15104]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#15104])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#15102]) +3 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#15102] / [i915#3023]) +18 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#1825]) +44 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#15102]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#15102]) +15 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8228]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-10/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8228]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#15459])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#15458])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#15459])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#15459])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#15638] / [i915#15722])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#15638] / [i915#15722])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#6301])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][239] +6 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-4/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][240] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#14712])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-2/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#15709])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#15709]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#15608]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-4/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#15709]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#14544] / [i915#15709])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#15709]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/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-modifier@pipe-a-plane-7:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#15608]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-19/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#15608]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#15709]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-19/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-dg1: [PASS][251] -> [DMESG-WARN][252] ([i915#4423])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg1-13/igt@kms_plane@plane-panning-bottom-right-suspend.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-15/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][253] ([i915#10647] / [i915#12177])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][254] ([i915#10647] / [i915#12169])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk6/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][255] ([i915#10647]) +3 other tests fail
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#13958])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-13/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#14259])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-8/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#15329]) +4 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#5354]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-15/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#12343])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#9812]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-7/igt@kms_pm_backlight@fade.html
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#5354])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#3828])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#15739])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][265] -> [SKIP][266] ([i915#9340])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@cursor:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#4077]) +7 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-13/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][268] -> [SKIP][269] ([i915#15073]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#15073])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][271] -> [SKIP][272] ([i915#15073])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#15073])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#15073]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#15403])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: NOTRUN -> [INCOMPLETE][276] ([i915#14419])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-5/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#6524])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_prime@d3hot.html
- shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#6524])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-glk11: NOTRUN -> [SKIP][279] ([i915#11520])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk11/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#11520]) +5 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][281] ([i915#11520]) +5 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#11520]) +10 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#9808]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#12316]) +3 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][285] ([i915#11520]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-snb4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#11520]) +7 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-17/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#11520]) +3 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#11520]) +5 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][289] ([i915#11520]) +4 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#9683])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#1072] / [i915#9732]) +25 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][292] +399 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk5/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@fbc-psr2-suspend@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#9688]) +6 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-2/igt@kms_psr@fbc-psr2-suspend@edp-1.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#9732]) +5 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@pr-primary-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#1072] / [i915#9732]) +11 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-13/igt@kms_psr@pr-primary-mmap-gtt.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#1072] / [i915#9732]) +11 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][297] ([i915#9732]) +15 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-10/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk11: NOTRUN -> [INCOMPLETE][299] ([i915#15492])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk11/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][300] ([i915#15500])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk4/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#5289])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#5289])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#14544] / [i915#5289])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][304] ([i915#3555]) +3 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk: NOTRUN -> [ABORT][305] ([i915#13179]) +1 other test abort
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk4/igt@kms_selftest@drm_framebuffer.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#8623])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#8623])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][308] ([i915#12276]) +1 other test incomplete
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-glk8/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][309] -> [INCOMPLETE][310] ([i915#12276]) +1 other test incomplete
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-7/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flipline:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#15243] / [i915#3555])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_vrr@flipline.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#9906])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-17/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#9906])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#9906])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#2433]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-18/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-tglu: NOTRUN -> [SKIP][316] ([i915#8516])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-7/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#3708] / [i915#4077])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#3291] / [i915#3708])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#3708])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-4/igt@prime_vgem@fence-flip-hang.html
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#3708])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf@vf-1:
- shard-tglu-1: NOTRUN -> [FAIL][321] ([i915#12910]) +9 other tests fail
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#9917])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-8/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#9917])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-13/igt@sriov_basic@enable-vfs-bind-unbind-each.html
#### Possible fixes ####
* igt@gem_workarounds@suspend-resume:
- shard-dg2: [ABORT][324] ([i915#15152]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg2-10/igt@gem_workarounds@suspend-resume.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-4/igt@gem_workarounds@suspend-resume.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [FAIL][326] ([i915#12964]) -> [PASS][327] +1 other test pass
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-10/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: [INCOMPLETE][328] ([i915#13356]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@i915_pm_rpm@system-suspend-execbuf.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][330] ([i915#13729] / [i915#13821]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-snb6/igt@i915_pm_rps@reset.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-snb6/igt@i915_pm_rps@reset.html
* igt@i915_suspend@sysfs-reader:
- shard-rkl: [INCOMPLETE][332] ([i915#4817]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-4/igt@i915_suspend@sysfs-reader.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@i915_suspend@sysfs-reader.html
* igt@kms_addfb_basic@bad-pitch-128:
- shard-dg1: [DMESG-WARN][334] ([i915#4423]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg1-13/igt@kms_addfb_basic@bad-pitch-128.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-13/igt@kms_addfb_basic@bad-pitch-128.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [FAIL][336] ([i915#5956]) -> [PASS][337] +1 other test pass
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [FAIL][338] ([i915#13566]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-8/igt@kms_cursor_crc@cursor-random-128x42.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][340] ([i915#13566]) -> [PASS][341] +3 other tests pass
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-tglu-9/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-tglu-10/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-rkl: [INCOMPLETE][342] ([i915#6113]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-mtlp: [SKIP][344] ([i915#15672]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-6/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_hdmi_inject@inject-audio:
- shard-mtlp: [SKIP][346] ([i915#15725]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-mtlp-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][348] ([i915#15073]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg1-16/igt@kms_pm_rpm@dpms-lpsp.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][350] ([i915#15073]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [SKIP][352] ([i915#15073]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [ABORT][354] ([i915#15132]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-1/igt@kms_pm_rpm@system-suspend-idle.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-7/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [INCOMPLETE][356] ([i915#12276]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@kms_vblank@ts-continuation-dpms-suspend.html
#### Warnings ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: [SKIP][358] ([i915#11078] / [i915#14544]) -> [SKIP][359] ([i915#11078])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy:
- shard-rkl: [SKIP][360] ([i915#15678]) -> [SKIP][361] ([i915#14544] / [i915#15678])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-4/igt@drm_buddy@drm_buddy.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@drm_buddy@drm_buddy.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: [SKIP][362] ([i915#14544] / [i915#7697]) -> [SKIP][363] ([i915#7697])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: [SKIP][364] ([i915#14544] / [i915#280]) -> [SKIP][365] ([i915#280])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: [SKIP][366] ([i915#14544] / [i915#4525]) -> [SKIP][367] ([i915#4525])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-rkl: [SKIP][368] ([i915#14544] / [i915#3281]) -> [SKIP][369] ([i915#3281]) +3 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-rkl: [SKIP][370] ([i915#3281]) -> [SKIP][371] ([i915#14544] / [i915#3281]) +4 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-4/igt@gem_exec_reloc@basic-write-gtt-active.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: [SKIP][372] ([i915#4613]) -> [SKIP][373] ([i915#14544] / [i915#4613])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@massive:
- shard-rkl: [SKIP][374] ([i915#14544] / [i915#4613]) -> [SKIP][375] ([i915#4613])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@gem_lmem_swapping@massive.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-7/igt@gem_lmem_swapping@massive.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][376] ([i915#14544] / [i915#3282]) -> [SKIP][377] ([i915#3282]) +2 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: [SKIP][378] ([i915#14544] / [i915#8411]) -> [SKIP][379] ([i915#8411])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: [SKIP][380] ([i915#14544] / [i915#3297]) -> [SKIP][381] ([i915#3297])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: [SKIP][382] ([i915#3297]) -> [SKIP][383] ([i915#14544] / [i915#3297])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@allowed-single:
- shard-rkl: [SKIP][384] ([i915#14544] / [i915#2527]) -> [SKIP][385] ([i915#2527])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-7/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-rkl: [SKIP][386] ([i915#2527]) -> [SKIP][387] ([i915#14544] / [i915#2527])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-5/igt@gen9_exec_parse@unaligned-jump.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: [SKIP][388] ([i915#15479]) -> [SKIP][389] ([i915#14544] / [i915#15479]) +4 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-8/igt@i915_module_load@fault-injection@__uc_init.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-rkl: [SKIP][390] ([i915#5286]) -> [SKIP][391] ([i915#14544] / [i915#5286]) +2 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-rkl: [SKIP][392] ([i915#14544] / [i915#5286]) -> [SKIP][393] ([i915#5286]) +1 other test skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-rkl: [SKIP][394] ([i915#3638]) -> [SKIP][395] ([i915#14544] / [i915#3638])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-270.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: [SKIP][396] ([i915#14544] / [i915#3638]) -> [SKIP][397] ([i915#3638])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][398] ([i915#14544] / [i915#3828]) -> [SKIP][399] ([i915#3828]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][400] ([i915#6095]) -> [SKIP][401] ([i915#14544] / [i915#6095]) +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][402] ([i915#14098] / [i915#6095]) -> [SKIP][403] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][404] ([i915#12805] / [i915#14544]) -> [SKIP][405] ([i915#12805])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][406] ([i915#12313]) -> [SKIP][407] ([i915#12313] / [i915#14544]) +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][408] ([i915#14544] / [i915#6095]) -> [SKIP][409] ([i915#6095]) +4 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][410] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][411] ([i915#14098] / [i915#6095]) +5 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-rkl: [SKIP][412] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][413] ([i915#11151] / [i915#7828]) +5 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-rkl: [SKIP][414] ([i915#11151] / [i915#7828]) -> [SKIP][415] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-3/igt@kms_chamelium_frames@hdmi-crc-multiple.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-rkl: [SKIP][416] ([i915#15865]) -> [SKIP][417] ([i915#14544] / [i915#15865])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-5/igt@kms_content_protection@atomic-dpms-hdcp14.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: [SKIP][418] ([i915#15330]) -> [SKIP][419] ([i915#14544] / [i915#15330])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: [SKIP][420] ([i915#14544] / [i915#15330]) -> [SKIP][421] ([i915#15330])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-rkl: [SKIP][422] ([i915#14544] / [i915#15865]) -> [SKIP][423] ([i915#15865])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_content_protection@lic-type-0-hdcp14.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-4/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][424] ([i915#9433]) -> [SKIP][425] ([i915#15865])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg1-13/igt@kms_content_protection@mei-interface.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-19/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: [SKIP][426] ([i915#13049] / [i915#14544]) -> [SKIP][427] ([i915#13049]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: [SKIP][428] ([i915#3555]) -> [SKIP][429] ([i915#14544] / [i915#3555])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: [SKIP][430] ([i915#14544] / [i915#3555]) -> [SKIP][431] ([i915#3555]) +2 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2: [SKIP][432] ([i915#13049]) -> [SKIP][433] ([i915#13049] / [i915#3359])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: [SKIP][434] -> [SKIP][435] ([i915#14544]) +2 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-rkl: [SKIP][436] ([i915#14544]) -> [SKIP][437] +5 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: [SKIP][438] ([i915#9723]) -> [SKIP][439] ([i915#14544] / [i915#9723])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: [SKIP][440] ([i915#13748] / [i915#14544]) -> [SKIP][441] ([i915#13748])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-8/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][442] ([i915#3555] / [i915#3840]) -> [SKIP][443] ([i915#14544] / [i915#3555] / [i915#3840])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: [SKIP][444] ([i915#14544] / [i915#1839]) -> [SKIP][445] ([i915#1839])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_feature_discovery@display-4x.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-rkl: [SKIP][446] ([i915#9934]) -> [SKIP][447] ([i915#14544] / [i915#9934]) +1 other test skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-8/igt@kms_flip@2x-plain-flip-ts-check.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#9934]) -> [SKIP][449] ([i915#9934]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: [SKIP][450] ([i915#14544] / [i915#15643]) -> [SKIP][451] ([i915#15643]) +2 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: [SKIP][452] ([i915#15643]) -> [SKIP][453] ([i915#14544] / [i915#15643]) +1 other test skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][454] ([i915#15102] / [i915#3023]) -> [SKIP][455] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: [SKIP][456] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][457] ([i915#15102] / [i915#3458]) +1 other test skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][458] ([i915#15102] / [i915#3458]) -> [SKIP][459] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][460] ([i915#1825]) -> [SKIP][461] ([i915#14544] / [i915#1825]) +11 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][462] ([i915#14544] / [i915#1825]) -> [SKIP][463] ([i915#1825]) +14 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-rkl: [SKIP][464] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][465] ([i915#15102] / [i915#3023]) +7 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: [SKIP][466] ([i915#13688] / [i915#14544]) -> [SKIP][467] ([i915#13688])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][468] ([i915#15458]) -> [SKIP][469] ([i915#14544] / [i915#15458])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-2/igt@kms_joiner@basic-ultra-joiner.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier:
- shard-rkl: [SKIP][470] ([i915#14544] / [i915#15709]) -> [SKIP][471] ([i915#15709]) +2 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][472] ([i915#15709]) -> [SKIP][473] ([i915#14544] / [i915#15709])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: [SKIP][474] ([i915#13958] / [i915#14544]) -> [SKIP][475] ([i915#13958])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: [SKIP][476] ([i915#14544] / [i915#15329]) -> [SKIP][477] ([i915#15329]) +3 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: [SKIP][478] ([i915#12343] / [i915#14544]) -> [SKIP][479] ([i915#12343])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: [SKIP][480] ([i915#5354]) -> [SKIP][481] ([i915#14544] / [i915#5354])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-8/igt@kms_pm_backlight@fade-with-dpms.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][482] ([i915#9340]) -> [SKIP][483] ([i915#3828])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#15073]) -> [SKIP][485] ([i915#15073])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-dg1: [INCOMPLETE][486] ([i915#10553]) -> [SKIP][487] ([i915#15073])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-rkl: [SKIP][488] ([i915#11520]) -> [SKIP][489] ([i915#11520] / [i915#14544]) +3 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][490] ([i915#11520] / [i915#14544]) -> [SKIP][491] ([i915#11520]) +5 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: [SKIP][492] ([i915#9683]) -> [SKIP][493] ([i915#14544] / [i915#9683])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-basic:
- shard-rkl: [SKIP][494] ([i915#1072] / [i915#9732]) -> [SKIP][495] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-2/igt@kms_psr@fbc-psr-basic.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@kms_psr@fbc-psr-basic.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: [SKIP][496] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][497] ([i915#1072] / [i915#9732]) +3 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-7/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: [SKIP][498] ([i915#14544] / [i915#9685]) -> [SKIP][499] ([i915#9685])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: [SKIP][500] ([i915#12755] / [i915#15867]) -> [SKIP][501] ([i915#15867])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-270.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html
* igt@prime_vgem@basic-read:
- shard-rkl: [SKIP][502] ([i915#3291] / [i915#3708]) -> [SKIP][503] ([i915#14544] / [i915#3291] / [i915#3708])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-8/igt@prime_vgem@basic-read.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-6/igt@prime_vgem@basic-read.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#9917]) -> [SKIP][505] ([i915#9917])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18329/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[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#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821
[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#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152
[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#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[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#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#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#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#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#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#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#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[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#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[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#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[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#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8855 -> IGTPW_14981
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18329: 4e3f5ea9aacc227f8dc56389af013d1a15ccb323 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14981: 93e0ffd1a11399b14830c29134e24539fbf0742f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8855: 3c05ee1076cee44a2bc3c176ec21e651f6eca600 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14981/index.html
[-- Attachment #2: Type: text/html, Size: 171472 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t] tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms
2026-04-14 10:44 ` Jani Nikula
@ 2026-04-15 1:26 ` Jason-JH Lin (林睿祥)
0 siblings, 0 replies; 7+ messages in thread
From: Jason-JH Lin (林睿祥) @ 2026-04-15 1:26 UTC (permalink / raw)
To: karthik.b.s@intel.com, swati2.sharma@intel.com,
juhapekka.heikkila@gmail.com, jani.nikula@intel.com,
bhanuprakash.modem@gmail.com, igt-dev@lists.freedesktop.org,
kamil.konieczny@linux.intel.com, fshao@chromium.org
Cc: Project_Global_Chrome_Upstream_Group,
Paul-pl Chen (陳柏霖), markyacoub@chromium.org,
Nancy Lin (林欣螢),
Singo Chang (張興國), gildekel@google.com
Hi Jani,
Thanks for the suggestion!
On Tue, 2026-04-14 at 13:44 +0300, Jani Nikula wrote:
> On Tue, 14 Apr 2026, Jason-JH Lin <jason-jh.lin@mediatek.com> wrote:
> > The clock-too-high subtest was being skipped on non-Intel platforms
> > because igt_get_max_dotclock() returns 0 when reading from
> > Intel-specific debugfs fails.
> >
> > This change allows the test to run on all platforms by:
> > - Using a clearly invalid clock value (10 GHz) when max_dotclock is
> > unavailable, which any reasonable driver should reject
> > - Restricting bigjoiner/ultrajoiner logic to Intel devices only
> >
> > This prevents the test from being marked as IGNORED/SKIP on non-
> > Intel
> > platforms while maintaining the original test intent of verifying
> > that
> > drivers properly reject modes with excessively high clock rates.
> >
> > Tested on MTK platforms where the test now properly executes and
> > verifies invalid clock validation.
>
> I think overall we'll need a framework to ask platform/device
> specific
> things instead of portraying the services as generic, like
> igt_get_max_dotclock().
>
As for a more general platform/device-specific query framework,
I agree that would be beneficial for broader igt development,
and could be implemented in the future.
> >
> > Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> > ---
> > tests/kms_invalid_mode.c | 38 +++++++++++++++++++++++-------------
> > --
> > 1 file changed, 23 insertions(+), 15 deletions(-)
> >
> > diff --git a/tests/kms_invalid_mode.c b/tests/kms_invalid_mode.c
> > index 5edffb649ef4..18d79e59c736 100644
> > --- a/tests/kms_invalid_mode.c
> > +++ b/tests/kms_invalid_mode.c
> > @@ -126,7 +126,13 @@ adjust_mode_clock_too_high(data_t *data,
> > drmModeModeInfoPtr mode)
> > {
> > int max_dotclock = data->max_dotclock;
> >
> > - igt_require(max_dotclock != 0);
> > + /*
> > + * If max_dotclock is unavailable (e.g., non-Intel
> > platforms),
> > + * use an obviously invalid value that any driver should
> > reject.
> > + * 10 GHz is well beyond any reasonable hardware
> > capability.
> > + */
> > + if (max_dotclock == 0)
> > + max_dotclock = 10000000; /* 10 GHz in kHz */
>
> Not a fan of using magic numbers like this.
>
> Perhaps
>
> if (!max_dotclock) {
> mode->clock = -1;
> return;
> }
>
> would be less magic?
>
For this particular test, since the intention is to always supply an
obviously invalid clock value to ensure proper driver validation,
I will set mode->clock = -1 in case max_dotclock is unavailable,
as you proposed.
This avoids magic numbers and keeps the original logic for Intel
platforms, so there should be no regression on previously tested
systems.
I'll send a new revision with the change.
Regards,
Jason-JH Lin
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-04-15 1:26 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-14 10:10 [PATCH i-g-t] tests/kms_invalid_mode: Allow clock-too-high test on non-Intel platforms Jason-JH Lin
2026-04-14 10:44 ` Jani Nikula
2026-04-15 1:26 ` Jason-JH Lin (林睿祥)
2026-04-14 13:11 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-04-14 13:34 ` ✓ i915.CI.BAT: " Patchwork
2026-04-14 14:23 ` ✓ Xe.CI.FULL: " Patchwork
2026-04-14 20:58 ` ✓ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox