* [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers
@ 2026-03-17 8:36 Jeevan B
2026-03-17 11:29 ` Hogander, Jouni
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Jeevan B @ 2026-03-17 8:36 UTC (permalink / raw)
To: igt-dev; +Cc: jouni.hogander, Jeevan B
Replace NULL with data->output in PSR function calls and update the
log to include the output name when PSR is not supported.
v2: Replace NULL with data->output in all PSR helpers.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_dirtyfb.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/tests/intel/kms_dirtyfb.c b/tests/intel/kms_dirtyfb.c
index b85e09346..b5de63350 100644
--- a/tests/intel/kms_dirtyfb.c
+++ b/tests/intel/kms_dirtyfb.c
@@ -120,8 +120,8 @@ static bool check_support(data_t *data)
return false;
}
if (!psr_sink_support(data->drm_fd, data->debugfs_fd,
- PSR_MODE_1, NULL)) {
- igt_info("Output doesn't support PSR\n");
+ PSR_MODE_1, data->output)) {
+ igt_info("Output %s doesn't support PSR\n", igt_output_name(data->output));
return false;
}
return true;
@@ -150,7 +150,7 @@ static void enable_feature(data_t *data)
intel_fbc_enable(&data->display);
break;
case FEATURE_PSR:
- psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL);
+ psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1, data->output);
break;
case FEATURE_DRRS:
intel_drrs_enable(data->crtc);
@@ -173,7 +173,7 @@ static void check_feature_enabled(data_t *data)
break;
case FEATURE_PSR:
igt_require(!psr_disabled_check(data->debugfs_fd));
- igt_assert_f(psr_wait_entry(data->debugfs_fd, PSR_MODE_1, NULL),
+ igt_assert_f(psr_wait_entry(data->debugfs_fd, PSR_MODE_1, data->output),
"PSR still disabled\n");
break;
case FEATURE_DRRS:
@@ -217,8 +217,8 @@ static void disable_features(data_t *data)
{
intel_fbc_disable(&data->display);
- if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL))
- psr_disable(data->drm_fd, data->debugfs_fd, NULL);
+ if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, data->output))
+ psr_disable(data->drm_fd, data->debugfs_fd, data->output);
intel_drrs_disable(data->crtc);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers
2026-03-17 8:36 [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers Jeevan B
@ 2026-03-17 11:29 ` Hogander, Jouni
2026-03-17 20:45 ` ✓ i915.CI.BAT: success for " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 10+ messages in thread
From: Hogander, Jouni @ 2026-03-17 11:29 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, B, Jeevan
On Tue, 2026-03-17 at 14:06 +0530, Jeevan B wrote:
> Replace NULL with data->output in PSR function calls and update the
> log to include the output name when PSR is not supported.
Maybe you could describe a bit more why you want to do these changes.
BR,
Jouni Högander
>
> v2: Replace NULL with data->output in all PSR helpers.
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> tests/intel/kms_dirtyfb.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/tests/intel/kms_dirtyfb.c b/tests/intel/kms_dirtyfb.c
> index b85e09346..b5de63350 100644
> --- a/tests/intel/kms_dirtyfb.c
> +++ b/tests/intel/kms_dirtyfb.c
> @@ -120,8 +120,8 @@ static bool check_support(data_t *data)
> return false;
> }
> if (!psr_sink_support(data->drm_fd, data-
> >debugfs_fd,
> - PSR_MODE_1, NULL)) {
> - igt_info("Output doesn't support PSR\n");
> + PSR_MODE_1, data->output)) {
> + igt_info("Output %s doesn't support PSR\n",
> igt_output_name(data->output));
> return false;
> }
> return true;
> @@ -150,7 +150,7 @@ static void enable_feature(data_t *data)
> intel_fbc_enable(&data->display);
> break;
> case FEATURE_PSR:
> - psr_enable(data->drm_fd, data->debugfs_fd,
> PSR_MODE_1, NULL);
> + psr_enable(data->drm_fd, data->debugfs_fd,
> PSR_MODE_1, data->output);
> break;
> case FEATURE_DRRS:
> intel_drrs_enable(data->crtc);
> @@ -173,7 +173,7 @@ static void check_feature_enabled(data_t *data)
> break;
> case FEATURE_PSR:
> igt_require(!psr_disabled_check(data->debugfs_fd));
> - igt_assert_f(psr_wait_entry(data->debugfs_fd,
> PSR_MODE_1, NULL),
> + igt_assert_f(psr_wait_entry(data->debugfs_fd,
> PSR_MODE_1, data->output),
> "PSR still disabled\n");
> break;
> case FEATURE_DRRS:
> @@ -217,8 +217,8 @@ static void disable_features(data_t *data)
> {
> intel_fbc_disable(&data->display);
>
> - if (psr_sink_support(data->drm_fd, data->debugfs_fd,
> PSR_MODE_1, NULL))
> - psr_disable(data->drm_fd, data->debugfs_fd, NULL);
> + if (psr_sink_support(data->drm_fd, data->debugfs_fd,
> PSR_MODE_1, data->output))
> + psr_disable(data->drm_fd, data->debugfs_fd, data-
> >output);
>
> intel_drrs_disable(data->crtc);
> }
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/kms_dirtyfb: Pass output to PSR helpers
2026-03-17 8:36 [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers Jeevan B
2026-03-17 11:29 ` Hogander, Jouni
@ 2026-03-17 20:45 ` Patchwork
2026-03-17 20:54 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-03-17 20:45 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2480 bytes --]
== Series Details ==
Series: tests/intel/kms_dirtyfb: Pass output to PSR helpers
URL : https://patchwork.freedesktop.org/series/163363/
State : success
== Summary ==
CI Bug Log - changes from IGT_8807 -> IGTPW_14790
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14790 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/bat-mtlp-8/igt@i915_selftest@live.html
- 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_8807/bat-dg2-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/bat-dg2-8/igt@i915_selftest@live.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-adlp-6: [DMESG-WARN][5] ([i915#15673]) -> [PASS][6] +78 other tests pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8807 -> IGTPW_14790
* Linux: CI_DRM_18164 -> CI_DRM_18167
CI-20190529: 20190529
CI_DRM_18164: 113073d07f958385b5b80d29b62e10d2cf0181d6 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18167: 90a49598c224945b556bee26d693fade1b8bdb3a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14790: 9a888540b9bfa1438aeafcf979ead717c778ba72 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/index.html
[-- Attachment #2: Type: text/html, Size: 3187 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/kms_dirtyfb: Pass output to PSR helpers
2026-03-17 8:36 [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers Jeevan B
2026-03-17 11:29 ` Hogander, Jouni
2026-03-17 20:45 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2026-03-17 20:54 ` Patchwork
2026-03-19 2:52 ` ✗ i915.CI.Full: failure " Patchwork
2026-03-19 6:12 ` ✓ Xe.CI.FULL: success " Patchwork
4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-03-17 20:54 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2394 bytes --]
== Series Details ==
Series: tests/intel/kms_dirtyfb: Pass output to PSR helpers
URL : https://patchwork.freedesktop.org/series/163363/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8807_BAT -> XEIGTPW_14790_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 13)
------------------------------
Additional (1): bat-bmg-3
Known issues
------------
Here are the changes found in XEIGTPW_14790_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][1] ([Intel XE#6566]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [PASS][2] -> [TIMEOUT][3] ([Intel XE#6506])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/bat-dg2-oem2/igt@xe_waitfence@abstime.html
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [PASS][4] -> [FAIL][5] ([Intel XE#6520])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
Build changes
-------------
* IGT: IGT_8807 -> IGTPW_14790
* Linux: xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6 -> xe-4738-90a49598c224945b556bee26d693fade1b8bdb3a
IGTPW_14790: 9a888540b9bfa1438aeafcf979ead717c778ba72 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6: 113073d07f958385b5b80d29b62e10d2cf0181d6
xe-4738-90a49598c224945b556bee26d693fade1b8bdb3a: 90a49598c224945b556bee26d693fade1b8bdb3a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/index.html
[-- Attachment #2: Type: text/html, Size: 3028 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers
@ 2026-03-18 3:12 Jeevan B
2026-03-18 5:17 ` Samala, Pranay
2026-03-18 14:09 ` Hogander, Jouni
0 siblings, 2 replies; 10+ messages in thread
From: Jeevan B @ 2026-03-18 3:12 UTC (permalink / raw)
To: igt-dev; +Cc: jouni.hogander, Jeevan B
Replace NULL with data->output in PSR function calls and update the
log to include the output name when PSR is not supported.
This change ensures correct behavior in dual eDP setups where PSR
support may differ between displays. Passing the specific output
instead of NULL allows PSR checks to be performed per connector,
ensuring each display is evaluated independently and accurately.
v2: Replace NULL with data->output in all PSR helpers.
v3: Update commit message.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/intel/kms_dirtyfb.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/tests/intel/kms_dirtyfb.c b/tests/intel/kms_dirtyfb.c
index b85e09346..b5de63350 100644
--- a/tests/intel/kms_dirtyfb.c
+++ b/tests/intel/kms_dirtyfb.c
@@ -120,8 +120,8 @@ static bool check_support(data_t *data)
return false;
}
if (!psr_sink_support(data->drm_fd, data->debugfs_fd,
- PSR_MODE_1, NULL)) {
- igt_info("Output doesn't support PSR\n");
+ PSR_MODE_1, data->output)) {
+ igt_info("Output %s doesn't support PSR\n", igt_output_name(data->output));
return false;
}
return true;
@@ -150,7 +150,7 @@ static void enable_feature(data_t *data)
intel_fbc_enable(&data->display);
break;
case FEATURE_PSR:
- psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL);
+ psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1, data->output);
break;
case FEATURE_DRRS:
intel_drrs_enable(data->crtc);
@@ -173,7 +173,7 @@ static void check_feature_enabled(data_t *data)
break;
case FEATURE_PSR:
igt_require(!psr_disabled_check(data->debugfs_fd));
- igt_assert_f(psr_wait_entry(data->debugfs_fd, PSR_MODE_1, NULL),
+ igt_assert_f(psr_wait_entry(data->debugfs_fd, PSR_MODE_1, data->output),
"PSR still disabled\n");
break;
case FEATURE_DRRS:
@@ -217,8 +217,8 @@ static void disable_features(data_t *data)
{
intel_fbc_disable(&data->display);
- if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, NULL))
- psr_disable(data->drm_fd, data->debugfs_fd, NULL);
+ if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1, data->output))
+ psr_disable(data->drm_fd, data->debugfs_fd, data->output);
intel_drrs_disable(data->crtc);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* RE: [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers
2026-03-18 3:12 [PATCH i-g-t] " Jeevan B
@ 2026-03-18 5:17 ` Samala, Pranay
2026-03-18 6:16 ` B, Jeevan
2026-03-18 14:09 ` Hogander, Jouni
1 sibling, 1 reply; 10+ messages in thread
From: Samala, Pranay @ 2026-03-18 5:17 UTC (permalink / raw)
To: B, Jeevan, igt-dev@lists.freedesktop.org; +Cc: Hogander, Jouni, B, Jeevan
Hi Jeevan,
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Jeevan
> B
> Sent: Wednesday, March 18, 2026 8:42 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Hogander, Jouni <jouni.hogander@intel.com>; B, Jeevan
> <jeevan.b@intel.com>
> Subject: [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers
>
> Replace NULL with data->output in PSR function calls and update the log to
> include the output name when PSR is not supported.
>
> This change ensures correct behavior in dual eDP setups where PSR support
> may differ between displays. Passing the specific output instead of NULL
> allows PSR checks to be performed per connector, ensuring each display is
> evaluated independently and accurately.
>
> v2: Replace NULL with data->output in all PSR helpers.
> v3: Update commit message.
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> tests/intel/kms_dirtyfb.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/tests/intel/kms_dirtyfb.c b/tests/intel/kms_dirtyfb.c index
> b85e09346..b5de63350 100644
> --- a/tests/intel/kms_dirtyfb.c
> +++ b/tests/intel/kms_dirtyfb.c
> @@ -120,8 +120,8 @@ static bool check_support(data_t *data)
> return false;
> }
> if (!psr_sink_support(data->drm_fd, data->debugfs_fd,
> - PSR_MODE_1, NULL)) {
> - igt_info("Output doesn't support PSR\n");
> + PSR_MODE_1, data->output)) {
> + igt_info("Output %s doesn't support PSR\n",
> +igt_output_name(data->output));
> return false;
> }
> return true;
> @@ -150,7 +150,7 @@ static void enable_feature(data_t *data)
> intel_fbc_enable(&data->display);
> break;
> case FEATURE_PSR:
> - psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1,
> NULL);
> + psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1,
> data->output);
> break;
> case FEATURE_DRRS:
> intel_drrs_enable(data->crtc);
> @@ -173,7 +173,7 @@ static void check_feature_enabled(data_t *data)
> break;
> case FEATURE_PSR:
> igt_require(!psr_disabled_check(data->debugfs_fd));
> - igt_assert_f(psr_wait_entry(data->debugfs_fd, PSR_MODE_1,
> NULL),
> + igt_assert_f(psr_wait_entry(data->debugfs_fd, PSR_MODE_1,
> +data->output),
> "PSR still disabled\n");
> break;
> case FEATURE_DRRS:
> @@ -217,8 +217,8 @@ static void disable_features(data_t *data) {
> intel_fbc_disable(&data->display);
>
> - if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1,
> NULL))
> - psr_disable(data->drm_fd, data->debugfs_fd, NULL);
> + if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1,
> data->output))
> + psr_disable(data->drm_fd, data->debugfs_fd, data->output);
Passing data->output is clear for psr_sink_support() and psr_wait_entry() since those read output-specific PSR status.
But for psr_enable() and psr_disable(), impact is limited today since current control paths are still global.
Regards,
Pranay
>
> intel_drrs_disable(data->crtc);
> }
> --
> 2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers
2026-03-18 5:17 ` Samala, Pranay
@ 2026-03-18 6:16 ` B, Jeevan
0 siblings, 0 replies; 10+ messages in thread
From: B, Jeevan @ 2026-03-18 6:16 UTC (permalink / raw)
To: Samala, Pranay, igt-dev@lists.freedesktop.org; +Cc: Hogander, Jouni
> -----Original Message-----
> From: Samala, Pranay <pranay.samala@intel.com>
> Sent: Wednesday, March 18, 2026 10:48 AM
> To: B, Jeevan <jeevan.b@intel.com>; igt-dev@lists.freedesktop.org
> Cc: Hogander, Jouni <jouni.hogander@intel.com>; B, Jeevan
> <jeevan.b@intel.com>
> Subject: RE: [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers
>
> Hi Jeevan,
>
> > -----Original Message-----
> > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of
> > Jeevan B
> > Sent: Wednesday, March 18, 2026 8:42 AM
> > To: igt-dev@lists.freedesktop.org
> > Cc: Hogander, Jouni <jouni.hogander@intel.com>; B, Jeevan
> > <jeevan.b@intel.com>
> > Subject: [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR
> > helpers
> >
> > Replace NULL with data->output in PSR function calls and update the
> > log to include the output name when PSR is not supported.
> >
> > This change ensures correct behavior in dual eDP setups where PSR
> > support may differ between displays. Passing the specific output
> > instead of NULL allows PSR checks to be performed per connector,
> > ensuring each display is evaluated independently and accurately.
> >
> > v2: Replace NULL with data->output in all PSR helpers.
> > v3: Update commit message.
> >
> > Signed-off-by: Jeevan B <jeevan.b@intel.com>
> > ---
> > tests/intel/kms_dirtyfb.c | 12 ++++++------
> > 1 file changed, 6 insertions(+), 6 deletions(-)
> >
> > diff --git a/tests/intel/kms_dirtyfb.c b/tests/intel/kms_dirtyfb.c
> > index
> > b85e09346..b5de63350 100644
> > --- a/tests/intel/kms_dirtyfb.c
> > +++ b/tests/intel/kms_dirtyfb.c
> > @@ -120,8 +120,8 @@ static bool check_support(data_t *data)
> > return false;
> > }
> > if (!psr_sink_support(data->drm_fd, data->debugfs_fd,
> > - PSR_MODE_1, NULL)) {
> > - igt_info("Output doesn't support PSR\n");
> > + PSR_MODE_1, data->output)) {
> > + igt_info("Output %s doesn't support PSR\n",
> > +igt_output_name(data->output));
> > return false;
> > }
> > return true;
> > @@ -150,7 +150,7 @@ static void enable_feature(data_t *data)
> > intel_fbc_enable(&data->display);
> > break;
> > case FEATURE_PSR:
> > - psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1,
> > NULL);
> > + psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1,
> > data->output);
> > break;
> > case FEATURE_DRRS:
> > intel_drrs_enable(data->crtc);
> > @@ -173,7 +173,7 @@ static void check_feature_enabled(data_t *data)
> > break;
> > case FEATURE_PSR:
> > igt_require(!psr_disabled_check(data->debugfs_fd));
> > - igt_assert_f(psr_wait_entry(data->debugfs_fd, PSR_MODE_1,
> > NULL),
> > + igt_assert_f(psr_wait_entry(data->debugfs_fd, PSR_MODE_1,
> > +data->output),
> > "PSR still disabled\n");
> > break;
> > case FEATURE_DRRS:
> > @@ -217,8 +217,8 @@ static void disable_features(data_t *data) {
> > intel_fbc_disable(&data->display);
> >
> > - if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1,
> > NULL))
> > - psr_disable(data->drm_fd, data->debugfs_fd, NULL);
> > + if (psr_sink_support(data->drm_fd, data->debugfs_fd, PSR_MODE_1,
> > data->output))
> > + psr_disable(data->drm_fd, data->debugfs_fd, data->output);
>
> Passing data->output is clear for psr_sink_support() and psr_wait_entry()
> since those read output-specific PSR status.
> But for psr_enable() and psr_disable(), impact is limited today since current
> control paths are still global.
Even though psr_enable() and psr_disable() are effectively global today,
passing data->output keeps the interface consistent with other PSR helpers
and future-proofs the code in case per-output control is introduced later.
Thanks
Jeevan B
>
> Regards,
> Pranay
> >
> > intel_drrs_disable(data->crtc);
> > }
> > --
> > 2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers
2026-03-18 3:12 [PATCH i-g-t] " Jeevan B
2026-03-18 5:17 ` Samala, Pranay
@ 2026-03-18 14:09 ` Hogander, Jouni
1 sibling, 0 replies; 10+ messages in thread
From: Hogander, Jouni @ 2026-03-18 14:09 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, B, Jeevan
On Wed, 2026-03-18 at 08:42 +0530, Jeevan B wrote:
> Replace NULL with data->output in PSR function calls and update the
> log to include the output name when PSR is not supported.
>
> This change ensures correct behavior in dual eDP setups where PSR
> support may differ between displays. Passing the specific output
> instead of NULL allows PSR checks to be performed per connector,
> ensuring each display is evaluated independently and accurately.
>
> v2: Replace NULL with data->output in all PSR helpers.
> v3: Update commit message.
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> tests/intel/kms_dirtyfb.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/tests/intel/kms_dirtyfb.c b/tests/intel/kms_dirtyfb.c
> index b85e09346..b5de63350 100644
> --- a/tests/intel/kms_dirtyfb.c
> +++ b/tests/intel/kms_dirtyfb.c
> @@ -120,8 +120,8 @@ static bool check_support(data_t *data)
> return false;
> }
> if (!psr_sink_support(data->drm_fd, data-
> >debugfs_fd,
> - PSR_MODE_1, NULL)) {
> - igt_info("Output doesn't support PSR\n");
> + PSR_MODE_1, data->output)) {
> + igt_info("Output %s doesn't support PSR\n",
> igt_output_name(data->output));
> return false;
> }
> return true;
> @@ -150,7 +150,7 @@ static void enable_feature(data_t *data)
> intel_fbc_enable(&data->display);
> break;
> case FEATURE_PSR:
> - psr_enable(data->drm_fd, data->debugfs_fd,
> PSR_MODE_1, NULL);
> + psr_enable(data->drm_fd, data->debugfs_fd,
> PSR_MODE_1, data->output);
> break;
> case FEATURE_DRRS:
> intel_drrs_enable(data->crtc);
> @@ -173,7 +173,7 @@ static void check_feature_enabled(data_t *data)
> break;
> case FEATURE_PSR:
> igt_require(!psr_disabled_check(data->debugfs_fd));
> - igt_assert_f(psr_wait_entry(data->debugfs_fd,
> PSR_MODE_1, NULL),
> + igt_assert_f(psr_wait_entry(data->debugfs_fd,
> PSR_MODE_1, data->output),
> "PSR still disabled\n");
> break;
> case FEATURE_DRRS:
> @@ -217,8 +217,8 @@ static void disable_features(data_t *data)
> {
> intel_fbc_disable(&data->display);
>
> - if (psr_sink_support(data->drm_fd, data->debugfs_fd,
> PSR_MODE_1, NULL))
> - psr_disable(data->drm_fd, data->debugfs_fd, NULL);
> + if (psr_sink_support(data->drm_fd, data->debugfs_fd,
> PSR_MODE_1, data->output))
> + psr_disable(data->drm_fd, data->debugfs_fd, data-
> >output);
>
> intel_drrs_disable(data->crtc);
> }
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/kms_dirtyfb: Pass output to PSR helpers
2026-03-17 8:36 [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers Jeevan B
` (2 preceding siblings ...)
2026-03-17 20:54 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-03-19 2:52 ` Patchwork
2026-03-19 6:12 ` ✓ Xe.CI.FULL: success " Patchwork
4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-03-19 2:52 UTC (permalink / raw)
To: B, Jeevan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 151961 bytes --]
== Series Details ==
Series: tests/intel/kms_dirtyfb: Pass output to PSR helpers
URL : https://patchwork.freedesktop.org/series/163363/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18167_full -> IGTPW_14790_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14790_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14790_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14790_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-vga-1:
- shard-snb: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-snb5/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-vga-1.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-snb6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-vga-1.html
New tests
---------
New tests have been introduced between CI_DRM_18167_full and IGTPW_14790_full:
### New IGT tests (4) ###
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-3:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
Known issues
------------
Here are the changes found in IGTPW_14790_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#6230])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-3/igt@api_intel_bb@crc32.html
* igt@drm_buddy@drm_buddy:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#15678])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-6/igt@drm_buddy@drm_buddy.html
* igt@gem_bad_reloc@negative-reloc-bltcopy:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#3281]) +10 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-4/igt@gem_bad_reloc@negative-reloc-bltcopy.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#7697]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-3/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#13008])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][12] ([i915#12392] / [i915#13356])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#6335])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-9/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#14544] / [i915#8562])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk10: NOTRUN -> [INCOMPLETE][15] ([i915#13356]) +1 other test incomplete
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk10/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][16] ([i915#1099]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-snb1/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-12/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#4812]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-2/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#4771])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-3/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#4036])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-8/igt@gem_exec_balancer@noheartbeat.html
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@gem_exec_balancer@noheartbeat.html
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8555]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-5/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#4525]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#4525]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture:
- shard-mtlp: NOTRUN -> [FAIL][26] ([i915#11965]) +1 other test fail
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-6/igt@gem_exec_capture@capture.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#6334]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#6334]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-13/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk1/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu: NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-7/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-7/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#6344])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@submit67:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-19/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +10 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-softpin:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#14544] / [i915#3281]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@gem_exec_reloc@basic-softpin.html
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +8 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-19/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +11 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-5/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_suspend@basic-s0:
- shard-rkl: [PASS][41] -> [ABORT][42] ([i915#15131]) +1 other test abort
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@gem_exec_suspend@basic-s0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-1/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613] / [i915#7582])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-10/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#12193])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4613])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4565])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-19/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#4613]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][51] ([i915#4613]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk4/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom:
- shard-dg1: NOTRUN -> [FAIL][52] ([i915#15734])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-14/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: NOTRUN -> [CRASH][53] ([i915#5493])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#8289])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-3/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-5/igt@gem_mmap@basic-small-bo.html
* igt@gem_mmap_gtt@close-race:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4077]) +5 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@gem_mmap_gtt@close-race.html
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +8 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-8/igt@gem_mmap_gtt@close-race.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-7/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-13/igt@gem_mmap_wc@read.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3282]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-6/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#3282]) +8 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][62] ([i915#2658])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk8/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3282]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-5/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][64] ([i915#14702] / [i915#2658])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk5/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#13717])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_readwrite@write-bad-handle:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@x-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8428]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-1/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#5190] / [i915#8428]) +6 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-3/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#8411])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4079])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-16/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4079])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-3/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3297])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu: NOTRUN -> [SKIP][77] ([i915#3297]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-3/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-8/igt@gem_userptr_blits@set-cache-level.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][80] ([i915#13356])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk6/igt@gem_workarounds@suspend-resume-context.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#2856]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#2527] / [i915#2856]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-7/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#2527]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-13/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#2527]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_drm_fdinfo@busy-hang@vcs0:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#14073]) +7 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-3/igt@i915_drm_fdinfo@busy-hang@vcs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#11527]) +6 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-4/igt@i915_drm_fdinfo@busy-idle-check-all@rcs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@vcs0:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#11527]) +7 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html
* igt@i915_drm_fdinfo@busy-idle@bcs0:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#14073]) +5 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-19/igt@i915_drm_fdinfo@busy-idle@bcs0.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#14118]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-6/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#14118]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy-idle.html
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#14118])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: [PASS][94] -> [DMESG-WARN][95] ([i915#13029] / [i915#14545])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-3/igt@i915_module_load@reload-no-display.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@i915_module_load@reload-no-display.html
- shard-dg1: [PASS][96] -> [DMESG-WARN][97] ([i915#13029] / [i915#14545])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-17/igt@i915_module_load@reload-no-display.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-16/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@resize-bar:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#6412])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#8399])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#8399])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#6590]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#6590]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-19/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#6590]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-8/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: [PASS][104] -> [INCOMPLETE][105] ([i915#13356] / [i915#15172])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk2/igt@i915_pm_rpm@system-suspend-execbuf.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk5/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#11681])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-13/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#11681])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-3/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#6245])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#5723])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-3/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-dg2: NOTRUN -> [ABORT][110] ([i915#15131])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-10/igt@i915_suspend@basic-s3-without-i915.html
- shard-tglu: NOTRUN -> [INCOMPLETE][111] ([i915#4817] / [i915#7443])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-4/igt@i915_suspend@basic-s3-without-i915.html
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#6645])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-untiled:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4077]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-1/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][114] ([i915#4817]) +2 other tests incomplete
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk4/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#7707])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4212]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#4212])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4212])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-19/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#5190])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#4215] / [i915#5190])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-snb: [PASS][121] -> [ABORT][122] ([i915#15840])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-snb5/igt@kms_async_flips@async-flip-suspend-resume.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-snb6/igt@kms_async_flips@async-flip-suspend-resume.html
- shard-tglu: [PASS][123] -> [ABORT][124] ([i915#15840]) +1 other test abort
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-tglu-6/igt@kms_async_flips@async-flip-suspend-resume.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-8/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][125] ([i915#12761] / [i915#14995])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic@atomic-plane-damage:
- shard-glk10: NOTRUN -> [SKIP][126] +174 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk10/igt@kms_atomic@atomic-plane-damage.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-snb: NOTRUN -> [SKIP][129] ([i915#1769])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5286]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-16/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#5286]) +5 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#5286]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#5286])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#5286]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][135] -> [FAIL][136] ([i915#15733] / [i915#5138])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#3638]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-17/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3638]) +5 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#3828])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#3828]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#3828])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-16/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#3828])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3828])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5190]) +10 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#14544]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#4538]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#4423] / [i915#6095]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-19/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#14098] / [i915#6095]) +56 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][149] +46 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk11/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#14544] / [i915#6095]) +5 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/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:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#6095]) +44 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#12313]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#12313])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#6095]) +178 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#12805])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#12805])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#12805])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#12805])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#12805])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [INCOMPLETE][161] ([i915#15582]) +1 other test incomplete
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk11/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#6095]) +44 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#10307] / [i915#6095]) +142 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#6095]) +59 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-4/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-dg2-rc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#6095]) +46 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#6095]) +73 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/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-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#3742])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-13/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#13783]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][170] +11 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +5 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +9 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +3 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-17/igt@kms_chamelium_frames@hdmi-frame-dump.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +4 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#14544] / [i915#7828])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +5 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-8/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][179] ([i915#7173])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-3.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#15330] / [i915#3116] / [i915#3299])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#15330] / [i915#3299])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-8/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#15330] / [i915#3299])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#15330] / [i915#3116]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#15330]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#15330] / [i915#3299]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#15330])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-3/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#15330])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#15330])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#15330])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-16/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#6944])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#6944] / [i915#9424])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#6944] / [i915#9424])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#6944] / [i915#7118])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@kms_content_protection@srm.html
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#6944] / [i915#7116] / [i915#7118])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#6944])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-7/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@uevent:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#6944])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-3/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#13049]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][200] -> [FAIL][201] ([i915#13566]) +1 other test fail
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#3555]) +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3555]) +4 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#13049]) +3 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][205] ([i915#13566]) +1 other test fail
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#3555]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][207] ([i915#13566]) +5 other tests fail
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
- shard-tglu: [PASS][208] -> [FAIL][209] ([i915#13566]) +1 other test fail
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#13049] / [i915#14544])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-64x64:
- shard-mtlp: [PASS][211] -> [FAIL][212] ([i915#13566] / [i915#15733]) +1 other test fail
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-64x64.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-64x64.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#13049]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#13049]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#13049]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#8814]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#4103]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#9809]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][219] +25 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#13046] / [i915#5354]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][221] ([i915#15804])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#13691])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#13691])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#3555]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#3555]) +3 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-19/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#1769] / [i915#3555] / [i915#3804])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#3804])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: [PASS][228] -> [SKIP][229] ([i915#3555])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#1257])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#13748])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#13707])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#13707])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#8812])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8812])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-8/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#8812])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#3840])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#3840])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-8/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#3840])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#3469])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#3955])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#3469])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#1839])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#1839]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#658])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#658])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#9934]) +10 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#9934]) +10 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#9934]) +4 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-17/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#3637] / [i915#9934]) +4 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-10/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#3637] / [i915#9934]) +6 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-snb: [PASS][252] -> [TIMEOUT][253] ([i915#14033] / [i915#14350])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][254] -> [TIMEOUT][255] ([i915#14033])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-plain-flip:
- shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#3637] / [i915#9934]) +4 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [PASS][257] -> [INCOMPLETE][258] ([i915#6113])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][259] ([i915#12745] / [i915#4839])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][260] ([i915#12745])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a2:
- shard-rkl: NOTRUN -> [INCOMPLETE][261] ([i915#6113])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#14544] / [i915#15643])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#15643]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#15643]) +5 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#15643]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#15643]) +4 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8810] / [i915#8813])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#8810] / [i915#8813])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#15643]) +3 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-14/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-dg2: NOTRUN -> [SKIP][270] ([i915#15643]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#15643] / [i915#5190]) +2 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-dg2: [PASS][272] -> [FAIL][273] ([i915#15389])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#15104])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#8708]) +17 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#5354]) +28 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2: NOTRUN -> [FAIL][277] ([i915#15389] / [i915#6880]) +1 other test fail
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][278] ([i915#10056])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk2/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#10055])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#15102]) +4 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#15102]) +4 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#14544] / [i915#15102] / [i915#3023])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#15102] / [i915#3458]) +8 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#14544] / [i915#1825]) +5 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][285] +28 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#8708]) +6 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#15102]) +15 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#15102]) +2 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#15102]) +9 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#15104])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-glk: NOTRUN -> [SKIP][291] +427 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk4/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#10433] / [i915#15102] / [i915#3458])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#15102] / [i915#3023]) +24 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#8708]) +10 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#1825]) +49 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#1825]) +20 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][297] +48 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#15102] / [i915#3458]) +12 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [PASS][299] -> [FAIL][300] ([i915#14867])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-tglu-5/igt@kms_hdmi_inject@inject-audio.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#3555] / [i915#8228]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#12713])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8228]) +3 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-8/igt@kms_hdr@static-toggle.html
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8228]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-17/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#3555] / [i915#8228]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-9/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#12713] / [i915#3555] / [i915#8228]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#15460])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#15459]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#15458])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#15458])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#15638] / [i915#15722])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#15638] / [i915#15722])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#15638] / [i915#15722])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-14/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#15638] / [i915#15722])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#15638] / [i915#15722])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#6301])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-tglu-1: NOTRUN -> [SKIP][317] +45 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [INCOMPLETE][318] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#13705])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#13705])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#15709]) +2 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][322] ([i915#15709]) +2 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#15709]) +2 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#15608]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#15608]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#15608]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#15709]) +7 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#15608]) +3 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][329] ([i915#15608]) +5 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#15608]) +5 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier:
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#15709]) +3 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-7/igt@kms_plane@pixel-format-y-tiled-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#15709]) +5 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][333] ([i915#12178])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][334] ([i915#7862]) +1 other test fail
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk10: NOTRUN -> [FAIL][335] ([i915#10647] / [i915#12169])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][336] ([i915#10647]) +1 other test fail
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#13958]) +2 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#13958])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-x.html
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#13958])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@kms_plane_multiple@2x-tiling-x.html
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#13958])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-7/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#13958]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-8/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][342] ([i915#14259])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-8/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][343] ([i915#14259])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-5/igt@kms_plane_multiple@tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#14259])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#6953] / [i915#9423])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#15329]) +4 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#15329]) +3 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
- shard-tglu-1: NOTRUN -> [SKIP][348] ([i915#15329]) +8 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#15329] / [i915#3555])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][350] ([i915#15329] / [i915#6953])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#15329]) +3 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#5354])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-3/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][353] ([i915#5354]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-14/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#9812])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][355] ([i915#9685])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][356] ([i915#9685])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-13/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][357] ([i915#9685])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-10/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#3828])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: NOTRUN -> [FAIL][359] ([i915#15752])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#9340])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][361] ([i915#8430])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-5/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][362] ([i915#15073])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][363] ([i915#15073])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][364] -> [SKIP][365] ([i915#15073])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#15073])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][367] -> [SKIP][368] ([i915#15073]) +2 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][369] ([i915#15073])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#15403])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [PASS][371] -> [INCOMPLETE][372] ([i915#14419])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_pm_rpm@system-suspend-idle.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-3/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][373] ([i915#6524])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][374] ([i915#6524])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-4/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][375] ([i915#11520]) +3 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-snb7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][376] ([i915#9808])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/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][377] ([i915#12316]) +3 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/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-primary-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][378] ([i915#11520]) +16 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-glk11: NOTRUN -> [SKIP][379] ([i915#11520]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#11520]) +14 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][381] ([i915#11520]) +4 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-10/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][382] ([i915#11520]) +3 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][383] ([i915#11520]) +4 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-12/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][384] ([i915#11520]) +9 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][385] ([i915#11520]) +6 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][386] ([i915#9683])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#9683]) +1 other test skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg1: NOTRUN -> [SKIP][388] ([i915#1072] / [i915#9732]) +11 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-12/igt@kms_psr@fbc-pr-sprite-render.html
- shard-tglu: NOTRUN -> [SKIP][389] ([i915#9732]) +17 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-2/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr-dpms:
- shard-dg2: NOTRUN -> [SKIP][390] ([i915#1072] / [i915#9732]) +18 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr2-sprite-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][391] ([i915#1072] / [i915#14544] / [i915#9732])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html
* igt@kms_psr@pr-primary-page-flip:
- shard-mtlp: NOTRUN -> [SKIP][392] ([i915#9688]) +11 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-2/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-rkl: NOTRUN -> [SKIP][393] ([i915#1072] / [i915#9732]) +28 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][394] ([i915#4077] / [i915#9688]) +1 other test skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-5/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][395] ([i915#9732]) +13 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][396] ([i915#14544] / [i915#9685]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: NOTRUN -> [SKIP][397] ([i915#9685])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-mtlp: NOTRUN -> [SKIP][398] ([i915#12755]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-6/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][399] ([i915#4235])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_rotation_crc@exhaust-fences.html
- shard-mtlp: NOTRUN -> [SKIP][400] ([i915#4235])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-4/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][401] ([i915#15500])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk6/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk: NOTRUN -> [INCOMPLETE][402] ([i915#15492])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][403] ([i915#5289])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2: NOTRUN -> [SKIP][404] ([i915#5190])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][405] ([i915#5289])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][406] ([i915#5289]) +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][407] ([i915#12755]) +1 other test skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][408] ([i915#8623])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-glk10: NOTRUN -> [FAIL][409] ([i915#10959])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk10/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][410] ([i915#15243] / [i915#3555]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][411] ([i915#9906]) +1 other test skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-10/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][412] ([i915#3555] / [i915#8808])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-5/igt@kms_vrr@flipline.html
- shard-dg2: NOTRUN -> [SKIP][413] ([i915#15243] / [i915#3555])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_vrr@flipline.html
- shard-rkl: NOTRUN -> [SKIP][414] ([i915#14544] / [i915#15243] / [i915#3555])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][415] ([i915#9906])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [SKIP][416] +16 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-dg2: NOTRUN -> [SKIP][417] ([i915#2436])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-rkl: NOTRUN -> [SKIP][418] ([i915#2436])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][419] ([i915#7387])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-3/igt@perf@global-sseu-config-invalid.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][420] ([i915#2433])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-1/igt@perf@unprivileged-single-ctx-counters.html
- shard-dg1: NOTRUN -> [SKIP][421] ([i915#2433]) +1 other test skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-accuracy-98:
- shard-snb: NOTRUN -> [SKIP][422] +146 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-snb6/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@busy-accuracy-98@rcs0:
- shard-tglu: NOTRUN -> [FAIL][423] ([i915#4349]) +1 other test fail
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-7/igt@perf_pmu@busy-accuracy-98@rcs0.html
* igt@perf_pmu@event-wait:
- shard-mtlp: NOTRUN -> [SKIP][424] ([i915#8807])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-6/igt@perf_pmu@event-wait.html
* igt@perf_pmu@event-wait@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][425] ([i915#3555] / [i915#8807])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-6/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][426] ([i915#15778])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk5/igt@perf_pmu@module-unload.html
- shard-rkl: NOTRUN -> [ABORT][427] ([i915#15778])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-3/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][428] ([i915#8516])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-1/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-write:
- shard-mtlp: NOTRUN -> [SKIP][429] ([i915#10216] / [i915#3708])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-5/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][430] ([i915#3708] / [i915#4077])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-1/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][431] ([i915#3708])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][432] ([i915#9917])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-mtlp: NOTRUN -> [FAIL][433] ([i915#12910]) +9 other tests fail
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-8/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Possible fixes ####
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [INCOMPLETE][434] ([i915#13356]) -> [PASS][435] +1 other test pass
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_eio@in-flight-suspend:
- shard-rkl: [INCOMPLETE][436] ([i915#13390]) -> [PASS][437]
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@gem_eio@in-flight-suspend.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_big@single:
- shard-rkl: [DMESG-FAIL][438] ([i915#15478]) -> [PASS][439]
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-5/igt@gem_exec_big@single.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@gem_exec_big@single.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][440] ([i915#13356]) -> [PASS][441] +2 other tests pass
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-7/igt@gem_exec_suspend@basic-s0.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@gem_exec_suspend@basic-s0.html
* igt@gem_lmem_swapping@smem-oom:
- shard-dg2: [FAIL][442] ([i915#15734]) -> [PASS][443]
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-1/igt@gem_lmem_swapping@smem-oom.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [CRASH][444] ([i915#5493]) -> [PASS][445]
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-rkl: [SKIP][446] ([i915#4270]) -> [PASS][447]
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-1.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-glk: [INCOMPLETE][448] ([i915#13356] / [i915#14586]) -> [PASS][449]
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk2/igt@gem_workarounds@suspend-resume-fd.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk1/igt@gem_workarounds@suspend-resume-fd.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][450] ([i915#12761]) -> [PASS][451]
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk8/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][452] ([i915#5956]) -> [PASS][453] +1 other test pass
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_cursor_legacy@cursora-vs-flipa-legacy:
- shard-dg1: [DMESG-WARN][454] ([i915#4423]) -> [PASS][455] +2 other tests pass
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-17/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-14/igt@kms_cursor_legacy@cursora-vs-flipa-legacy.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][456] ([i915#14033]) -> [PASS][457] +1 other test pass
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- shard-dg2: [FAIL][458] ([i915#15389] / [i915#6880]) -> [PASS][459]
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: [SKIP][460] ([i915#3555] / [i915#8228]) -> [PASS][461]
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-5/igt@kms_hdr@bpc-switch.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_hdr@bpc-switch.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: [INCOMPLETE][462] ([i915#14412]) -> [PASS][463] +1 other test pass
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [SKIP][464] ([i915#6953]) -> [PASS][465]
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [SKIP][466] ([i915#9340]) -> [PASS][467]
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#15073]) -> [PASS][469]
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][470] ([i915#15073]) -> [PASS][471] +1 other test pass
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][472] ([i915#15073]) -> [PASS][473] +2 other tests pass
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [INCOMPLETE][474] ([i915#14419]) -> [PASS][475]
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-7/igt@kms_pm_rpm@system-suspend-idle.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-1/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create:
- shard-glk: [ABORT][476] ([i915#13179]) -> [PASS][477]
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk6/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html
* igt@perf_pmu@busy-idle-check-all@ccs0:
- shard-mtlp: [FAIL][478] ([i915#4349]) -> [PASS][479] +4 other tests pass
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-mtlp-4/igt@perf_pmu@busy-idle-check-all@ccs0.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@ccs0.html
* igt@perf_pmu@busy-idle-check-all@vcs0:
- shard-dg2: [FAIL][480] ([i915#4349]) -> [PASS][481] +5 other tests pass
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-3/igt@perf_pmu@busy-idle-check-all@vcs0.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-8/igt@perf_pmu@busy-idle-check-all@vcs0.html
* igt@perf_pmu@busy-idle-check-all@vecs0:
- shard-dg1: [FAIL][482] ([i915#4349]) -> [PASS][483] +3 other tests pass
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-17/igt@perf_pmu@busy-idle-check-all@vecs0.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@perf_pmu@busy-idle-check-all@vecs0.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][484] ([i915#3555] / [i915#9323]) -> [SKIP][485] ([i915#14544] / [i915#3555] / [i915#9323])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_exec_big@single:
- shard-tglu: [DMESG-FAIL][486] ([i915#15478]) -> [FAIL][487] ([i915#15816])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-tglu-10/igt@gem_exec_big@single.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-tglu-7/igt@gem_exec_big@single.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: [SKIP][488] ([i915#3281]) -> [SKIP][489] ([i915#14544] / [i915#3281])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: [SKIP][490] ([i915#2190]) -> [SKIP][491] ([i915#14544] / [i915#2190])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][492] ([i915#4613] / [i915#7582]) -> [SKIP][493] ([i915#14544] / [i915#4613] / [i915#7582])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@gem_lmem_evict@dontneed-evict-race.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_readwrite@read-bad-handle:
- shard-rkl: [SKIP][494] ([i915#3282]) -> [SKIP][495] ([i915#14544] / [i915#3282]) +1 other test skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@gem_readwrite@read-bad-handle.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@gem_readwrite@read-bad-handle.html
* igt@gen3_render_tiledx_blits:
- shard-rkl: [SKIP][496] -> [SKIP][497] ([i915#14544]) +1 other test skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@gen3_render_tiledx_blits.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@gen3_render_tiledx_blits.html
* igt@gen9_exec_parse@bb-large:
- shard-rkl: [SKIP][498] ([i915#14544] / [i915#2527]) -> [SKIP][499] ([i915#2527])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@gen9_exec_parse@bb-large.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@gen9_exec_parse@bb-large.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][500] ([i915#6412]) -> [SKIP][501] ([i915#14544] / [i915#6412])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@i915_module_load@resize-bar.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@i915_module_load@resize-bar.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][502] ([i915#5286]) -> [SKIP][503] ([i915#14544] / [i915#5286]) +1 other test skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][504] ([i915#3828]) -> [SKIP][505] ([i915#14544] / [i915#3828])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs:
- shard-rkl: [SKIP][506] ([i915#14098] / [i915#6095]) -> [SKIP][507] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][508] ([i915#12313]) -> [SKIP][509] ([i915#12313] / [i915#14544]) +1 other test skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk: [INCOMPLETE][510] ([i915#15582]) -> [INCOMPLETE][511] ([i915#14694] / [i915#15582]) +1 other test incomplete
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][512] ([i915#3742]) -> [SKIP][513] ([i915#14544] / [i915#3742])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-rkl: [SKIP][514] ([i915#14544]) -> [SKIP][515] +1 other test skip
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_chamelium_color@ctm-0-50.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_content_protection@atomic:
- shard-dg2: [SKIP][516] ([i915#6944] / [i915#7118] / [i915#9424]) -> [FAIL][517] ([i915#7173])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-5/igt@kms_content_protection@atomic.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-10/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [FAIL][518] ([i915#7173]) -> [SKIP][519] ([i915#6944] / [i915#7118] / [i915#9424])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: [SKIP][520] ([i915#13049]) -> [SKIP][521] ([i915#13049] / [i915#14544])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: [SKIP][522] ([i915#14544] / [i915#4103]) -> [SKIP][523] ([i915#4103])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: [SKIP][524] ([i915#14544] / [i915#658]) -> [SKIP][525] ([i915#658])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_feature_discovery@psr2.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-7/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-rkl: [SKIP][526] ([i915#9934]) -> [SKIP][527] ([i915#14544] / [i915#9934])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][528] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][529] ([i915#12314] / [i915#12745] / [i915#4839])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk4/igt@kms_flip@2x-flip-vs-suspend.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk8/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][530] ([i915#4839]) -> [INCOMPLETE][531] ([i915#12314] / [i915#4839])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk4/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: [SKIP][532] ([i915#15643]) -> [SKIP][533] ([i915#14544] / [i915#15643])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-dg1: [SKIP][534] ([i915#15643]) -> [SKIP][535] ([i915#15643] / [i915#4423])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][536] ([i915#15102]) -> [SKIP][537] ([i915#14544] / [i915#15102])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][538] ([i915#15104]) -> [SKIP][539] ([i915#15104] / [i915#4423])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg1: [SKIP][540] ([i915#15102] / [i915#3458]) -> [SKIP][541] ([i915#15102] / [i915#3458] / [i915#4423]) +1 other test skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
- shard-rkl: [SKIP][542] ([i915#14544] / [i915#1825]) -> [SKIP][543] ([i915#1825])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][544] ([i915#1825]) -> [SKIP][545] ([i915#14544] / [i915#1825]) +5 other tests skip
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: [SKIP][546] ([i915#15102] / [i915#3023]) -> [SKIP][547] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: [SKIP][548] ([i915#15102] / [i915#3458]) -> [SKIP][549] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: [SKIP][550] ([i915#9766]) -> [SKIP][551] ([i915#14544] / [i915#9766])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][552] ([i915#14544] / [i915#15102]) -> [SKIP][553] ([i915#15102])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: [SKIP][554] ([i915#4423] / [i915#8708]) -> [SKIP][555] ([i915#8708])
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][556] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][557] ([i915#15102] / [i915#3458]) +1 other test skip
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][558] ([i915#1187] / [i915#12713]) -> [SKIP][559] ([i915#12713])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: [SKIP][560] ([i915#14712]) -> [SKIP][561] ([i915#14544] / [i915#14712])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
- shard-dg1: [SKIP][562] ([i915#15709] / [i915#4423]) -> [SKIP][563] ([i915#15709])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-16/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-16/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-rkl: [SKIP][564] ([i915#15709]) -> [SKIP][565] ([i915#14544] / [i915#15709]) +3 other tests skip
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: [SKIP][566] ([i915#12343]) -> [SKIP][567] ([i915#12343] / [i915#14544])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-8/igt@kms_pm_backlight@brightness-with-dpms.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [ABORT][568] ([i915#15132]) -> [INCOMPLETE][569] ([i915#14419])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-1/igt@kms_pm_rpm@system-suspend-modeset.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-rkl: [SKIP][570] ([i915#11520]) -> [SKIP][571] ([i915#11520] / [i915#14544]) +1 other test skip
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-rkl: [SKIP][572] ([i915#11520] / [i915#14544]) -> [SKIP][573] ([i915#11520])
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-psr2-basic:
- shard-dg1: [SKIP][574] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][575] ([i915#1072] / [i915#9732]) +1 other test skip
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-dg1-17/igt@kms_psr@fbc-psr2-basic.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-dg1-17/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: [SKIP][576] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][577] ([i915#1072] / [i915#9732]) +1 other test skip
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-rkl: [SKIP][578] ([i915#1072] / [i915#9732]) -> [SKIP][579] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-5/igt@kms_psr@psr2-cursor-plane-move.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-glk: [DMESG-FAIL][580] -> [ABORT][581] ([i915#13179])
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-glk5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-glk6/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: [SKIP][582] ([i915#9906]) -> [SKIP][583] ([i915#14544] / [i915#9906])
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-virtual.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][584] ([i915#14544] / [i915#2434]) -> [SKIP][585] ([i915#2434])
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@perf@mi-rpc.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-4/igt@perf@mi-rpc.html
* igt@prime_vgem@basic-read:
- shard-rkl: [SKIP][586] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][587] ([i915#3291] / [i915#3708])
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18167/shard-rkl-6/igt@prime_vgem@basic-read.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14790/shard-rkl-3/igt@prime_vgem@basic-read.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[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#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[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#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[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#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[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#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#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#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#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15734
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[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#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[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#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[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#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[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#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[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#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[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#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6645
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#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#8807]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8807
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8807 -> IGTPW_14790
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18167: 90a49598c224945b556bee26d693fade1b8bdb3a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14790: 9a888540b9bfa1438aeafcf979ead717c778ba72 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ 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_14790/index.html
[-- Attachment #2: Type: text/html, Size: 200353 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.FULL: success for tests/intel/kms_dirtyfb: Pass output to PSR helpers
2026-03-17 8:36 [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers Jeevan B
` (3 preceding siblings ...)
2026-03-19 2:52 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-03-19 6:12 ` Patchwork
4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-03-19 6:12 UTC (permalink / raw)
To: B, Jeevan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 48920 bytes --]
== Series Details ==
Series: tests/intel/kms_dirtyfb: Pass output to PSR helpers
URL : https://patchwork.freedesktop.org/series/163363/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8807_FULL -> XEIGTPW_14790_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14790_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- shard-bmg: [PASS][1] -> [ABORT][2] ([Intel XE#7249] / [Intel XE#7578])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-2/igt@core_hotunplug@unbind-rebind.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#7059] / [Intel XE#7085])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +7 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#367] / [Intel XE#7354])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +6 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#3432])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2652]) +8 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2252]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][11] ([Intel XE#3304] / [Intel XE#7374])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][12] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#7194]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2321] / [Intel XE#7355])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2320]) +5 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2:
- shard-bmg: NOTRUN -> [FAIL][16] ([Intel XE#6841]) +2 other tests fail
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2291]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2291])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#2316]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][22] ([Intel XE#6266]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][23] -> [FAIL][24] ([Intel XE#301]) +2 other tests fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][25] -> [INCOMPLETE][26] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2311]) +18 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2312]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#4141]) +6 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2313]) +14 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2352] / [Intel XE#7399])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#7308])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#1503])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#1503])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_hdr@static-toggle-suspend.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7283])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [PASS][40] -> [SKIP][41] ([Intel XE#4596])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#5021] / [Intel XE#7377])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#2571] / [Intel XE#7343])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7376] / [Intel XE#870])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2391] / [Intel XE#6927])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][48] -> [FAIL][49] ([Intel XE#7340] / [Intel XE#7504])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][50] -> [FAIL][51] ([Intel XE#7340])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2505] / [Intel XE#7447])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-1/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#1489]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2387] / [Intel XE#7429])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1406] / [Intel XE#2414])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_sharpness_filter@filter-toggle:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#6503])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-1/igt@kms_sharpness_filter@filter-toggle.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2168] / [Intel XE#7444])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1499]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-2/igt@kms_vrr@flip-suspend.html
* igt@xe_eudebug@vma-ufence:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#4837]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@xe_eudebug@vma-ufence.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-1/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][62] -> [INCOMPLETE][63] ([Intel XE#6321])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-4/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-rebind-imm:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#7136]) +6 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-rebind-imm.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#6874]) +17 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-4/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7138]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#1420])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2284] / [Intel XE#7370])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@xe_pm@d3cold-basic.html
* igt@xe_pxp@pxp-stale-queue-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#4733] / [Intel XE#7417])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html
* igt@xe_query@multigpu-query-engines:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#944])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-1/igt@xe_query@multigpu-query-engines.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#6569])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@core_hotunplug@hotreplug:
- shard-bmg: [ABORT][74] ([Intel XE#7578]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-8/igt@core_hotunplug@hotreplug.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-2/igt@core_hotunplug@hotreplug.html
* igt@core_hotunplug@hotunplug-rescan:
- shard-bmg: [SKIP][76] ([Intel XE#6779]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-4/igt@core_hotunplug@hotunplug-rescan.html
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][78] ([Intel XE#7445]) -> [PASS][79]
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][80] ([Intel XE#2291]) -> [PASS][81] +3 other tests pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [SKIP][82] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [SKIP][84] ([Intel XE#2316]) -> [PASS][85] +4 other tests pass
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][86] ([Intel XE#301]) -> [PASS][87] +1 other test pass
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
- shard-bmg: [INCOMPLETE][88] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][89] +1 other test pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3:
- shard-bmg: [DMESG-FAIL][90] ([Intel XE#5545]) -> [PASS][91] +1 other test pass
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-9/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [SKIP][92] ([Intel XE#1503]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_hdr@static-toggle.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-1/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][94] ([Intel XE#7086]) -> [PASS][95] +1 other test pass
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][96] ([Intel XE#7340]) -> [PASS][97] +1 other test pass
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][98] ([Intel XE#1435]) -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: [FAIL][100] ([Intel XE#5937]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_exec_system_allocator@fault-threads-benchmark:
- shard-bmg: [FAIL][102] -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_exec_system_allocator@fault-threads-benchmark.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@xe_exec_system_allocator@fault-threads-benchmark.html
* igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset:
- shard-bmg: [SKIP][104] ([Intel XE#6703]) -> [PASS][105] +117 other tests pass
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset.html
* igt@xe_exec_system_allocator@twice-large-mmap:
- shard-bmg: [SKIP][106] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][107] +2 other tests pass
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_system_allocator@twice-large-mmap.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-8/igt@xe_exec_system_allocator@twice-large-mmap.html
#### Warnings ####
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][108] ([Intel XE#6703]) -> [SKIP][109] ([Intel XE#1124]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][110] ([Intel XE#6703]) -> [SKIP][111] ([Intel XE#7621])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][112] ([Intel XE#6703]) -> [SKIP][113] ([Intel XE#2887]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-bmg: [SKIP][114] ([Intel XE#6703]) -> [SKIP][115] ([Intel XE#2252]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-read.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][116] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][117] ([Intel XE#2341])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_content_protection@atomic.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-bmg: [SKIP][118] ([Intel XE#7194]) -> [FAIL][119] ([Intel XE#3304] / [Intel XE#7374])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][120] ([Intel XE#6703]) -> [SKIP][121] ([Intel XE#2390] / [Intel XE#6974])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-bmg: [SKIP][122] ([Intel XE#7194]) -> [FAIL][123] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-bmg: [SKIP][124] ([Intel XE#6703]) -> [SKIP][125] ([Intel XE#2320])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-random-256x85.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: [SKIP][126] ([Intel XE#6703]) -> [SKIP][127] ([Intel XE#2321] / [Intel XE#7355])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: [SKIP][128] ([Intel XE#6703]) -> [SKIP][129] ([Intel XE#2244])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_dsc@dsc-with-formats.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-4/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: [SKIP][130] ([Intel XE#6703]) -> [SKIP][131] ([Intel XE#7178] / [Intel XE#7351])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][132] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][133] ([Intel XE#2311])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][134] ([Intel XE#2312]) -> [SKIP][135] ([Intel XE#2311]) +13 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][136] ([Intel XE#2311]) -> [SKIP][137] ([Intel XE#2312]) +8 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][138] ([Intel XE#6703]) -> [SKIP][139] ([Intel XE#2311]) +6 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][140] ([Intel XE#6703]) -> [SKIP][141] ([Intel XE#4141]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][142] ([Intel XE#4141]) -> [SKIP][143] ([Intel XE#2312]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][144] ([Intel XE#2312]) -> [SKIP][145] ([Intel XE#4141]) +10 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: [SKIP][146] ([Intel XE#6703]) -> [SKIP][147] ([Intel XE#2352] / [Intel XE#7399])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][148] ([Intel XE#6703]) -> [SKIP][149] ([Intel XE#2313]) +6 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][150] ([Intel XE#2312]) -> [SKIP][151] ([Intel XE#2313]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][152] ([Intel XE#2313]) -> [SKIP][153] ([Intel XE#2312]) +7 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
- shard-bmg: [SKIP][154] ([Intel XE#6703]) -> [SKIP][155] ([Intel XE#2312])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][156] ([Intel XE#3544]) -> [SKIP][157] ([Intel XE#3374] / [Intel XE#3544])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: [SKIP][158] ([Intel XE#6703]) -> [SKIP][159] ([Intel XE#6901])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_joiner@basic-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: [SKIP][160] ([Intel XE#6703]) -> [SKIP][161] ([Intel XE#7591])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-bmg: [SKIP][162] ([Intel XE#6703]) -> [SKIP][163] ([Intel XE#7283])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-bmg: [SKIP][164] ([Intel XE#6703]) -> [SKIP][165] ([Intel XE#2763] / [Intel XE#6886])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][166] ([Intel XE#6703]) -> [SKIP][167] ([Intel XE#1489])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-8/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-bmg: [SKIP][168] ([Intel XE#6703]) -> [SKIP][169] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr@pr-cursor-plane-onoff.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-1/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_sharpness_filter@filter-basic:
- shard-bmg: [SKIP][170] ([Intel XE#6703]) -> [SKIP][171] ([Intel XE#6503])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_sharpness_filter@filter-basic.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-8/igt@kms_sharpness_filter@filter-basic.html
* igt@xe_eudebug@multigpu-basic-client:
- shard-bmg: [SKIP][172] ([Intel XE#6703]) -> [SKIP][173] ([Intel XE#4837])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_eudebug@multigpu-basic-client.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-6/igt@xe_eudebug@multigpu-basic-client.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: [SKIP][174] ([Intel XE#6703]) -> [SKIP][175] ([Intel XE#7140])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_evict@evict-threads-small-multi-queue.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-1/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: [SKIP][176] ([Intel XE#6703]) -> [SKIP][177] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm:
- shard-bmg: [SKIP][178] ([Intel XE#6703]) -> [SKIP][179] ([Intel XE#7136]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem:
- shard-bmg: [SKIP][180] ([Intel XE#6703]) -> [SKIP][181] ([Intel XE#6874]) +5 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-8/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
- shard-bmg: [SKIP][182] ([Intel XE#6703]) -> [SKIP][183] ([Intel XE#7138]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: [SKIP][184] ([Intel XE#6703]) -> [SKIP][185] ([Intel XE#2284] / [Intel XE#7370])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/shard-bmg-1/igt@xe_pm@d3cold-mmap-system.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[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#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
[Intel XE#6841]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6841
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
[Intel XE#7249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7249
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8807 -> IGTPW_14790
* Linux: xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6 -> xe-4738-90a49598c224945b556bee26d693fade1b8bdb3a
IGTPW_14790: 9a888540b9bfa1438aeafcf979ead717c778ba72 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6: 113073d07f958385b5b80d29b62e10d2cf0181d6
xe-4738-90a49598c224945b556bee26d693fade1b8bdb3a: 90a49598c224945b556bee26d693fade1b8bdb3a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14790/index.html
[-- Attachment #2: Type: text/html, Size: 58850 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-03-19 6:12 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-17 8:36 [PATCH i-g-t] tests/intel/kms_dirtyfb: Pass output to PSR helpers Jeevan B
2026-03-17 11:29 ` Hogander, Jouni
2026-03-17 20:45 ` ✓ i915.CI.BAT: success for " Patchwork
2026-03-17 20:54 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-19 2:52 ` ✗ i915.CI.Full: failure " Patchwork
2026-03-19 6:12 ` ✓ Xe.CI.FULL: success " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2026-03-18 3:12 [PATCH i-g-t] " Jeevan B
2026-03-18 5:17 ` Samala, Pranay
2026-03-18 6:16 ` B, Jeevan
2026-03-18 14:09 ` Hogander, Jouni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox