* [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner
@ 2026-06-03 7:36 Jeevan B
2026-06-03 9:14 ` Jani Nikula
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Jeevan B @ 2026-06-03 7:36 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, Jeevan B
Use '>=' instead of '>' so modes equal to max hdisplay or dotclock
are considered for bigjoiner.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
lib/igt_kms.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 0f1ce03a9..e5ffaeac1 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6946,8 +6946,8 @@ static int get_max_pipe_hdisplay(int drm_fd)
*/
bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int max_dotclock)
{
- return (mode->hdisplay > get_max_pipe_hdisplay(drm_fd) ||
- mode->clock > max_dotclock);
+ return (mode->hdisplay >= get_max_pipe_hdisplay(drm_fd) ||
+ mode->clock >= max_dotclock);
}
/**
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner
2026-06-03 7:36 [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner Jeevan B
@ 2026-06-03 9:14 ` Jani Nikula
2026-06-03 9:36 ` B, Jeevan
2026-06-03 12:59 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Jani Nikula @ 2026-06-03 9:14 UTC (permalink / raw)
To: Jeevan B, igt-dev; +Cc: karthik.b.s, Jeevan B
On Wed, 03 Jun 2026, Jeevan B <jeevan.b@intel.com> wrote:
> Use '>=' instead of '>' so modes equal to max hdisplay or dotclock
> are considered for bigjoiner.
I can see that from the code changes.
Why?
>
> Signed-off-by: Jeevan B <jeevan.b@intel.com>
> ---
> lib/igt_kms.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index 0f1ce03a9..e5ffaeac1 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -6946,8 +6946,8 @@ static int get_max_pipe_hdisplay(int drm_fd)
> */
> bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int max_dotclock)
> {
> - return (mode->hdisplay > get_max_pipe_hdisplay(drm_fd) ||
> - mode->clock > max_dotclock);
> + return (mode->hdisplay >= get_max_pipe_hdisplay(drm_fd) ||
> + mode->clock >= max_dotclock);
> }
>
> /**
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner
2026-06-03 9:14 ` Jani Nikula
@ 2026-06-03 9:36 ` B, Jeevan
2026-06-03 9:51 ` Jani Nikula
0 siblings, 1 reply; 9+ messages in thread
From: B, Jeevan @ 2026-06-03 9:36 UTC (permalink / raw)
To: Nikula, Jani, igt-dev@lists.freedesktop.org; +Cc: B S, Karthik
> -----Original Message-----
> From: Nikula, Jani <jani.nikula@intel.com>
> Sent: Wednesday, June 3, 2026 2:44 PM
> To: B, Jeevan <jeevan.b@intel.com>; igt-dev@lists.freedesktop.org
> Cc: B S, Karthik <karthik.b.s@intel.com>; B, Jeevan <jeevan.b@intel.com>
> Subject: Re: [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner
>
> On Wed, 03 Jun 2026, Jeevan B <jeevan.b@intel.com> wrote:
> > Use '>=' instead of '>' so modes equal to max hdisplay or dotclock are
> > considered for bigjoiner.
>
> I can see that from the code changes.
>
> Why?
Boundary modes like 6144 and 5140 are skipped with >, even though they require a joiner. Switching to >= ensures they are correctly handled and fixes the test failures.
Thanks
Jeevan B
>
> >
> > Signed-off-by: Jeevan B <jeevan.b@intel.com>
> > ---
> > lib/igt_kms.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 0f1ce03a9..e5ffaeac1
> > 100644
> > --- a/lib/igt_kms.c
> > +++ b/lib/igt_kms.c
> > @@ -6946,8 +6946,8 @@ static int get_max_pipe_hdisplay(int drm_fd)
> > */
> > bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int
> > max_dotclock) {
> > - return (mode->hdisplay > get_max_pipe_hdisplay(drm_fd) ||
> > - mode->clock > max_dotclock);
> > + return (mode->hdisplay >= get_max_pipe_hdisplay(drm_fd) ||
> > + mode->clock >= max_dotclock);
> > }
> >
> > /**
>
> --
> Jani Nikula, Intel
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner
2026-06-03 9:36 ` B, Jeevan
@ 2026-06-03 9:51 ` Jani Nikula
2026-06-03 10:15 ` B, Jeevan
0 siblings, 1 reply; 9+ messages in thread
From: Jani Nikula @ 2026-06-03 9:51 UTC (permalink / raw)
To: B, Jeevan, igt-dev@lists.freedesktop.org; +Cc: B S, Karthik
On Wed, 03 Jun 2026, "B, Jeevan" <jeevan.b@intel.com> wrote:
>> -----Original Message-----
>> From: Nikula, Jani <jani.nikula@intel.com>
>> Sent: Wednesday, June 3, 2026 2:44 PM
>> To: B, Jeevan <jeevan.b@intel.com>; igt-dev@lists.freedesktop.org
>> Cc: B S, Karthik <karthik.b.s@intel.com>; B, Jeevan <jeevan.b@intel.com>
>> Subject: Re: [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner
>>
>> On Wed, 03 Jun 2026, Jeevan B <jeevan.b@intel.com> wrote:
>> > Use '>=' instead of '>' so modes equal to max hdisplay or dotclock are
>> > considered for bigjoiner.
>>
>> I can see that from the code changes.
>>
>> Why?
> Boundary modes like 6144 and 5140 are skipped with >, even though they require a joiner. Switching to >= ensures they are correctly handled and fixes the test failures.
The point is, all of that should be in the commit message.
And then we'd immediately see the discrepancy in that
get_max_pipe_hdisplay() is supposed to return "The maximum hdisplay
supported per pipe" i.e. joiner shouldn't be required.
I think ditto for max dotclock.
Whatever the problem is, all of these need to be consistent.
Side note, igt_bigjoiner_possible() documentation comment mentions 5K,
which is also outdated.
BR,
Jani.
>
> Thanks
> Jeevan B
>>
>> >
>> > Signed-off-by: Jeevan B <jeevan.b@intel.com>
>> > ---
>> > lib/igt_kms.c | 4 ++--
>> > 1 file changed, 2 insertions(+), 2 deletions(-)
>> >
>> > diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 0f1ce03a9..e5ffaeac1
>> > 100644
>> > --- a/lib/igt_kms.c
>> > +++ b/lib/igt_kms.c
>> > @@ -6946,8 +6946,8 @@ static int get_max_pipe_hdisplay(int drm_fd)
>> > */
>> > bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int
>> > max_dotclock) {
>> > - return (mode->hdisplay > get_max_pipe_hdisplay(drm_fd) ||
>> > - mode->clock > max_dotclock);
>> > + return (mode->hdisplay >= get_max_pipe_hdisplay(drm_fd) ||
>> > + mode->clock >= max_dotclock);
>> > }
>> >
>> > /**
>>
>> --
>> Jani Nikula, Intel
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner
2026-06-03 9:51 ` Jani Nikula
@ 2026-06-03 10:15 ` B, Jeevan
0 siblings, 0 replies; 9+ messages in thread
From: B, Jeevan @ 2026-06-03 10:15 UTC (permalink / raw)
To: Nikula, Jani, igt-dev@lists.freedesktop.org; +Cc: B S, Karthik
> -----Original Message-----
> From: Nikula, Jani <jani.nikula@intel.com>
> Sent: Wednesday, June 3, 2026 3:22 PM
> To: B, Jeevan <jeevan.b@intel.com>; igt-dev@lists.freedesktop.org
> Cc: B S, Karthik <karthik.b.s@intel.com>
> Subject: RE: [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner
>
> On Wed, 03 Jun 2026, "B, Jeevan" <jeevan.b@intel.com> wrote:
> >> -----Original Message-----
> >> From: Nikula, Jani <jani.nikula@intel.com>
> >> Sent: Wednesday, June 3, 2026 2:44 PM
> >> To: B, Jeevan <jeevan.b@intel.com>; igt-dev@lists.freedesktop.org
> >> Cc: B S, Karthik <karthik.b.s@intel.com>; B, Jeevan
> >> <jeevan.b@intel.com>
> >> Subject: Re: [PATCH i-g-t] lib/igt_kms: treat equal limits as
> >> bigjoiner
> >>
> >> On Wed, 03 Jun 2026, Jeevan B <jeevan.b@intel.com> wrote:
> >> > Use '>=' instead of '>' so modes equal to max hdisplay or dotclock
> >> > are considered for bigjoiner.
> >>
> >> I can see that from the code changes.
> >>
> >> Why?
> > Boundary modes like 6144 and 5140 are skipped with >, even though they
> require a joiner. Switching to >= ensures they are correctly handled and fixes the
> test failures.
>
> The point is, all of that should be in the commit message.
>
> And then we'd immediately see the discrepancy in that
> get_max_pipe_hdisplay() is supposed to return "The maximum hdisplay supported
> per pipe" i.e. joiner shouldn't be required.
>
> I think ditto for max dotclock.
>
> Whatever the problem is, all of these need to be consistent.
>
> Side note, igt_bigjoiner_possible() documentation comment mentions 5K, which is
> also outdated.
>
Hi Jani,
Thanks, agreed. I will address them and refloat.
Thanks,
Jeevan
> >>
> >> >
> >> > Signed-off-by: Jeevan B <jeevan.b@intel.com>
> >> > ---
> >> > lib/igt_kms.c | 4 ++--
> >> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >> >
> >> > diff --git a/lib/igt_kms.c b/lib/igt_kms.c index
> >> > 0f1ce03a9..e5ffaeac1
> >> > 100644
> >> > --- a/lib/igt_kms.c
> >> > +++ b/lib/igt_kms.c
> >> > @@ -6946,8 +6946,8 @@ static int get_max_pipe_hdisplay(int drm_fd)
> >> > */
> >> > bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int
> >> > max_dotclock) {
> >> > - return (mode->hdisplay > get_max_pipe_hdisplay(drm_fd) ||
> >> > - mode->clock > max_dotclock);
> >> > + return (mode->hdisplay >= get_max_pipe_hdisplay(drm_fd) ||
> >> > + mode->clock >= max_dotclock);
> >> > }
> >> >
> >> > /**
> >>
> >> --
> >> Jani Nikula, Intel
>
> --
> Jani Nikula, Intel
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for lib/igt_kms: treat equal limits as bigjoiner
2026-06-03 7:36 [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner Jeevan B
2026-06-03 9:14 ` Jani Nikula
@ 2026-06-03 12:59 ` Patchwork
2026-06-03 13:44 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-06-03 12:59 UTC (permalink / raw)
To: B, Jeevan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1070 bytes --]
== Series Details ==
Series: lib/igt_kms: treat equal limits as bigjoiner
URL : https://patchwork.freedesktop.org/series/167803/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8947_BAT -> XEIGTPW_15295_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8947 -> IGTPW_15295
* Linux: xe-5186-dae47e6a1cce1d19d56c27b48b2670d4094ecbdc -> xe-5192-eb42f7e0ec818a6be55482d88145d757acf3e093
IGTPW_15295: 15295
IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5186-dae47e6a1cce1d19d56c27b48b2670d4094ecbdc: dae47e6a1cce1d19d56c27b48b2670d4094ecbdc
xe-5192-eb42f7e0ec818a6be55482d88145d757acf3e093: eb42f7e0ec818a6be55482d88145d757acf3e093
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/index.html
[-- Attachment #2: Type: text/html, Size: 1629 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for lib/igt_kms: treat equal limits as bigjoiner
2026-06-03 7:36 [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner Jeevan B
2026-06-03 9:14 ` Jani Nikula
2026-06-03 12:59 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-06-03 13:44 ` Patchwork
2026-06-04 0:28 ` ✓ Xe.CI.FULL: " Patchwork
2026-06-04 11:23 ` ✓ i915.CI.Full: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-06-03 13:44 UTC (permalink / raw)
To: B, Jeevan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4886 bytes --]
== Series Details ==
Series: lib/igt_kms: treat equal limits as bigjoiner
URL : https://patchwork.freedesktop.org/series/167803/
State : success
== Summary ==
CI Bug Log - changes from IGT_8947 -> IGTPW_15295
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/index.html
Participating hosts (41 -> 39)
------------------------------
Additional (1): bat-adls-6
Missing (3): fi-hsw-4770 fi-snb-2520m bat-dg2-13
Known issues
------------
Here are the changes found in IGTPW_15295 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#15931])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/bat-adls-6/igt@dmabuf@all-tests.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-adls-6: NOTRUN -> [SKIP][3] ([i915#15656])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][4] ([i915#7707]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][5] ([i915#4103]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#3840])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][8] ([i915#5354])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][9] ([i915#1072] / [i915#9732]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][10] ([i915#3555])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#3291]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/bat-adls-6/igt@prime_vgem@basic-fence-read.html
* igt@vgem_basic@create:
- bat-adls-6: NOTRUN -> [FAIL][12] ([i915#16296])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/bat-adls-6/igt@vgem_basic@create.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#16296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16296
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8947 -> IGTPW_15295
* Linux: CI_DRM_18611 -> CI_DRM_18617
CI-20190529: 20190529
CI_DRM_18611: f059886850b97ea5c089703ba3e566a4f847fa19 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18617: 4354c70593040dcb61935903e0fe1c90ca531df7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15295: 15295
IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/index.html
[-- Attachment #2: Type: text/html, Size: 5873 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.FULL: success for lib/igt_kms: treat equal limits as bigjoiner
2026-06-03 7:36 [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner Jeevan B
` (2 preceding siblings ...)
2026-06-03 13:44 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-06-04 0:28 ` Patchwork
2026-06-04 11:23 ` ✓ i915.CI.Full: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-06-04 0:28 UTC (permalink / raw)
To: B, Jeevan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 24194 bytes --]
== Series Details ==
Series: lib/igt_kms: treat equal limits as bigjoiner
URL : https://patchwork.freedesktop.org/series/167803/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8947_FULL -> XEIGTPW_15295_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_15295_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2370])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2327]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#1124]) +6 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#7679])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#367])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2652]) +8 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-10/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2325] / [Intel XE#7358])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-7/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2252]) +4 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#6974])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][11] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-10/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2320]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [PASS][13] -> [FAIL][14] ([Intel XE#7809])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1508])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#4156] / [Intel XE#7425])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-5/igt@kms_fbcon_fbt@fbc.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1138] / [Intel XE#7344])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [PASS][18] -> [FAIL][19] ([Intel XE#3098]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][20] -> [FAIL][21] ([Intel XE#301])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7178] / [Intel XE#7349])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2311]) +28 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#4141]) +6 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7061]) +5 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2313]) +32 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_hdr@invalid-hdr@pipe-a-dp-2-xrgb16161616f:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#7922]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-3/igt@kms_hdr@invalid-hdr@pipe-a-dp-2-xrgb16161616f.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#7915]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-9/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-3/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_plane@pixel-format-y-tiled-modifier:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7283]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-3/igt@kms_plane@pixel-format-y-tiled-modifier.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2393])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#5020] / [Intel XE#7348])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][36] -> [FAIL][37] ([Intel XE#7340])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#1489]) +4 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@psr2-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-3/igt@kms_psr@psr2-no-drrs.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7795])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_sharpness_filter@filter-scaler-downscale:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#6503])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-8/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7636]) +7 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-7/igt@xe_eudebug_online@single-step.html
* igt@xe_evict@evict-small-multi-queue-priority:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7140])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-8/igt@xe_evict@evict-small-multi-queue-priority.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@twice-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7136]) +5 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-6/igt@xe_exec_fault_mode@twice-multi-queue.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#6874]) +15 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html
* igt@xe_exec_reset@cm-multi-queue-cat-error:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7866])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-8/igt@xe_exec_reset@cm-multi-queue-cat-error.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][48] ([Intel XE#7098] / [Intel XE#8159])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-new-huge:
- shard-lnl: [PASS][49] -> [ABORT][50] ([Intel XE#8007])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-new-huge.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-new-huge.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7138]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr-invalidate-race.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2229])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_multigpu_svm@mgpu-atomic-op-basic:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6964])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-4/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html
* igt@xe_page_reclaim@prl-max-entries:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7793])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-1/igt@xe_page_reclaim@prl-max-entries.html
* igt@xe_pat@pat-sw-hw-reset-compare:
- shard-bmg: NOTRUN -> [FAIL][55] ([Intel XE#7695])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-1/igt@xe_pat@pat-sw-hw-reset-compare.html
* igt@xe_pat@xa-app-transient-media-off:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7590]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-9/igt@xe_pat@xa-app-transient-media-off.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-5/igt@xe_peer2peer@read.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2284] / [Intel XE#7370])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-9/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: NOTRUN -> [FAIL][59] ([Intel XE#6569])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][60] -> [FAIL][61] ([Intel XE#6569])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-10/igt@xe_sriov_flr@flr-vfs-parallel.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-6/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][62] ([Intel XE#7571]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][64] ([Intel XE#301]) -> [PASS][65] +1 other test pass
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][66] ([Intel XE#7308]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-6/igt@kms_hdmi_inject@inject-audio.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010:
- shard-bmg: [SKIP][68] ([Intel XE#7915]) -> [PASS][69] +1 other test pass
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-8/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-4/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][70] ([Intel XE#7340] / [Intel XE#7504]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][72] ([Intel XE#7340]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [FAIL][74] ([Intel XE#6569]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8947/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/shard-bmg-7/igt@xe_sriov_flr@flr-vf1-clear.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[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#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[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#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[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#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
[Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809
[Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#7922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7922
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
Build changes
-------------
* IGT: IGT_8947 -> IGTPW_15295
* Linux: xe-5186-dae47e6a1cce1d19d56c27b48b2670d4094ecbdc -> xe-5192-eb42f7e0ec818a6be55482d88145d757acf3e093
IGTPW_15295: 15295
IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5186-dae47e6a1cce1d19d56c27b48b2670d4094ecbdc: dae47e6a1cce1d19d56c27b48b2670d4094ecbdc
xe-5192-eb42f7e0ec818a6be55482d88145d757acf3e093: eb42f7e0ec818a6be55482d88145d757acf3e093
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15295/index.html
[-- Attachment #2: Type: text/html, Size: 26583 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.Full: success for lib/igt_kms: treat equal limits as bigjoiner
2026-06-03 7:36 [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner Jeevan B
` (3 preceding siblings ...)
2026-06-04 0:28 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-06-04 11:23 ` Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-06-04 11:23 UTC (permalink / raw)
To: B, Jeevan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 143892 bytes --]
== Series Details ==
Series: lib/igt_kms: treat equal limits as bigjoiner
URL : https://patchwork.freedesktop.org/series/167803/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18617_full -> IGTPW_15295_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/index.html
Participating hosts (11 -> 10)
------------------------------
Missing (1): pig-kbl-iris
Known issues
------------
Here are the changes found in IGTPW_15295_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][1] ([i915#11078])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-16/igt@device_reset@cold-reset-bound.html
- shard-tglu: NOTRUN -> [SKIP][2] ([i915#11078])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-6/igt@device_reset@cold-reset-bound.html
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#11078])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-4/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#11078])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@device_reset@cold-reset-bound.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#9323])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][7] ([i915#13356] / [i915#16348])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#7697])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#6335])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-7/igt@gem_create@create-ext-cpu-access-big.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#6335])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [FAIL][11] ([i915#15454])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#6335])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][13] ([i915#1099]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-snb5/igt@gem_ctx_persistence@processes.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#4812]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@gem_exec_balancer@bonded-false-hang.html
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#4812]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-13/igt@gem_exec_balancer@bonded-false-hang.html
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#4812])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-4/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#4525])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-4/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_big@single:
- shard-mtlp: [PASS][18] -> [FAIL][19] ([i915#15871])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-mtlp-3/igt@gem_exec_big@single.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-6/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][20] ([i915#6334]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk3/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#3539] / [i915#4852])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#3539] / [i915#4852])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-15/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#3281]) +7 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-6/igt@gem_exec_reloc@basic-gtt-read.html
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#3281]) +6 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read.html
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#3281]) +4 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#3281]) +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-17/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4537] / [i915#4812])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-chain.html
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#4537] / [i915#4812])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#4860])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-12/igt@gem_fence_thrash@bo-copy.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#4613])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#4613]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@gem_lmem_swapping@parallel-multi.html
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4613]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-2/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][33] ([i915#4613]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk2/igt@gem_lmem_swapping@random-engines.html
- shard-tglu: NOTRUN -> [SKIP][34] ([i915#4613]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-9/igt@gem_lmem_swapping@random-engines.html
* igt@gem_mmap_gtt@cpuset-big-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#4077]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-16/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4077]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_gtt@ptrace:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4077]) +5 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-6/igt@gem_mmap_gtt@ptrace.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4083]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-3/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4083]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@gem_mmap_wc@write-gtt-read-wc.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4083]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-12/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3282]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-1/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3282]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#3282]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][44] ([i915#14702] / [i915#2658])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk2/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4270]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4270])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-12/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3282]) +4 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-5/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#8428]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-8/igt@gem_render_copy@y-tiled.html
* igt@gem_render_copy@yf-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#5190] / [i915#8428]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-5/igt@gem_render_copy@yf-tiled-to-vebox-linear.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: NOTRUN -> [INCOMPLETE][50] ([i915#13809] / [i915#16226])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3297]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][52] ([i915#3323])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#14544] / [i915#3297])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3297] / [i915#4880])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#3297]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-13/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#3297]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3297]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3297])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-2/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3281] / [i915#3297])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-8/igt@gem_userptr_blits@relocations.html
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#3281] / [i915#3297])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-7/igt@gem_userptr_blits@relocations.html
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#3281] / [i915#3297])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-17/igt@gem_userptr_blits@relocations.html
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3281] / [i915#3297])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-6/igt@gem_userptr_blits@relocations.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk11: NOTRUN -> [INCOMPLETE][63] ([i915#13356])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk11/igt@gem_workarounds@suspend-resume-context.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#2527] / [i915#2856]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-5/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#2527]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#2527]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-19/igt@gen9_exec_parse@bb-oversize.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#2856]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-2/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-far:
- shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#2856]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-1/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_drm_fdinfo@most-busy-idle-check-all:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#14073]) +6 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-1/igt@i915_drm_fdinfo@most-busy-idle-check-all.html
* igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#14073]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-14/igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#14073]) +15 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-5/igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#14118])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy.html
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#14118])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-15/igt@i915_drm_fdinfo@virtual-busy.html
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#14118])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-4/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#13786])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-17/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#15479]) +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-rkl: NOTRUN -> [ABORT][78] ([i915#15342]) +1 other test abort
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-tglu: NOTRUN -> [ABORT][79] ([i915#15342]) +1 other test abort
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-7/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-glk: NOTRUN -> [ABORT][80] ([i915#15342]) +1 other test abort
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk1/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@uc_fw_rsa_data_create:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#15479]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-7/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#6590]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-8/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#16080] / [i915#16166])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#11681] / [i915#6621])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-16/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#16109])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-7/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#5723])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#5723])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#5723])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-7/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [PASS][89] -> [ABORT][90] ([i915#15131])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-1/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][91] ([i915#16182] / [i915#4817]) +1 other test incomplete
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk8/igt@i915_suspend@sysfs-reader.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#7707])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_3d@basic:
- shard-mtlp: [PASS][93] -> [SKIP][94] ([i915#15726])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-mtlp-8/igt@kms_3d@basic.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-1/igt@kms_3d@basic.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4212])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-19/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk11: NOTRUN -> [INCOMPLETE][96] ([i915#12761] / [i915#16314]) +1 other test incomplete
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk11/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][97] -> [INCOMPLETE][98] ([i915#12761])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-1/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][99] ([i915#1769])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#1769] / [i915#3555])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#5286]) +5 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#5286]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#5286]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#14544] / [i915#5286])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538] / [i915#5286]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-0:
- shard-glk10: NOTRUN -> [FAIL][106] ([i915#16308])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk10/igt@kms_big_fb@linear-16bpp-rotate-0.html
* igt@kms_big_fb@linear-32bpp-rotate-0:
- shard-glk: NOTRUN -> [FAIL][107] ([i915#16308]) +1 other test fail
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk2/igt@kms_big_fb@linear-32bpp-rotate-0.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#3638]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#3638]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-12/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [FAIL][110] ([i915#16308])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-19/igt@kms_big_fb@linear-8bpp-rotate-180.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180:
- shard-dg2: NOTRUN -> [FAIL][111] ([i915#16308]) +1 other test fail
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html
- shard-tglu-1: NOTRUN -> [FAIL][112] ([i915#16308])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#3828]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-9/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5190]) +6 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-tglu-1: NOTRUN -> [SKIP][115] +49 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-16/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-glk10: NOTRUN -> [SKIP][117] +134 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#5190])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-7/igt@kms_big_fb@yf-tiled-addfb.html
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#6187])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#14544] / [i915#6095]) +5 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6095]) +24 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-3/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][122] +645 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#10307] / [i915#6095]) +111 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-5/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#12313]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-16/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#12313])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#6095]) +54 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#6095]) +199 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#14098] / [i915#6095]) +41 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#6095]) +4 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][131] ([i915#15582]) +3 other tests incomplete
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#6095]) +65 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#6095]) +24 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#12313]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#12313])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#12313])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#13783]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2: NOTRUN -> [SKIP][139] +6 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-1/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#11151] / [i915#7828]) +6 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-10/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +7 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-fast.html
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +6 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-glk11: NOTRUN -> [SKIP][145] +23 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk11/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#15330] / [i915#3116] / [i915#3299])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#15330] / [i915#3299])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#15330] / [i915#3116])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#15330] / [i915#3299])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#15330] / [i915#3299]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#15330])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#15865]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-9/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#15865]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#14544] / [i915#15865])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#15865])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-7/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#15865]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#15865]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-14/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#15865])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-8/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#8814])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: NOTRUN -> [FAIL][162] ([i915#13566]) +3 other tests fail
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#8814]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#13049])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#13049]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][166] ([i915#13566]) +2 other tests fail
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [PASS][167] -> [FAIL][168] ([i915#13566])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3555]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][170] ([i915#12358] / [i915#14152] / [i915#7882])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk4/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][171] ([i915#12358] / [i915#14152])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#4103])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#4103])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-rkl: [PASS][174] -> [FAIL][175] ([i915#15967])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-8/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#13046] / [i915#5354]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#9809]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#9833])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#9723]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#9723])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-14/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#9723])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev@basic:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#1257])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-7/igt@kms_dp_aux_dev@basic.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#13748])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-6/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-15/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-9/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#3840] / [i915#9053])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#16081])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-8/igt@kms_feature_discovery@display-4x.html
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#16081])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-8/igt@kms_feature_discovery@display-4x.html
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#16081])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-13/igt@kms_feature_discovery@display-4x.html
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#16081])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-10/igt@kms_feature_discovery@display-4x.html
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#16081])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-7/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#658]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#658])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#9934]) +10 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#9934]) +6 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-18/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#3637] / [i915#9934]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-glk: NOTRUN -> [FAIL][197] ([i915#13027]) +1 other test fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#8381])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#8381])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8381])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][201] ([i915#12314] / [i915#12745] / [i915#4839])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk8/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][202] ([i915#12314] / [i915#12745])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#9934]) +6 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#3637] / [i915#9934]) +6 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#14544] / [i915#9934]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#3637] / [i915#9934]) +11 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#15643]) +2 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#15643] / [i915#5190])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#15643]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#15643])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8813])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#8810] / [i915#8813])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#15643]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#14544] / [i915#15643]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#15643]) +4 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#15104] / [i915#15990]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#15991] / [i915#1825]) +13 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#1825]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#15989]) +19 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt:
- shard-tglu: NOTRUN -> [SKIP][220] +86 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-9/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#14544]) +6 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-fullscreen:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#15991]) +24 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbchdr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#5439])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][224] +176 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-snb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#15104] / [i915#15990])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#15102] / [i915#3023]) +8 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#15102]) +19 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#15990] / [i915#8708]) +9 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#15102]) +37 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#15990]) +17 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#15989]) +12 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#15102]) +19 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#15102]) +20 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][234] +71 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#14544] / [i915#15102]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#15989]) +11 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-1p-pri-indfb-multidraw:
- shard-dg2: [PASS][237] -> [SKIP][238] ([i915#15989]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-pri-indfb-multidraw.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt:
- shard-rkl: [PASS][239] -> [SKIP][240] ([i915#15989]) +11 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#15989]) +10 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#15989]) +11 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#15989]) +8 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-18/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-fullscreen:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#15991]) +30 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-5/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@hdr-2p-rte:
- shard-dg1: NOTRUN -> [SKIP][245] +47 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-16/igt@kms_frontbuffer_tracking@hdr-2p-rte.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#9766])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#15990] / [i915#8708]) +8 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#15990] / [i915#8708]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15991] / [i915#5354]) +24 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#15990]) +4 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#15990]) +10 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-16/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#15102]) +30 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-1/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite.html
* igt@kms_hdr@bpc-switch:
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#16012] / [i915#3555] / [i915#8228])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#16012] / [i915#3555] / [i915#8228])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-2/igt@kms_hdr@bpc-switch-suspend.html
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#16012] / [i915#3555] / [i915#8228])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-6/igt@kms_hdr@bpc-switch-suspend.html
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#16012] / [i915#3555] / [i915#8228])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@kms_hdr@bpc-switch-suspend.html
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#16012] / [i915#3555] / [i915#8228])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-16/igt@kms_hdr@bpc-switch-suspend.html
- shard-snb: NOTRUN -> [FAIL][259] ([i915#16018])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-snb1/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010:
- shard-snb: NOTRUN -> [FAIL][260] ([i915#16013]) +1 other test fail
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-snb1/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#16012]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-2/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#16012]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#16012]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#16012]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-16/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010.html
* igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010:
- shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#16012]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#14544] / [i915#16076]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f.html
* igt@kms_hdr@static-swap:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#16011] / [i915#3555] / [i915#8228])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@kms_hdr@static-swap.html
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#16011] / [i915#3555] / [i915#8228])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-7/igt@kms_hdr@static-swap.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#16011] / [i915#3555] / [i915#8228])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-18/igt@kms_hdr@static-swap.html
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#16011] / [i915#3555] / [i915#8228])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-7/igt@kms_hdr@static-swap.html
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#16011] / [i915#3555] / [i915#8228])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-6/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-swap@pipe-a-edp-1-xrgb2101010:
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#16011]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-6/igt@kms_hdr@static-swap@pipe-a-edp-1-xrgb2101010.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#16011]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-7/igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#16011]) +8 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#16011]) +9 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-13/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#16011]) +3 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-7/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#15459])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#15815])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-14/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][279] +8 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-1/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#14712])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#14712])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-12/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#14712])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-9/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#15709]) +3 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#15709]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#15608]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#14544] / [i915#15709])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#15709]) +3 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#15709]) +2 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#15709]) +3 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-14/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#15608]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][291] ([i915#13026]) +1 other test incomplete
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_lowres@tiling-4:
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#3555]) +5 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-18/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#11614] / [i915#3582]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#13958])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#13958])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#14259])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#13046] / [i915#5354] / [i915#9423])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][299] ([i915#15329]) +9 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#14544] / [i915#15329]) +3 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#15329]) +8 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#15329] / [i915#3555])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#15329] / [i915#3555])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-12/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#15329]) +8 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#12343] / [i915#5354])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-7/igt@kms_pm_backlight@bad-brightness.html
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#12343] / [i915#5354])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#12343] / [i915#9812])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#12343] / [i915#5354])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-12/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#12343])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#12343])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-8/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#12343])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-12/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][312] ([i915#12343])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#12343] / [i915#9812])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-3/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#15948])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-17/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#3828])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-6/igt@kms_pm_dc@dc5-retention-flops.html
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#3828])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-2/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#3828])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-19/igt@kms_pm_dc@dc5-retention-flops.html
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#3828])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-3/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#9340])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [PASS][320] -> [SKIP][321] ([i915#15073])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [PASS][322] -> [SKIP][323] ([i915#15073]) +2 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][324] -> [SKIP][325] ([i915#15073])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][326] ([i915#15073])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#15403])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#6524])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#6524] / [i915#6805])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#6524])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-6/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][331] ([i915#11520]) +7 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk9/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#11520]) +4 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-snb: NOTRUN -> [SKIP][333] ([i915#11520]) +3 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-snb5/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#11520]) +5 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][335] ([i915#11520]) +5 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#9808]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-glk11: NOTRUN -> [SKIP][337] ([i915#11520])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk11/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][338] ([i915#12316]) +5 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][339] ([i915#11520]) +8 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#11520]) +3 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][341] ([i915#11520]) +3 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#9683])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-5/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-basic:
- shard-mtlp: NOTRUN -> [SKIP][343] ([i915#9688]) +9 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-7/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-psr-cursor-blt:
- shard-rkl: NOTRUN -> [SKIP][344] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-blt.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg1: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +12 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-18/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@pr-cursor-blt:
- shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#9732]) +7 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_psr@pr-cursor-blt.html
* igt@kms_psr@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#1072] / [i915#9732]) +19 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-6/igt@kms_psr@psr-suspend.html
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#1072] / [i915#9732]) +16 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@kms_psr@psr-suspend.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][349] ([i915#9732]) +15 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-3/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][350] ([i915#15500] / [i915#16184])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk: NOTRUN -> [INCOMPLETE][351] ([i915#15492] / [i915#16184])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk9/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#5289])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][353] ([i915#5289])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-18/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#5289])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#5289]) +1 other test skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#12755] / [i915#15867]) +1 other test skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90.html
- shard-mtlp: NOTRUN -> [SKIP][357] ([i915#12755] / [i915#15867])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-8/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#3555]) +2 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-7/igt@kms_scaling_modes@scaling-mode-center.html
- shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#3555]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][360] ([i915#3555]) +3 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][361] ([i915#13179]) +1 other test abort
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@kms_selftest@drm_framebuffer.html
- shard-glk10: NOTRUN -> [ABORT][362] ([i915#13179]) +1 other test abort
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk10/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-rkl: NOTRUN -> [SKIP][363] ([i915#14544] / [i915#3555]) +1 other test skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][364] ([i915#3555] / [i915#8809] / [i915#8823])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk10: NOTRUN -> [FAIL][365] ([i915#10959])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk10/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#8623])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][367] ([i915#3555] / [i915#9906])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@kms_vrr@negative-basic.html
- shard-mtlp: [PASS][368] -> [FAIL][369] ([i915#15420]) +1 other test fail
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-mtlp-5/igt@kms_vrr@negative-basic.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-2/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-tglu: NOTRUN -> [SKIP][370] ([i915#9906]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@perf_pmu@busy-double-start:
- shard-mtlp: [PASS][371] -> [FAIL][372] ([i915#4349]) +2 other tests fail
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-mtlp-1/igt@perf_pmu@busy-double-start.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-mtlp-5/igt@perf_pmu@busy-double-start.html
* igt@perf_pmu@module-unload:
- shard-tglu: NOTRUN -> [ABORT][373] ([i915#15778])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-10/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][374] ([i915#8516])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html
- shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#8516])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][376] ([i915#3291] / [i915#3708])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#3708] / [i915#4077])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-3/igt@prime_vgem@basic-gtt.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [SKIP][378] ([i915#16066]) +18 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-2/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][379] ([i915#4818])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-8/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][380] ([i915#13356] / [i915#16348]) -> [PASS][381]
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_eio@in-flight-suspend:
- shard-dg2: [ABORT][382] ([i915#15131]) -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg2-10/igt@gem_eio@in-flight-suspend.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-8/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_big@single:
- shard-tglu: [FAIL][384] ([i915#15816]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-tglu-7/igt@gem_exec_big@single.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-9/igt@gem_exec_big@single.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [ABORT][386] ([i915#5566]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-glk3/igt@gen9_exec_parse@allowed-all.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk6/igt@gen9_exec_parse@allowed-all.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [DMESG-WARN][388] ([i915#14545]) -> [PASS][389]
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg2-7/igt@i915_module_load@resize-bar.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@i915_module_load@resize-bar.html
* igt@i915_suspend@sysfs-reader:
- shard-rkl: [INCOMPLETE][390] ([i915#4817]) -> [PASS][391]
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@i915_suspend@sysfs-reader.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@i915_suspend@sysfs-reader.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1:
- shard-tglu: [FAIL][392] ([i915#14600]) -> [PASS][393] +1 other test pass
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-dg1: [DMESG-WARN][394] ([i915#4423]) -> [PASS][395]
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][396] ([i915#15989]) -> [PASS][397] +9 other tests pass
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-glk: [SKIP][398] -> [PASS][399] +4 other tests pass
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-glk3/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: [SKIP][400] ([i915#16012] / [i915#3555] / [i915#8228]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010:
- shard-rkl: [SKIP][402] ([i915#16012]) -> [PASS][403] +1 other test pass
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [SKIP][404] ([i915#14544] / [i915#15073]) -> [PASS][405]
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][406] ([i915#15073]) -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [SKIP][408] ([i915#15073]) -> [PASS][409] +1 other test pass
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [INCOMPLETE][410] ([i915#14419]) -> [PASS][411]
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_setmode@basic:
- shard-tglu: [FAIL][412] ([i915#15106]) -> [PASS][413] +2 other tests pass
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-tglu-4/igt@kms_setmode@basic.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-4/igt@kms_setmode@basic.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: [SKIP][414] ([i915#14544] / [i915#8411]) -> [SKIP][415] ([i915#8411]) +1 other test skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: [SKIP][416] ([i915#8411]) -> [SKIP][417] ([i915#14544] / [i915#8411])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-2/igt@api_intel_bb@object-reloc-purge-cache.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: [SKIP][418] ([i915#11078]) -> [SKIP][419] ([i915#11078] / [i915#14544])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-8/igt@device_reset@unbind-cold-reset-rebind.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: [SKIP][420] ([i915#14544] / [i915#9323]) -> [SKIP][421] ([i915#9323])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][422] ([i915#3555] / [i915#9323]) -> [SKIP][423] ([i915#14544] / [i915#3555] / [i915#9323])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: [SKIP][424] ([i915#4525]) -> [SKIP][425] ([i915#14544] / [i915#4525])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-8/igt@gem_exec_balancer@parallel-balancer.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: [SKIP][426] ([i915#14544] / [i915#4525]) -> [SKIP][427] ([i915#4525])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_reloc@basic-gtt-wc-active:
- shard-rkl: [SKIP][428] ([i915#3281]) -> [SKIP][429] ([i915#14544] / [i915#3281])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-active.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-active.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: [SKIP][430] ([i915#4613]) -> [SKIP][431] ([i915#14544] / [i915#4613]) +2 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: [SKIP][432] ([i915#14544] / [i915#4613]) -> [SKIP][433] ([i915#4613]) +1 other test skip
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@gem_lmem_swapping@random-engines.html
* igt@gem_pwrite@basic-self:
- shard-rkl: [SKIP][434] ([i915#14544] / [i915#3282]) -> [SKIP][435] ([i915#3282])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@gem_pwrite@basic-self.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@gem_pwrite@basic-self.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: [SKIP][436] ([i915#3282]) -> [SKIP][437] ([i915#14544] / [i915#3282]) +4 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-4/igt@gem_set_tiling_vs_pwrite.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: [SKIP][438] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][439] ([i915#3282] / [i915#3297])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: [SKIP][440] ([i915#3297]) -> [SKIP][441] ([i915#14544] / [i915#3297])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-1/igt@gem_userptr_blits@unsync-overlap.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#3297]) -> [SKIP][443] ([i915#3297])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-rkl: [SKIP][444] ([i915#14544] / [i915#2527]) -> [SKIP][445] ([i915#2527])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@gen9_exec_parse@batch-zero-length.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-7/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: [SKIP][446] ([i915#2527]) -> [SKIP][447] ([i915#14544] / [i915#2527]) +1 other test skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@fault-injection:
- shard-dg1: [ABORT][448] ([i915#11814] / [i915#15481]) -> [ABORT][449] ([i915#11814]) +1 other test abort
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg1-14/igt@i915_module_load@fault-injection.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-13/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][450] ([i915#14544] / [i915#6412]) -> [SKIP][451] ([i915#6412])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@i915_module_load@resize-bar.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: [SKIP][452] ([i915#8399]) -> [SKIP][453] ([i915#14544] / [i915#8399]) +1 other test skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-3/igt@i915_pm_freq_api@freq-basic-api.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [ABORT][454] ([i915#15132]) -> [INCOMPLETE][455] ([i915#12761])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-1/igt@kms_async_flips@async-flip-suspend-resume.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][456] ([i915#1769] / [i915#3555]) -> [SKIP][457] ([i915#14544] / [i915#1769] / [i915#3555])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: [SKIP][458] ([i915#5286]) -> [SKIP][459] ([i915#14544] / [i915#5286]) +2 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#5286]) -> [SKIP][461] ([i915#5286])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][462] ([i915#3638]) -> [SKIP][463] ([i915#14544] / [i915#3638]) +1 other test skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-4/igt@kms_big_fb@linear-8bpp-rotate-270.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][464] ([i915#6095]) -> [SKIP][465] ([i915#14544] / [i915#6095]) +4 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][466] ([i915#14544] / [i915#6095]) -> [SKIP][467] ([i915#6095]) +3 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-7/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][468] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][469] ([i915#14098] / [i915#6095]) +5 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][470] ([i915#14098] / [i915#6095]) -> [SKIP][471] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-rkl: [SKIP][472] ([i915#11151] / [i915#7828]) -> [SKIP][473] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-2/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: [SKIP][474] ([i915#15330]) -> [SKIP][475] ([i915#14544] / [i915#15330])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: [SKIP][476] ([i915#15330] / [i915#3116]) -> [SKIP][477] ([i915#14544] / [i915#15330] / [i915#3116])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-rkl: [SKIP][478] ([i915#14544] / [i915#15330]) -> [SKIP][479] ([i915#15330])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: [SKIP][480] ([i915#13049]) -> [SKIP][481] ([i915#13049] / [i915#14544]) +1 other test skip
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x512.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: [SKIP][482] ([i915#4103]) -> [SKIP][483] ([i915#14544] / [i915#4103])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: [SKIP][484] ([i915#3555] / [i915#3840]) -> [SKIP][485] ([i915#14544] / [i915#3555] / [i915#3840])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][486] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][487] ([i915#3555] / [i915#3840])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-rkl: [SKIP][488] ([i915#9934]) -> [SKIP][489] ([i915#14544] / [i915#9934])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-3/igt@kms_flip@2x-flip-vs-suspend.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-rkl: [SKIP][490] ([i915#14544] / [i915#9934]) -> [SKIP][491] ([i915#9934]) +1 other test skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: [INCOMPLETE][492] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][493] ([i915#12745] / [i915#4839])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-glk2/igt@kms_flip@flip-vs-suspend.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk4/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: [INCOMPLETE][494] ([i915#12745] / [i915#6113]) -> [INCOMPLETE][495] ([i915#12745])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-glk2/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-glk4/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-rkl: [SKIP][496] ([i915#15643]) -> [SKIP][497] ([i915#14544] / [i915#15643])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-dg1: [SKIP][498] ([i915#4423]) -> [SKIP][499]
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg1: [SKIP][500] -> [SKIP][501] ([i915#4423]) +1 other test skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][502] ([i915#15102]) -> [SKIP][503] ([i915#14544] / [i915#15102]) +7 other tests skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][504] ([i915#1825]) -> [SKIP][505] ([i915#14544] / [i915#1825]) +1 other test skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move:
- shard-dg1: [SKIP][506] ([i915#15102] / [i915#4423]) -> [SKIP][507] ([i915#15102])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move:
- shard-rkl: [SKIP][508] ([i915#14544]) -> [SKIP][509] +20 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][510] ([i915#10433] / [i915#15102]) -> [SKIP][511] ([i915#15102]) +4 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: [SKIP][512] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][513] ([i915#15102] / [i915#3023])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][514] ([i915#14544] / [i915#1825]) -> [SKIP][515] ([i915#1825]) +1 other test skip
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-rkl: [SKIP][516] ([i915#15102] / [i915#3023]) -> [SKIP][517] ([i915#14544] / [i915#15102] / [i915#3023]) +9 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move:
- shard-rkl: [SKIP][518] ([i915#14544] / [i915#15102]) -> [SKIP][519] ([i915#15102]) +5 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt:
- shard-rkl: [SKIP][520] -> [SKIP][521] ([i915#14544]) +45 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-wc:
- shard-dg1: [SKIP][522] ([i915#15990] / [i915#4423]) -> [SKIP][523] ([i915#15990])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg1-18/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-wc.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-12/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][524] ([i915#16011]) -> [SKIP][525] ([i915#14544] / [i915#16076])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: [SKIP][526] ([i915#13688]) -> [SKIP][527] ([i915#13688] / [i915#14544])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-8/igt@kms_joiner@basic-max-non-joiner.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][528] ([i915#15458]) -> [SKIP][529] ([i915#14544] / [i915#15458])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][530] ([i915#15709]) -> [SKIP][531] ([i915#14544] / [i915#15709]) +3 other tests skip
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][532] ([i915#13958] / [i915#14544]) -> [SKIP][533] ([i915#13958])
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: [SKIP][534] ([i915#14544] / [i915#15329]) -> [SKIP][535] ([i915#15329]) +7 other tests skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][536] ([i915#15739]) -> [SKIP][537] ([i915#14544] / [i915#15739])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: [SKIP][538] ([i915#15739]) -> [SKIP][539] ([i915#15128])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][540] ([i915#11520] / [i915#14544]) -> [SKIP][541] ([i915#11520]) +2 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][542] ([i915#11520]) -> [SKIP][543] ([i915#11520] / [i915#14544]) +3 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: [SKIP][544] ([i915#9683]) -> [SKIP][545] ([i915#14544] / [i915#9683])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-plane-move:
- shard-rkl: [SKIP][546] ([i915#1072] / [i915#9732]) -> [SKIP][547] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-3/igt@kms_psr@fbc-pr-sprite-plane-move.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-move.html
* igt@kms_psr@psr2-cursor-blt:
- shard-rkl: [SKIP][548] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][549] ([i915#1072] / [i915#9732]) +6 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@kms_psr@psr2-cursor-blt.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-3/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-rkl: [SKIP][550] ([i915#3555]) -> [SKIP][551] ([i915#14544] / [i915#3555]) +1 other test skip
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-2/igt@kms_setmode@basic-clone-single-crtc.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: [SKIP][552] ([i915#9906]) -> [SKIP][553] ([i915#14544] / [i915#9906])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-4/igt@kms_vrr@flip-basic-fastset.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: [SKIP][554] ([i915#2435]) -> [SKIP][555] ([i915#14544] / [i915#2435])
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@module-unload:
- shard-dg1: [ABORT][556] ([i915#13029] / [i915#15778]) -> [ABORT][557] ([i915#15778])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-dg1-13/igt@perf_pmu@module-unload.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-dg1-13/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-read:
- shard-rkl: [SKIP][558] ([i915#3291] / [i915#3708]) -> [SKIP][559] ([i915#14544] / [i915#3291] / [i915#3708])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-8/igt@prime_vgem@basic-read.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-6/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: [SKIP][560] ([i915#14544] / [i915#3708]) -> [SKIP][561] ([i915#3708])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: [SKIP][562] ([i915#14544] / [i915#9917]) -> [SKIP][563] ([i915#9917])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18617/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15295/shard-rkl-4/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#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#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[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#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[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#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420
[i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[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#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15967
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011
[i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012
[i915#16013]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16013
[i915#16018]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16018
[i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
[i915#16076]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16076
[i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109
[i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166
[i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182
[i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184
[i915#16226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16226
[i915#16308]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16308
[i915#16314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16314
[i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[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#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#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#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#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[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#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[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#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[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#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[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_8947 -> IGTPW_15295
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18617: 4354c70593040dcb61935903e0fe1c90ca531df7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15295: 15295
IGT_8947: e322bfd77da04314dd310da9a6cf0562b5751f1f @ 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_15295/index.html
[-- Attachment #2: Type: text/html, Size: 194728 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-06-04 11:23 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-03 7:36 [PATCH i-g-t] lib/igt_kms: treat equal limits as bigjoiner Jeevan B
2026-06-03 9:14 ` Jani Nikula
2026-06-03 9:36 ` B, Jeevan
2026-06-03 9:51 ` Jani Nikula
2026-06-03 10:15 ` B, Jeevan
2026-06-03 12:59 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-06-03 13:44 ` ✓ i915.CI.BAT: " Patchwork
2026-06-04 0:28 ` ✓ Xe.CI.FULL: " Patchwork
2026-06-04 11:23 ` ✓ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox