* [PATCH i-g-t] tests/kms_async_flip: Reduce the clobbering area used for CRC test
@ 2024-02-08 12:10 Vandita Kulkarni
2024-02-08 14:08 ` Juha-Pekka Heikkila
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Vandita Kulkarni @ 2024-02-08 12:10 UTC (permalink / raw)
To: igt-dev; +Cc: ville.syrjala, karthik.b.s, juha-pekka.heikkila, Vandita Kulkarni
On some platforms wc_mmap write takes longer to paint the fb,
which we are using to clobber the already scanned buffer for
CRC. Hence reducing the clobbered area.
Signed-off-by: Vandita Kulkarni <vandita.kulkarni@intel.com>
---
tests/kms_async_flips.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c
index a0349fa03..2e5960943 100644
--- a/tests/kms_async_flips.c
+++ b/tests/kms_async_flips.c
@@ -589,7 +589,7 @@ static void test_crc(data_t *data)
while (clock_ms() - start < 2000) {
/* fill the next fb with the expected color */
- paint_fb(data, &data->bufs[frame], 1, height, 0xff0000ff);
+ paint_fb(data, &data->bufs[frame], 10, 10, 0xff0000ff);
data->flip_pending = true;
ret = drmModePageFlip(data->drm_fd, data->crtc_id, data->bufs[frame].fb_id,
@@ -600,7 +600,7 @@ static void test_crc(data_t *data)
/* clobber the previous fb which should no longer be scanned out */
frame = !frame;
- paint_fb(data, &data->bufs[frame], 1, height, rand());
+ paint_fb(data, &data->bufs[frame], 10, 10, rand());
}
igt_pipe_crc_stop(data->pipe_crc);
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/kms_async_flip: Reduce the clobbering area used for CRC test
2024-02-08 12:10 [PATCH i-g-t] tests/kms_async_flip: Reduce the clobbering area used for CRC test Vandita Kulkarni
@ 2024-02-08 14:08 ` Juha-Pekka Heikkila
2024-02-08 16:03 ` Kulkarni, Vandita
2024-02-08 16:08 ` ✓ Fi.CI.BAT: success for " Patchwork
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Juha-Pekka Heikkila @ 2024-02-08 14:08 UTC (permalink / raw)
To: Vandita Kulkarni, igt-dev; +Cc: ville.syrjala, karthik.b.s
Hi Vandita,
On 8.2.2024 14.10, Vandita Kulkarni wrote:
> On some platforms wc_mmap write takes longer to paint the fb,
> which we are using to clobber the already scanned buffer for
> CRC. Hence reducing the clobbered area.
>
> Signed-off-by: Vandita Kulkarni <vandita.kulkarni@intel.com>
> ---
> tests/kms_async_flips.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c
> index a0349fa03..2e5960943 100644
> --- a/tests/kms_async_flips.c
> +++ b/tests/kms_async_flips.c
> @@ -589,7 +589,7 @@ static void test_crc(data_t *data)
>
> while (clock_ms() - start < 2000) {
> /* fill the next fb with the expected color */
> - paint_fb(data, &data->bufs[frame], 1, height, 0xff0000ff);
> + paint_fb(data, &data->bufs[frame], 10, 10, 0xff0000ff);
Here really is needed to be painted full height of the framebuffer and
that width can be kept at 1 as any number higher will just increase the
work.
For async flip part of fb which will become visible is not known here so
the full height of the fb need to be painted on to catch if there was
something going wrong.
>
> data->flip_pending = true;
> ret = drmModePageFlip(data->drm_fd, data->crtc_id, data->bufs[frame].fb_id,
> @@ -600,7 +600,7 @@ static void test_crc(data_t *data)
>
> /* clobber the previous fb which should no longer be scanned out */
> frame = !frame;
> - paint_fb(data, &data->bufs[frame], 1, height, rand());
> + paint_fb(data, &data->bufs[frame], 10, 10, rand());
> }
>
> igt_pipe_crc_stop(data->pipe_crc);
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH i-g-t] tests/kms_async_flip: Reduce the clobbering area used for CRC test
2024-02-08 14:08 ` Juha-Pekka Heikkila
@ 2024-02-08 16:03 ` Kulkarni, Vandita
2024-02-08 17:12 ` Ville Syrjälä
0 siblings, 1 reply; 8+ messages in thread
From: Kulkarni, Vandita @ 2024-02-08 16:03 UTC (permalink / raw)
To: juhapekka.heikkila@gmail.com, igt-dev@lists.freedesktop.org
Cc: ville.syrjala@linux.intel.com, B S, Karthik
> -----Original Message-----
> From: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> Sent: Thursday, February 8, 2024 7:39 PM
> To: Kulkarni, Vandita <vandita.kulkarni@intel.com>; igt-
> dev@lists.freedesktop.org
> Cc: ville.syrjala@linux.intel.com; B S, Karthik <karthik.b.s@intel.com>
> Subject: Re: [PATCH i-g-t] tests/kms_async_flip: Reduce the clobbering area
> used for CRC test
>
> Hi Vandita,
>
> On 8.2.2024 14.10, Vandita Kulkarni wrote:
> > On some platforms wc_mmap write takes longer to paint the fb, which we
> > are using to clobber the already scanned buffer for CRC. Hence
> > reducing the clobbered area.
> >
> > Signed-off-by: Vandita Kulkarni <vandita.kulkarni@intel.com>
> > ---
> > tests/kms_async_flips.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index
> > a0349fa03..2e5960943 100644
> > --- a/tests/kms_async_flips.c
> > +++ b/tests/kms_async_flips.c
> > @@ -589,7 +589,7 @@ static void test_crc(data_t *data)
> >
> > while (clock_ms() - start < 2000) {
> > /* fill the next fb with the expected color */
> > - paint_fb(data, &data->bufs[frame], 1, height, 0xff0000ff);
> > + paint_fb(data, &data->bufs[frame], 10, 10, 0xff0000ff);
>
> Here really is needed to be painted full height of the framebuffer and that
> width can be kept at 1 as any number higher will just increase the work.
>
> For async flip part of fb which will become visible is not known here so the
> full height of the fb need to be painted on to catch if there was something
> going wrong.
Thanks JP for the feedback, you are right, for async flip we might not know if
the previous fb is still being scanned until we check the last line.
This might not be the solution then.
Other option(on non fixed panels) where we can optimize is by selecting the
smallest mode, where as now mode[0] is being picked.
Incase we pick the smallest mode we might have to write a new case to test
async flips with bigjoiner.
Also it is really not clear on which platforms and drivers, how much time it would take to
paint 1xh fb. I will try to check further on this.
Thanks,
Vandita
>
> >
> > data->flip_pending = true;
> > ret = drmModePageFlip(data->drm_fd, data->crtc_id,
> > data->bufs[frame].fb_id, @@ -600,7 +600,7 @@ static void
> > test_crc(data_t *data)
> >
> > /* clobber the previous fb which should no longer be
> scanned out */
> > frame = !frame;
> > - paint_fb(data, &data->bufs[frame], 1, height, rand());
> > + paint_fb(data, &data->bufs[frame], 10, 10, rand());
> > }
> >
> > igt_pipe_crc_stop(data->pipe_crc);
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for tests/kms_async_flip: Reduce the clobbering area used for CRC test
2024-02-08 12:10 [PATCH i-g-t] tests/kms_async_flip: Reduce the clobbering area used for CRC test Vandita Kulkarni
2024-02-08 14:08 ` Juha-Pekka Heikkila
@ 2024-02-08 16:08 ` Patchwork
2024-02-08 17:03 ` ✓ CI.xeBAT: " Patchwork
2024-02-08 18:05 ` ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-02-08 16:08 UTC (permalink / raw)
To: Kulkarni, Vandita; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3597 bytes --]
== Series Details ==
Series: tests/kms_async_flip: Reduce the clobbering area used for CRC test
URL : https://patchwork.freedesktop.org/series/129666/
State : success
== Summary ==
CI Bug Log - changes from IGT_7706 -> IGTPW_10650
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/index.html
Participating hosts (39 -> 35)
------------------------------
Missing (4): bat-mtlp-8 fi-cfl-8109u fi-apl-guc fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10650 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@execlists:
- fi-bsw-nick: [PASS][1] -> [ABORT][2] ([i915#7911])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/fi-bsw-nick/igt@i915_selftest@live@execlists.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/fi-bsw-nick/igt@i915_selftest@live@execlists.html
#### Possible fixes ####
* igt@gem_exec_create@basic@smem:
- {bat-arls-1}: [DMESG-WARN][3] ([i915#10194]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/bat-arls-1/igt@gem_exec_create@basic@smem.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/bat-arls-1/igt@gem_exec_create@basic@smem.html
* igt@kms_addfb_basic@bad-pitch-1024:
- {bat-arls-2}: [INCOMPLETE][5] -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/bat-arls-2/igt@kms_addfb_basic@bad-pitch-1024.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/bat-arls-2/igt@kms_addfb_basic@bad-pitch-1024.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10194]: https://gitlab.freedesktop.org/drm/intel/issues/10194
[i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196
[i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200
[i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202
[i915#10207]: https://gitlab.freedesktop.org/drm/intel/issues/10207
[i915#10208]: https://gitlab.freedesktop.org/drm/intel/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/intel/issues/10209
[i915#10212]: https://gitlab.freedesktop.org/drm/intel/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/intel/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/intel/issues/10214
[i915#10215]: https://gitlab.freedesktop.org/drm/intel/issues/10215
[i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7706 -> IGTPW_10650
CI-20190529: 20190529
CI_DRM_14242: aed7e9419a8e3775ed46af4cff2de11d7e76c960 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10650: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/index.html
IGT_7706: dd38bc402e08b8a6c9ef26a2f5b8a9a9034cb435 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/index.html
[-- Attachment #2: Type: text/html, Size: 3150 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for tests/kms_async_flip: Reduce the clobbering area used for CRC test
2024-02-08 12:10 [PATCH i-g-t] tests/kms_async_flip: Reduce the clobbering area used for CRC test Vandita Kulkarni
2024-02-08 14:08 ` Juha-Pekka Heikkila
2024-02-08 16:08 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2024-02-08 17:03 ` Patchwork
2024-02-08 18:05 ` ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-02-08 17:03 UTC (permalink / raw)
To: Kulkarni, Vandita; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2405 bytes --]
== Series Details ==
Series: tests/kms_async_flip: Reduce the clobbering area used for CRC test
URL : https://patchwork.freedesktop.org/series/129666/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7706_BAT -> XEIGTPW_10650_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10650_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-dp3:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#906]) +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7706/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp3.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10650/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@c-dp3.html
* igt@kms_frontbuffer_tracking@basic:
- bat-dg2-oem2: [PASS][3] -> [FAIL][4] ([Intel XE#616])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7706/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10650/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-3:
- bat-dg2-oem2: [PASS][5] -> [FAIL][6] ([Intel XE#400] / [Intel XE#616]) +3 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7706/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-3.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10650/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-dp-3.html
[Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#906]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/906
Build changes
-------------
* IGT: IGT_7706 -> IGTPW_10650
IGTPW_10650: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/index.html
IGT_7706: dd38bc402e08b8a6c9ef26a2f5b8a9a9034cb435 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-748-aed7e9419a8e3775ed46af4cff2de11d7e76c960: aed7e9419a8e3775ed46af4cff2de11d7e76c960
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10650/index.html
[-- Attachment #2: Type: text/html, Size: 3097 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/kms_async_flip: Reduce the clobbering area used for CRC test
2024-02-08 16:03 ` Kulkarni, Vandita
@ 2024-02-08 17:12 ` Ville Syrjälä
2024-03-15 6:21 ` Kulkarni, Vandita
0 siblings, 1 reply; 8+ messages in thread
From: Ville Syrjälä @ 2024-02-08 17:12 UTC (permalink / raw)
To: Kulkarni, Vandita
Cc: juhapekka.heikkila@gmail.com, igt-dev@lists.freedesktop.org,
B S, Karthik
On Thu, Feb 08, 2024 at 04:03:49PM +0000, Kulkarni, Vandita wrote:
> > -----Original Message-----
> > From: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> > Sent: Thursday, February 8, 2024 7:39 PM
> > To: Kulkarni, Vandita <vandita.kulkarni@intel.com>; igt-
> > dev@lists.freedesktop.org
> > Cc: ville.syrjala@linux.intel.com; B S, Karthik <karthik.b.s@intel.com>
> > Subject: Re: [PATCH i-g-t] tests/kms_async_flip: Reduce the clobbering area
> > used for CRC test
> >
> > Hi Vandita,
> >
> > On 8.2.2024 14.10, Vandita Kulkarni wrote:
> > > On some platforms wc_mmap write takes longer to paint the fb, which we
> > > are using to clobber the already scanned buffer for CRC. Hence
> > > reducing the clobbered area.
> > >
> > > Signed-off-by: Vandita Kulkarni <vandita.kulkarni@intel.com>
> > > ---
> > > tests/kms_async_flips.c | 4 ++--
> > > 1 file changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index
> > > a0349fa03..2e5960943 100644
> > > --- a/tests/kms_async_flips.c
> > > +++ b/tests/kms_async_flips.c
> > > @@ -589,7 +589,7 @@ static void test_crc(data_t *data)
> > >
> > > while (clock_ms() - start < 2000) {
> > > /* fill the next fb with the expected color */
> > > - paint_fb(data, &data->bufs[frame], 1, height, 0xff0000ff);
> > > + paint_fb(data, &data->bufs[frame], 10, 10, 0xff0000ff);
> >
> > Here really is needed to be painted full height of the framebuffer and that
> > width can be kept at 1 as any number higher will just increase the work.
> >
> > For async flip part of fb which will become visible is not known here so the
> > full height of the fb need to be painted on to catch if there was something
> > going wrong.
> Thanks JP for the feedback, you are right, for async flip we might not know if
> the previous fb is still being scanned until we check the last line.
> This might not be the solution then.
>
> Other option(on non fixed panels) where we can optimize is by selecting the
> smallest mode, where as now mode[0] is being picked.
I already did that once, but it broke something, and was reverted.
See commit 79483e9ae4fe ("Revert "tests/kms_async_flips: Make the crc test faster"")
Hmm. Looking at that revert maybe the problem was that I just used that
hardcoded 1024x768 mode, which perhaps didn't work due to i915 still
missing the PLL algorithm for the newer platforms. Picking a smallish
mode from the connector's mode list might work better.
> Incase we pick the smallest mode we might have to write a new case to test
> async flips with bigjoiner.
> Also it is really not clear on which platforms and drivers, how much time it would take to
> paint 1xh fb. I will try to check further on this.
>
> Thanks,
> Vandita
> >
> > >
> > > data->flip_pending = true;
> > > ret = drmModePageFlip(data->drm_fd, data->crtc_id,
> > > data->bufs[frame].fb_id, @@ -600,7 +600,7 @@ static void
> > > test_crc(data_t *data)
> > >
> > > /* clobber the previous fb which should no longer be
> > scanned out */
> > > frame = !frame;
> > > - paint_fb(data, &data->bufs[frame], 1, height, rand());
> > > + paint_fb(data, &data->bufs[frame], 10, 10, rand());
> > > }
> > >
> > > igt_pipe_crc_stop(data->pipe_crc);
>
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/kms_async_flip: Reduce the clobbering area used for CRC test
2024-02-08 12:10 [PATCH i-g-t] tests/kms_async_flip: Reduce the clobbering area used for CRC test Vandita Kulkarni
` (2 preceding siblings ...)
2024-02-08 17:03 ` ✓ CI.xeBAT: " Patchwork
@ 2024-02-08 18:05 ` Patchwork
3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-02-08 18:05 UTC (permalink / raw)
To: Kulkarni, Vandita; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 86193 bytes --]
== Series Details ==
Series: tests/kms_async_flip: Reduce the clobbering area used for CRC test
URL : https://patchwork.freedesktop.org/series/129666/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7706_full -> IGTPW_10650_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10650_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10650_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/index.html
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10650_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_gttfill@engines@vecs1:
- shard-dg2: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-7/igt@gem_exec_gttfill@engines@vecs1.html
Known issues
------------
Here are the changes found in IGTPW_10650_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-7/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][5] ([i915#6122])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@api_intel_bb@render-ccs.html
* igt@drm_fdinfo@all-busy-idle-check-all:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-7/igt@drm_fdinfo@all-busy-idle-check-all.html
* igt@drm_fdinfo@busy-idle-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +20 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@drm_fdinfo@busy-idle-check-all@ccs3.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: [PASS][8] -> [FAIL][9] ([i915#7742]) +1 other test fail
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-16/igt@drm_fdinfo@virtual-busy-idle.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-13/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#3936])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@gem_busy@semaphore.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][13] ([i915#10137] / [i915#7297])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [ABORT][14] ([i915#10183])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#6335])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8562])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-2/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][17] -> [FAIL][18] ([i915#6268])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-contexts-10ms:
- shard-snb: [PASS][22] -> [FAIL][23] ([i915#9562])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-snb6/igt@gem_eio@in-flight-contexts-10ms.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-snb6/igt@gem_eio@in-flight-contexts-10ms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][24] -> [FAIL][25] ([i915#5784])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-dg1-12/igt@gem_eio@reset-stress.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-14/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#4771])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-18/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#4812])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-15/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-glk: NOTRUN -> [FAIL][28] ([i915#9606])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-glk4/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-rkl: NOTRUN -> [FAIL][29] ([i915#9606])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-4/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-1/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [PASS][31] -> [FAIL][32] ([i915#2842]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-rkl-1/igt@gem_exec_fair@basic-none-share@rcs0.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-5/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4473] / [i915#4771])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][34] -> [FAIL][35] ([i915#2842])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: NOTRUN -> [FAIL][37] ([i915#2842])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-glk9/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_params@secure-non-root:
- shard-dg1: NOTRUN -> [SKIP][40] ([fdo#112283]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-14/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +7 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-1/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-15/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][45] ([i915#9275])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-1/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4613]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#4613])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-glk9/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4565])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-12/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#284])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-7/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4077]) +15 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-18/igt@gem_mmap_gtt@basic-small-copy.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-2/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@coherency:
- shard-tglu: NOTRUN -> [SKIP][54] ([fdo#111656])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-3/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +8 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-1/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#3282]) +7 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-7/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#3282]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-16/igt@gem_pread@exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4270]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4270]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4270])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-12/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#8428])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-8/igt@gem_render_copy@y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-linear:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#5190]) +6 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@gem_render_copy@y-tiled-ccs-to-linear.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4079])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-1/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4885])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@gem_softpin@evict-snoop.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3297] / [i915#4880])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-9/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#3297])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-2/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen3_render_linear_blits:
- shard-tglu: NOTRUN -> [SKIP][71] ([fdo#109289]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-7/igt@gen3_render_linear_blits.html
* igt@gen3_render_tiledy_blits:
- shard-dg2: NOTRUN -> [SKIP][72] ([fdo#109289]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-snb: NOTRUN -> [SKIP][73] ([fdo#109271]) +34 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-snb5/igt@gen7_exec_parse@oacontrol-tracking.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([fdo#109289])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-2/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@allowed-single:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#2527] / [i915#2856])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-4/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#2527]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-13/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-oversize:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#2856])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#2856]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#2527]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-1/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@load:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#6227])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-15/igt@i915_module_load@load.html
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#6227])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-7/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [PASS][82] -> [INCOMPLETE][83] ([i915#10137] / [i915#9820] / [i915#9849])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#8399])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][85] ([fdo#109289]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#6621]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-17/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#8925])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-16/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#8925]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-2/igt@i915_pm_rps@thresholds@gt0.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#8925])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-5/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_rps@thresholds@gt1:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3555] / [i915#8925])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-5/igt@i915_pm_rps@thresholds@gt1.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#3826])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#8709]) +11 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#8709]) +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#8709]) +11 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3555])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#1769] / [i915#3555])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#1769] / [i915#3555])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][98] ([fdo#111614]) +4 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#4538] / [i915#5286])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-15/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][100] ([fdo#111615] / [i915#5286]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-10/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#5286]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][102] ([fdo#111614]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-1/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#5286]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][104] ([fdo#111614] / [i915#3638])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#3638])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-17/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [FAIL][106] ([i915#3743])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [PASS][107] -> [FAIL][108] ([i915#3743]) +1 other test fail
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#111615]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5190]) +13 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][111] ([fdo#111615])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-15/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-rkl: NOTRUN -> [SKIP][112] ([fdo#111615])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][113] ([fdo#111615])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-rkl: NOTRUN -> [SKIP][114] ([fdo#110723])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#2705]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-12/igt@kms_big_joiner@invalid-modeset.html
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#2705])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-2/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#5354] / [i915#6095]) +17 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-2/igt@kms_ccs@pipe-a-bad-aux-stride-y-tiled-ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#5354] / [i915#6095]) +19 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-7/igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#5354] / [i915#6095]) +28 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-15/igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#5354] / [i915#6095]) +11 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-8/igt@kms_ccs@pipe-d-crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#5354]) +19 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-7/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#7213]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-dg2: NOTRUN -> [SKIP][124] ([fdo#111827]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-7/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111827])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-7/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-negative:
- shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111827])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-5/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#7828]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-3/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#7828]) +8 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-2/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#7828]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#7828]) +4 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-5/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#7828]) +4 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#7118] / [i915#9424])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3299])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-8/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#9433])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#7118] / [i915#9424]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3359]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#3359]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#8814])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3555] / [i915#8814])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#3555]) +9 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][141] ([fdo#111825]) +9 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#9809])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-tglu: NOTRUN -> [SKIP][143] ([fdo#109274]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][144] ([fdo#111767])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-dg2: NOTRUN -> [SKIP][145] ([fdo#109274] / [fdo#111767] / [i915#5354])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-snb: NOTRUN -> [SKIP][146] ([fdo#109271] / [fdo#111767])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][147] ([fdo#109274] / [i915#5354]) +8 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#4213])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#9833])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][150] ([fdo#110189] / [i915#9723])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-12/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#8588])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-1/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#8812])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#3840])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-2/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#3840])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#3840]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#3840]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#3840] / [i915#9053])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-10/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#3469])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#1839])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][160] ([fdo#109274] / [i915#3637]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3637]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-8/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][162] ([fdo#109274]) +6 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#8381])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg1: NOTRUN -> [SKIP][164] ([fdo#111825] / [i915#9934]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-13/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#2587] / [i915#2672])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#2672]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#2587] / [i915#2672])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#2672]) +3 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#2672]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-dg1: NOTRUN -> [SKIP][170] ([fdo#109285])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-14/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#5354]) +106 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#8708]) +24 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-snb: [PASS][173] -> [SKIP][174] ([fdo#109271]) +14 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#3458]) +7 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][176] ([fdo#109280] / [fdo#111767])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#1825]) +16 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][178] ([fdo#109280]) +4 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][179] ([fdo#111825]) +19 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#10070])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-17/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][181] ([fdo#109271]) +59 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-glk3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][182] ([fdo#110189]) +5 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3023]) +12 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#8708]) +8 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][185] ([fdo#111767] / [fdo#111825] / [i915#1825]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][186] ([fdo#111767] / [i915#5354]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
- shard-dg1: NOTRUN -> [SKIP][187] ([fdo#111767] / [fdo#111825]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][188] ([fdo#111825] / [i915#1825]) +20 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#8708]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#3458]) +14 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#433])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-12/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8228]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8228])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-17/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228]) +2 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-7/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8228])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-9/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#4816])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg1: NOTRUN -> [SKIP][198] ([fdo#109289]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-15/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8806])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#9423]) +7 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#9423]) +23 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9423]) +7 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#5176]) +5 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#5176] / [i915#9423]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#5235]) +5 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#5235] / [i915#9423]) +7 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#5235]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#5235])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#5235]) +23 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#9685])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#9685])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#10139])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#9340])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#9340])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#9519])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#9519])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-pc8-residency-stress:
- shard-dg2: NOTRUN -> [SKIP][218] ([fdo#109293] / [fdo#109506]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-2/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
- shard-rkl: NOTRUN -> [SKIP][219] ([fdo#109293] / [fdo#109506]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-2/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#6524] / [i915#6805])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-7/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9683]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-7/igt@kms_psr2_sf@cursor-plane-update-sf.html
- shard-rkl: NOTRUN -> [SKIP][222] ([fdo#111068] / [i915#9683])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-1/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][223] ([fdo#111068] / [i915#9683])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-9/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#9683])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-19/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][225] ([fdo#109642] / [fdo#111068] / [i915#9683])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#4348])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#5289])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#4235]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#4235] / [i915#5190])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][230] ([fdo#111615] / [i915#5289])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu: NOTRUN -> [SKIP][231] ([fdo#111615] / [i915#5289])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][232] ([fdo#111615] / [i915#5289]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#3555]) +3 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#3555]) +6 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-12/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#3555])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#8623])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-17/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#8623])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#8623])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2: NOTRUN -> [SKIP][239] ([fdo#109309])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [PASS][240] -> [FAIL][241] ([i915#9196]) +1 other test fail
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8808])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#2437] / [i915#9412])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#2437])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-5/igt@kms_writeback@writeback-fb-id.html
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#2437])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-18/igt@kms_writeback@writeback-fb-id.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [PASS][246] -> [FAIL][247] ([i915#4349])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][248] ([i915#4349]) +3 other tests fail
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@event-wait@rcs0:
- shard-dg2: NOTRUN -> [SKIP][249] ([fdo#112283])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@perf_pmu@event-wait@rcs0.html
- shard-rkl: NOTRUN -> [SKIP][250] ([fdo#112283])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-4/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#8516])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#3708] / [i915#4077])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#3708] / [i915#4077]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-14/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][254] ([fdo#109295] / [i915#3291] / [i915#3708])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-5/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3708] / [i915#4077])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-5/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#9917]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#9917])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-12/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#9917])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-dg1: NOTRUN -> [FAIL][259] ([i915#9779])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-15/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@v3d/v3d_perfmon@destroy-invalid-perfmon:
- shard-tglu: NOTRUN -> [SKIP][260] ([fdo#109315] / [i915#2575]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-4/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html
* igt@v3d/v3d_submit_cl@bad-multisync-pad:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#2575]) +4 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@v3d/v3d_submit_cl@bad-multisync-pad.html
* igt@v3d/v3d_submit_csd@bad-multisync-pad:
- shard-rkl: NOTRUN -> [SKIP][262] ([fdo#109315]) +8 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-4/igt@v3d/v3d_submit_csd@bad-multisync-pad.html
* igt@v3d/v3d_submit_csd@bad-perfmon:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#2575]) +7 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-18/igt@v3d/v3d_submit_csd@bad-perfmon.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#2575]) +14 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-5/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@vc4/vc4_perfmon@get-values-invalid-pointer:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#2575]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-10/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#7711])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@vc4/vc4_purgeable_bo@mark-purgeable.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#7711]) +10 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-1/igt@vc4/vc4_tiling@set-bad-modifier.html
* igt@vc4/vc4_tiling@set-get:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#7711]) +4 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-5/igt@vc4/vc4_tiling@set-get.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#7711]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-18/igt@vc4/vc4_tiling@set-get.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][270] ([i915#7297]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][272] ([i915#2842]) -> [PASS][273] +3 other tests pass
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-rkl: [FAIL][274] ([i915#2842]) -> [PASS][275] +2 other tests pass
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_schedule@u-fairslice@rcs0:
- shard-mtlp: [INCOMPLETE][276] -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-mtlp-4/igt@gem_exec_schedule@u-fairslice@rcs0.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-5/igt@gem_exec_schedule@u-fairslice@rcs0.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [INCOMPLETE][278] ([i915#9275]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-dg2-10/igt@gem_exec_suspend@basic-s0@smem.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-1/igt@gem_exec_suspend@basic-s0@smem.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [INCOMPLETE][280] ([i915#10137] / [i915#9200] / [i915#9849]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [FAIL][282] ([i915#3591]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-dg1: [FAIL][284] ([i915#5115]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-dg1-12/igt@i915_pm_rpm@system-suspend-devices.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-13/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][286] ([i915#7984]) -> [PASS][287]
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-mtlp-5/igt@i915_power@sanity.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-7/igt@i915_power@sanity.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][288] ([i915#5138]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][290] ([i915#3743]) -> [PASS][291] +1 other test pass
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-snb: [SKIP][292] ([fdo#109271]) -> [PASS][293] +5 other tests pass
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-snb: [SKIP][294] ([fdo#109271] / [fdo#111767]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-tglu: [DMESG-WARN][296] ([i915#10166]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-tglu-7/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-4/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][298] ([i915#9295]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][300] ([i915#9519]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: [INCOMPLETE][302] ([i915#10137]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-glk1/igt@kms_rotation_crc@multiplane-rotation.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-glk5/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-mtlp: [FAIL][304] ([i915#9196]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3:
- shard-dg2: [FAIL][306] ([i915#9196]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-dg2-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg2-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [INCOMPLETE][308] ([i915#10137] / [i915#9618]) -> [INCOMPLETE][309] ([i915#10137] / [i915#9408] / [i915#9618])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html
* igt@kms_content_protection@type1:
- shard-snb: [INCOMPLETE][310] ([i915#8816]) -> [SKIP][311] ([fdo#109271]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-snb7/igt@kms_content_protection@type1.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-snb6/igt@kms_content_protection@type1.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][312] ([fdo#110189] / [i915#3955]) -> [SKIP][313] ([i915#3955])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][314] ([i915#4281]) -> [SKIP][315] ([i915#3361])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7706/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139
[i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166
[i915#10183]: https://gitlab.freedesktop.org/drm/intel/issues/10183
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340
[i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9562]: https://gitlab.freedesktop.org/drm/intel/issues/9562
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7706 -> IGTPW_10650
CI-20190529: 20190529
CI_DRM_14242: aed7e9419a8e3775ed46af4cff2de11d7e76c960 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10650: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/index.html
IGT_7706: dd38bc402e08b8a6c9ef26a2f5b8a9a9034cb435 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10650/index.html
[-- Attachment #2: Type: text/html, Size: 106864 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH i-g-t] tests/kms_async_flip: Reduce the clobbering area used for CRC test
2024-02-08 17:12 ` Ville Syrjälä
@ 2024-03-15 6:21 ` Kulkarni, Vandita
0 siblings, 0 replies; 8+ messages in thread
From: Kulkarni, Vandita @ 2024-03-15 6:21 UTC (permalink / raw)
To: Ville Syrjälä
Cc: juhapekka.heikkila@gmail.com, igt-dev@lists.freedesktop.org,
B S, Karthik
Thanks Ville and JP for you feedback.
After further analysis, I found that on some platforms after first mmap, updating the pixels take longer.
I have sent out a series to reuse already mmaped buffer since we are using only 2 buffers here in this test.
[PATCH i-g-t 0/3] Add support to paint already mmaped buffer, I have seen it help reduce the time during my testing.
-Vandita
> -----Original Message-----
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Sent: Thursday, February 8, 2024 10:43 PM
> To: Kulkarni, Vandita <vandita.kulkarni@intel.com>
> Cc: juhapekka.heikkila@gmail.com; igt-dev@lists.freedesktop.org; B S,
> Karthik <karthik.b.s@intel.com>
> Subject: Re: [PATCH i-g-t] tests/kms_async_flip: Reduce the clobbering area
> used for CRC test
>
> On Thu, Feb 08, 2024 at 04:03:49PM +0000, Kulkarni, Vandita wrote:
> > > -----Original Message-----
> > > From: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> > > Sent: Thursday, February 8, 2024 7:39 PM
> > > To: Kulkarni, Vandita <vandita.kulkarni@intel.com>; igt-
> > > dev@lists.freedesktop.org
> > > Cc: ville.syrjala@linux.intel.com; B S, Karthik
> > > <karthik.b.s@intel.com>
> > > Subject: Re: [PATCH i-g-t] tests/kms_async_flip: Reduce the
> > > clobbering area used for CRC test
> > >
> > > Hi Vandita,
> > >
> > > On 8.2.2024 14.10, Vandita Kulkarni wrote:
> > > > On some platforms wc_mmap write takes longer to paint the fb,
> > > > which we are using to clobber the already scanned buffer for CRC.
> > > > Hence reducing the clobbered area.
> > > >
> > > > Signed-off-by: Vandita Kulkarni <vandita.kulkarni@intel.com>
> > > > ---
> > > > tests/kms_async_flips.c | 4 ++--
> > > > 1 file changed, 2 insertions(+), 2 deletions(-)
> > > >
> > > > diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c
> > > > index
> > > > a0349fa03..2e5960943 100644
> > > > --- a/tests/kms_async_flips.c
> > > > +++ b/tests/kms_async_flips.c
> > > > @@ -589,7 +589,7 @@ static void test_crc(data_t *data)
> > > >
> > > > while (clock_ms() - start < 2000) {
> > > > /* fill the next fb with the expected color */
> > > > - paint_fb(data, &data->bufs[frame], 1, height, 0xff0000ff);
> > > > + paint_fb(data, &data->bufs[frame], 10, 10, 0xff0000ff);
> > >
> > > Here really is needed to be painted full height of the framebuffer
> > > and that width can be kept at 1 as any number higher will just increase
> the work.
> > >
> > > For async flip part of fb which will become visible is not known
> > > here so the full height of the fb need to be painted on to catch if
> > > there was something going wrong.
> > Thanks JP for the feedback, you are right, for async flip we might not
> > know if the previous fb is still being scanned until we check the last line.
> > This might not be the solution then.
> >
> > Other option(on non fixed panels) where we can optimize is by
> > selecting the smallest mode, where as now mode[0] is being picked.
>
> I already did that once, but it broke something, and was reverted.
> See commit 79483e9ae4fe ("Revert "tests/kms_async_flips: Make the crc test
> faster"")
>
> Hmm. Looking at that revert maybe the problem was that I just used that
> hardcoded 1024x768 mode, which perhaps didn't work due to i915 still
> missing the PLL algorithm for the newer platforms. Picking a smallish mode
> from the connector's mode list might work better.
>
> > Incase we pick the smallest mode we might have to write a new case to
> > test async flips with bigjoiner.
> > Also it is really not clear on which platforms and drivers, how much
> > time it would take to paint 1xh fb. I will try to check further on this.
> >
> > Thanks,
> > Vandita
> > >
> > > >
> > > > data->flip_pending = true;
> > > > ret = drmModePageFlip(data->drm_fd, data->crtc_id,
> > > > data->bufs[frame].fb_id, @@ -600,7 +600,7 @@ static void
> > > > test_crc(data_t *data)
> > > >
> > > > /* clobber the previous fb which should no longer be
> > > scanned out */
> > > > frame = !frame;
> > > > - paint_fb(data, &data->bufs[frame], 1, height, rand());
> > > > + paint_fb(data, &data->bufs[frame], 10, 10, rand());
> > > > }
> > > >
> > > > igt_pipe_crc_stop(data->pipe_crc);
> >
>
> --
> Ville Syrjälä
> Intel
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-03-15 6:21 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-08 12:10 [PATCH i-g-t] tests/kms_async_flip: Reduce the clobbering area used for CRC test Vandita Kulkarni
2024-02-08 14:08 ` Juha-Pekka Heikkila
2024-02-08 16:03 ` Kulkarni, Vandita
2024-02-08 17:12 ` Ville Syrjälä
2024-03-15 6:21 ` Kulkarni, Vandita
2024-02-08 16:08 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-02-08 17:03 ` ✓ CI.xeBAT: " Patchwork
2024-02-08 18:05 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox