* [PATCH] drm/i915/hdcp: Retry first read and writes to downstream
@ 2024-09-25 6:56 Suraj Kandpal
2024-09-25 8:55 ` Jani Nikula
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Suraj Kandpal @ 2024-09-25 6:56 UTC (permalink / raw)
To: intel-gfx; +Cc: ankit.k.nautiyal, Suraj Kandpal
Retry the first read and write to downstream at least 10 times
with a 50ms delay if not hdcp2 capable. The reason being that
during suspend resume Dock usually keep the HDCP2 registers inaccesible
causing AUX error. This wouldn't be a big problem if the userspace
just kept retrying with some delay while it continues to play low
values content but most userpace applications end up throwing an error
when it receives one from KMD. This makes sure we give the dock
and the sink devices to complete its power cycle and then try HDCP
authentication.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
drivers/gpu/drm/i915/display/intel_hdcp.c | 26 +++++++++++++++++------
1 file changed, 19 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c
index 2afa92321b08..5f2383c219e8 100644
--- a/drivers/gpu/drm/i915/display/intel_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_hdcp.c
@@ -1512,7 +1512,7 @@ static int hdcp2_authentication_key_exchange(struct intel_connector *connector)
} msgs;
const struct intel_hdcp_shim *shim = hdcp->shim;
size_t size;
- int ret;
+ int ret, i;
/* Init for seq_num */
hdcp->seq_num_v = 0;
@@ -1522,13 +1522,25 @@ static int hdcp2_authentication_key_exchange(struct intel_connector *connector)
if (ret < 0)
return ret;
- ret = shim->write_2_2_msg(connector, &msgs.ake_init,
- sizeof(msgs.ake_init));
- if (ret < 0)
- return ret;
+ for (i = 0; i <= 10; i++) {
+ if (!intel_hdcp2_get_capability(connector)) {
+ msleep(50);
+ continue;
+ }
+
+ ret = shim->write_2_2_msg(connector, &msgs.ake_init,
+ sizeof(msgs.ake_init));
+ if (ret < 0)
+ continue;
+
+ ret = shim->read_2_2_msg(connector, HDCP_2_2_AKE_SEND_CERT,
+ &msgs.send_cert, sizeof(msgs.send_cert));
+ if (ret < 0)
+ continue;
+ else
+ break;
+ }
- ret = shim->read_2_2_msg(connector, HDCP_2_2_AKE_SEND_CERT,
- &msgs.send_cert, sizeof(msgs.send_cert));
if (ret < 0)
return ret;
--
2.43.2
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [PATCH] drm/i915/hdcp: Retry first read and writes to downstream 2024-09-25 6:56 [PATCH] drm/i915/hdcp: Retry first read and writes to downstream Suraj Kandpal @ 2024-09-25 8:55 ` Jani Nikula 2024-09-25 11:35 ` Kandpal, Suraj 2024-09-26 7:14 ` Suraj Kandpal ` (4 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Jani Nikula @ 2024-09-25 8:55 UTC (permalink / raw) To: Suraj Kandpal, intel-gfx; +Cc: ankit.k.nautiyal, Suraj Kandpal On Wed, 25 Sep 2024, Suraj Kandpal <suraj.kandpal@intel.com> wrote: > Retry the first read and write to downstream at least 10 times > with a 50ms delay if not hdcp2 capable. The reason being that What are the 10 times and 50 ms delay based on? > during suspend resume Dock usually keep the HDCP2 registers inaccesible > causing AUX error. This wouldn't be a big problem if the userspace > just kept retrying with some delay while it continues to play low > values content but most userpace applications end up throwing an error > when it receives one from KMD. This makes sure we give the dock > and the sink devices to complete its power cycle and then try HDCP > authentication. > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > --- > drivers/gpu/drm/i915/display/intel_hdcp.c | 26 +++++++++++++++++------ > 1 file changed, 19 insertions(+), 7 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c > index 2afa92321b08..5f2383c219e8 100644 > --- a/drivers/gpu/drm/i915/display/intel_hdcp.c > +++ b/drivers/gpu/drm/i915/display/intel_hdcp.c > @@ -1512,7 +1512,7 @@ static int hdcp2_authentication_key_exchange(struct intel_connector *connector) > } msgs; > const struct intel_hdcp_shim *shim = hdcp->shim; > size_t size; > - int ret; > + int ret, i; > > /* Init for seq_num */ > hdcp->seq_num_v = 0; > @@ -1522,13 +1522,25 @@ static int hdcp2_authentication_key_exchange(struct intel_connector *connector) > if (ret < 0) > return ret; > > - ret = shim->write_2_2_msg(connector, &msgs.ake_init, > - sizeof(msgs.ake_init)); > - if (ret < 0) > - return ret; > + for (i = 0; i <= 10; i++) { I'm pretty nitpicky about this. Please avoid <= in the for loop if you can. Just make it the obvious (i = 0; i < 10; i++), or if you have 1 try + 10 retries, then i < 10 + 1 or i < 11. If the 10 retries is just made up, then maybe just try 10 times total. > + if (!intel_hdcp2_get_capability(connector)) { > + msleep(50); > + continue; > + } This changes behaviour for the first try too. Is that intentional? No mention in the commit message? > + > + ret = shim->write_2_2_msg(connector, &msgs.ake_init, > + sizeof(msgs.ake_init)); > + if (ret < 0) > + continue; > + > + ret = shim->read_2_2_msg(connector, HDCP_2_2_AKE_SEND_CERT, > + &msgs.send_cert, sizeof(msgs.send_cert)); > + if (ret < 0) > + continue; > + else The else is redundant here. > + break; > + } > > - ret = shim->read_2_2_msg(connector, HDCP_2_2_AKE_SEND_CERT, > - &msgs.send_cert, sizeof(msgs.send_cert)); > if (ret < 0) > return ret; -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCH] drm/i915/hdcp: Retry first read and writes to downstream 2024-09-25 8:55 ` Jani Nikula @ 2024-09-25 11:35 ` Kandpal, Suraj 0 siblings, 0 replies; 9+ messages in thread From: Kandpal, Suraj @ 2024-09-25 11:35 UTC (permalink / raw) To: Jani Nikula, intel-gfx@lists.freedesktop.org; +Cc: Nautiyal, Ankit K > -----Original Message----- > From: Jani Nikula <jani.nikula@linux.intel.com> > Sent: Wednesday, September 25, 2024 2:26 PM > To: Kandpal, Suraj <suraj.kandpal@intel.com>; intel- > gfx@lists.freedesktop.org > Cc: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>; Kandpal, Suraj > <suraj.kandpal@intel.com> > Subject: Re: [PATCH] drm/i915/hdcp: Retry first read and writes to > downstream > > On Wed, 25 Sep 2024, Suraj Kandpal <suraj.kandpal@intel.com> wrote: > > Retry the first read and write to downstream at least 10 times with a > > 50ms delay if not hdcp2 capable. The reason being that > > What are the 10 times and 50 ms delay based on? > Multiple trial and errors and getting it working of wd19tb dock, hp type c and Lenovo Dock, > > during suspend resume Dock usually keep the HDCP2 registers > > inaccesible causing AUX error. This wouldn't be a big problem if the > > userspace just kept retrying with some delay while it continues to > > play low values content but most userpace applications end up throwing > > an error when it receives one from KMD. This makes sure we give the > > dock and the sink devices to complete its power cycle and then try > > HDCP authentication. > > > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > > --- > > drivers/gpu/drm/i915/display/intel_hdcp.c | 26 > > +++++++++++++++++------ > > 1 file changed, 19 insertions(+), 7 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c > > b/drivers/gpu/drm/i915/display/intel_hdcp.c > > index 2afa92321b08..5f2383c219e8 100644 > > --- a/drivers/gpu/drm/i915/display/intel_hdcp.c > > +++ b/drivers/gpu/drm/i915/display/intel_hdcp.c > > @@ -1512,7 +1512,7 @@ static int > hdcp2_authentication_key_exchange(struct intel_connector *connector) > > } msgs; > > const struct intel_hdcp_shim *shim = hdcp->shim; > > size_t size; > > - int ret; > > + int ret, i; > > > > /* Init for seq_num */ > > hdcp->seq_num_v = 0; > > @@ -1522,13 +1522,25 @@ static int > hdcp2_authentication_key_exchange(struct intel_connector *connector) > > if (ret < 0) > > return ret; > > > > - ret = shim->write_2_2_msg(connector, &msgs.ake_init, > > - sizeof(msgs.ake_init)); > > - if (ret < 0) > > - return ret; > > + for (i = 0; i <= 10; i++) { > > I'm pretty nitpicky about this. Please avoid <= in the for loop if you can. Just > make it the obvious (i = 0; i < 10; i++), or if you have 1 try > + 10 retries, then i < 10 + 1 or i < 11. > > If the 10 retries is just made up, then maybe just try 10 times total. Sure will update it to have just < 10 > > > + if (!intel_hdcp2_get_capability(connector)) { > > + msleep(50); > > + continue; > > + } > > This changes behaviour for the first try too. Is that intentional? No mention > in the commit message? Yes normally when we se that the aux returns a NACK we also see that hdcp2 capability suddenly gets reported as not capable hence we add a little delay to give dock a little time to sort itself out. Will add this in the commit message too. > > > + > > + ret = shim->write_2_2_msg(connector, &msgs.ake_init, > > + sizeof(msgs.ake_init)); > > + if (ret < 0) > > + continue; > > + > > + ret = shim->read_2_2_msg(connector, > HDCP_2_2_AKE_SEND_CERT, > > + &msgs.send_cert, > sizeof(msgs.send_cert)); > > + if (ret < 0) > > + continue; > > + else > > The else is redundant here. Ohkay we can the if(ret > 0) break Since we need to come out of the loop as soon as the first write and the read pass Regards, Suraj Kandpal > > > + break; > > + } > > > > - ret = shim->read_2_2_msg(connector, HDCP_2_2_AKE_SEND_CERT, > > - &msgs.send_cert, sizeof(msgs.send_cert)); > > if (ret < 0) > > return ret; > > -- > Jani Nikula, Intel ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH] drm/i915/hdcp: Retry first read and writes to downstream 2024-09-25 6:56 [PATCH] drm/i915/hdcp: Retry first read and writes to downstream Suraj Kandpal 2024-09-25 8:55 ` Jani Nikula @ 2024-09-26 7:14 ` Suraj Kandpal 2024-09-27 4:52 ` Nautiyal, Ankit K 2024-09-27 6:04 ` Suraj Kandpal ` (3 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Suraj Kandpal @ 2024-09-26 7:14 UTC (permalink / raw) To: intel-gfx; +Cc: ankit.k.nautiyal, Suraj Kandpal Retry the first read and write to downstream at least 10 times with a 50ms delay if not hdcp2 capable(dock decides to stop advertising hdcp2 capability for some reason). The reason being that during suspend resume Dock usually keep the HDCP2 registers inaccesible causing AUX error. This wouldn't be a big problem if the userspace just kept retrying with some delay while it continues to play low values content but most userpace applications end up throwing an error when it receives one from KMD. This makes sure we give the dock and the sink devices to complete its power cycle and then try HDCP authentication. --v2 -Add more details in comment [Jani] -fix looping condition [Jani] -optimize loop exit condition [Jani] Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> --- drivers/gpu/drm/i915/display/intel_hdcp.c | 24 ++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c index 2afa92321b08..46b6f30f9776 100644 --- a/drivers/gpu/drm/i915/display/intel_hdcp.c +++ b/drivers/gpu/drm/i915/display/intel_hdcp.c @@ -1512,7 +1512,7 @@ static int hdcp2_authentication_key_exchange(struct intel_connector *connector) } msgs; const struct intel_hdcp_shim *shim = hdcp->shim; size_t size; - int ret; + int ret, i; /* Init for seq_num */ hdcp->seq_num_v = 0; @@ -1522,13 +1522,23 @@ static int hdcp2_authentication_key_exchange(struct intel_connector *connector) if (ret < 0) return ret; - ret = shim->write_2_2_msg(connector, &msgs.ake_init, - sizeof(msgs.ake_init)); - if (ret < 0) - return ret; + for (i = 0; i < 10; i++) { + if (!intel_hdcp2_get_capability(connector)) { + msleep(50); + continue; + } + + ret = shim->write_2_2_msg(connector, &msgs.ake_init, + sizeof(msgs.ake_init)); + if (ret < 0) + continue; + + ret = shim->read_2_2_msg(connector, HDCP_2_2_AKE_SEND_CERT, + &msgs.send_cert, sizeof(msgs.send_cert)); + if (ret > 0) + break; + } - ret = shim->read_2_2_msg(connector, HDCP_2_2_AKE_SEND_CERT, - &msgs.send_cert, sizeof(msgs.send_cert)); if (ret < 0) return ret; -- 2.43.2 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/i915/hdcp: Retry first read and writes to downstream 2024-09-26 7:14 ` Suraj Kandpal @ 2024-09-27 4:52 ` Nautiyal, Ankit K 0 siblings, 0 replies; 9+ messages in thread From: Nautiyal, Ankit K @ 2024-09-27 4:52 UTC (permalink / raw) To: Suraj Kandpal, intel-gfx On 9/26/2024 12:44 PM, Suraj Kandpal wrote: > Retry the first read and write to downstream at least 10 times > with a 50ms delay if not hdcp2 capable(dock decides to stop advertising > hdcp2 capability for some reason). The reason being that > during suspend resume Dock usually keep the HDCP2 registers inaccesible > causing AUX error. This wouldn't be a big problem if the userspace > just kept retrying with some delay while it continues to play low > values content but most userpace applications end up throwing an error > when it receives one from KMD. This makes sure we give the dock > and the sink devices to complete its power cycle and then try HDCP > authentication. > > --v2 > -Add more details in comment [Jani] > -fix looping condition [Jani] > -optimize loop exit condition [Jani] > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > --- > drivers/gpu/drm/i915/display/intel_hdcp.c | 24 ++++++++++++++++------- > 1 file changed, 17 insertions(+), 7 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c > index 2afa92321b08..46b6f30f9776 100644 > --- a/drivers/gpu/drm/i915/display/intel_hdcp.c > +++ b/drivers/gpu/drm/i915/display/intel_hdcp.c > @@ -1512,7 +1512,7 @@ static int hdcp2_authentication_key_exchange(struct intel_connector *connector) > } msgs; > const struct intel_hdcp_shim *shim = hdcp->shim; > size_t size; > - int ret; > + int ret, i; > > /* Init for seq_num */ > hdcp->seq_num_v = 0; > @@ -1522,13 +1522,23 @@ static int hdcp2_authentication_key_exchange(struct intel_connector *connector) > if (ret < 0) > return ret; > > - ret = shim->write_2_2_msg(connector, &msgs.ake_init, > - sizeof(msgs.ake_init)); > - if (ret < 0) > - return ret; > + for (i = 0; i < 10; i++) { I think lets add as a note for the reasoning for reading caps before writing the message, and trying 10 times with 50 ms sleep, similar to the commit message. Overall the change looks good to me. With the above note: Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > + if (!intel_hdcp2_get_capability(connector)) { > + msleep(50); > + continue; > + } > + > + ret = shim->write_2_2_msg(connector, &msgs.ake_init, > + sizeof(msgs.ake_init)); > + if (ret < 0) > + continue; > + > + ret = shim->read_2_2_msg(connector, HDCP_2_2_AKE_SEND_CERT, > + &msgs.send_cert, sizeof(msgs.send_cert)); > + if (ret > 0) > + break; > + } > > - ret = shim->read_2_2_msg(connector, HDCP_2_2_AKE_SEND_CERT, > - &msgs.send_cert, sizeof(msgs.send_cert)); > if (ret < 0) > return ret; > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH] drm/i915/hdcp: Retry first read and writes to downstream 2024-09-25 6:56 [PATCH] drm/i915/hdcp: Retry first read and writes to downstream Suraj Kandpal 2024-09-25 8:55 ` Jani Nikula 2024-09-26 7:14 ` Suraj Kandpal @ 2024-09-27 6:04 ` Suraj Kandpal 2024-09-27 21:49 ` ✓ Fi.CI.BAT: success for drm/i915/hdcp: Retry first read and writes to downstream (rev3) Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Suraj Kandpal @ 2024-09-27 6:04 UTC (permalink / raw) To: intel-gfx; +Cc: ankit.k.nautiyal, Suraj Kandpal Retry the first read and write to downstream at least 10 times with a 50ms delay if not hdcp2 capable(dock decides to stop advertising hdcp2 capability for some reason). The reason being that during suspend resume Dock usually keep the HDCP2 registers inaccesible causing AUX error. This wouldn't be a big problem if the userspace just kept retrying with some delay while it continues to play low values content but most userpace applications end up throwing an error when it receives one from KMD. This makes sure we give the dock and the sink devices to complete its power cycle and then try HDCP authentication. --v2 -Add more details in comment [Jani] -fix looping condition [Jani] -optimize loop exit condition [Jani] --v3 -Add comment explaining why the loop was added [Ankit] Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> --- drivers/gpu/drm/i915/display/intel_hdcp.c | 37 ++++++++++++++++++----- 1 file changed, 30 insertions(+), 7 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c index 2afa92321b08..00d4c9ac6c45 100644 --- a/drivers/gpu/drm/i915/display/intel_hdcp.c +++ b/drivers/gpu/drm/i915/display/intel_hdcp.c @@ -1512,7 +1512,7 @@ static int hdcp2_authentication_key_exchange(struct intel_connector *connector) } msgs; const struct intel_hdcp_shim *shim = hdcp->shim; size_t size; - int ret; + int ret, i; /* Init for seq_num */ hdcp->seq_num_v = 0; @@ -1522,13 +1522,36 @@ static int hdcp2_authentication_key_exchange(struct intel_connector *connector) if (ret < 0) return ret; - ret = shim->write_2_2_msg(connector, &msgs.ake_init, - sizeof(msgs.ake_init)); - if (ret < 0) - return ret; + /* + * Retry the first read and write to downstream at least 10 times + * with a 50ms delay if not hdcp2 capable(dock decides to stop advertising + * hdcp2 capability for some reason). The reason being that + * during suspend resume dock usually keeps the HDCP2 registers inaccesible + * causing AUX error. This wouldn't be a big problem if the userspace + * just kept retrying with some delay while it continues to play low + * value content but most userpace applications end up throwing an error + * when it receives one from KMD. This makes sure we give the dock + * and the sink devices to complete its power cycle and then try HDCP + * authentication. The values of 10 and delay of 50ms was decided based + * on multiple trial and errors. + */ + for (i = 0; i < 10; i++) { + if (!intel_hdcp2_get_capability(connector)) { + msleep(50); + continue; + } + + ret = shim->write_2_2_msg(connector, &msgs.ake_init, + sizeof(msgs.ake_init)); + if (ret < 0) + continue; + + ret = shim->read_2_2_msg(connector, HDCP_2_2_AKE_SEND_CERT, + &msgs.send_cert, sizeof(msgs.send_cert)); + if (ret > 0) + break; + } - ret = shim->read_2_2_msg(connector, HDCP_2_2_AKE_SEND_CERT, - &msgs.send_cert, sizeof(msgs.send_cert)); if (ret < 0) return ret; -- 2.43.2 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915/hdcp: Retry first read and writes to downstream (rev3) 2024-09-25 6:56 [PATCH] drm/i915/hdcp: Retry first read and writes to downstream Suraj Kandpal ` (2 preceding siblings ...) 2024-09-27 6:04 ` Suraj Kandpal @ 2024-09-27 21:49 ` Patchwork 2024-09-28 20:34 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-09-30 18:18 ` ✓ Fi.CI.IGT: success " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-09-27 21:49 UTC (permalink / raw) To: Suraj Kandpal; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 2807 bytes --] == Series Details == Series: drm/i915/hdcp: Retry first read and writes to downstream (rev3) URL : https://patchwork.freedesktop.org/series/139078/ State : success == Summary == CI Bug Log - changes from CI_DRM_15453 -> Patchwork_139078v3 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/index.html Participating hosts (37 -> 34) ------------------------------ Missing (3): bat-dg2-13 bat-arls-2 fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_139078v3 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [DMESG-WARN][2] ([i915#10341]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/bat-mtlp-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@hangcheck: - bat-mtlp-8: [PASS][3] -> [DMESG-WARN][4] ([i915#11349]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/bat-mtlp-8/igt@i915_selftest@live@hangcheck.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/bat-mtlp-8/igt@i915_selftest@live@hangcheck.html #### Possible fixes #### * igt@i915_selftest@live: - bat-arls-1: [DMESG-WARN][5] ([i915#10341] / [i915#12133]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/bat-arls-1/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/bat-arls-1/igt@i915_selftest@live.html * igt@i915_selftest@live@hangcheck: - bat-arls-1: [DMESG-WARN][7] ([i915#11349]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/bat-arls-1/igt@i915_selftest@live@hangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/bat-arls-1/igt@i915_selftest@live@hangcheck.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 Build changes ------------- * Linux: CI_DRM_15453 -> Patchwork_139078v3 CI-20190529: 20190529 CI_DRM_15453: 1522f131505272ed86f58e937f2481e4e3e144c1 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8036: 5aa244179b574e949a07ab1c7494033081735718 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_139078v3: 1522f131505272ed86f58e937f2481e4e3e144c1 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/index.html [-- Attachment #2: Type: text/html, Size: 3643 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/hdcp: Retry first read and writes to downstream (rev3) 2024-09-25 6:56 [PATCH] drm/i915/hdcp: Retry first read and writes to downstream Suraj Kandpal ` (3 preceding siblings ...) 2024-09-27 21:49 ` ✓ Fi.CI.BAT: success for drm/i915/hdcp: Retry first read and writes to downstream (rev3) Patchwork @ 2024-09-28 20:34 ` Patchwork 2024-09-30 18:18 ` ✓ Fi.CI.IGT: success " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-09-28 20:34 UTC (permalink / raw) To: Suraj Kandpal; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100290 bytes --] == Series Details == Series: drm/i915/hdcp: Retry first read and writes to downstream (rev3) URL : https://patchwork.freedesktop.org/series/139078/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15453_full -> Patchwork_139078v3_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_139078v3_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_139078v3_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. Participating hosts (9 -> 8) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_139078v3_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html * igt@i915_pm_rps@reset: - shard-tglu: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-9/igt@i915_pm_rps@reset.html * igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing: - shard-tglu: [PASS][4] -> [SKIP][5] +32 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-7/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][6] +8 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][7] +8 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][8] +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][9] +15 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][10] +34 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-tglu: [PASS][11] -> [FAIL][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-7/igt@perf@gen12-group-concurrent-oa-buffer-read.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html #### Warnings #### * igt@gem_ctx_engines@invalid-engines: - shard-glk: [FAIL][13] ([i915#12027]) -> [FAIL][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk1/igt@gem_ctx_engines@invalid-engines.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk4/igt@gem_ctx_engines@invalid-engines.html * igt@gem_exec_fair@basic-pace-share: - shard-glk: ([FAIL][15], [FAIL][16]) ([i915#2842]) -> [FAIL][17] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@gem_exec_fair@basic-pace-share.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk6/igt@gem_exec_fair@basic-pace-share.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk7/igt@gem_exec_fair@basic-pace-share.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [SKIP][18] ([i915#5286]) -> [SKIP][19] +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: [SKIP][20] ([i915#9197]) -> [SKIP][21] +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-tglu: [SKIP][22] ([i915#6095]) -> [SKIP][23] +4 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: [SKIP][24] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) -> [SKIP][25] +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_content_protection@atomic-dpms.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_content_protection@atomic-dpms.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu: [SKIP][26] ([i915#11453]) -> [SKIP][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-tglu: [SKIP][28] ([i915#3555]) -> [SKIP][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-max-size.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: [SKIP][30] ([i915#9723]) -> [SKIP][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-tglu: [SKIP][32] ([i915#8588]) -> [SKIP][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-7/igt@kms_display_modes@mst-extended-mode-negative.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu: [SKIP][34] ([i915#3840] / [i915#9053]) -> [SKIP][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: [SKIP][36] ([i915#4423]) -> [SKIP][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-tiling-4.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: [SKIP][38] ([i915#5354]) -> [SKIP][39] +11 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_hdr@static-toggle: - shard-tglu: [SKIP][40] ([i915#3555] / [i915#8228]) -> [SKIP][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_hdr@static-toggle.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_hdr@static-toggle.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][42] ([i915#7484]) -> [FAIL][43] +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - {shard-tglu-1}: NOTRUN -> [SKIP][44] +9 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html New tests --------- New tests have been introduced between CI_DRM_15453_full and Patchwork_139078v3_full: ### New IGT tests (2) ### * igt@gem_exec_flush: - Statuses : - Exec time: [None] s * igt@kms_hdr: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in Patchwork_139078v3_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#8414]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-15/igt@drm_fdinfo@virtual-busy-hang.html * igt@fbdev@eof: - shard-tglu: [PASS][46] -> [SKIP][47] ([i915#2582]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@fbdev@eof.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@fbdev@eof.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4873]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_caching@read-writes.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#3555] / [i915#9323]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@gem_ccs@block-copy-compressed.html - shard-tglu: NOTRUN -> [SKIP][50] ([i915#3555] / [i915#9323]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@gem_ccs@block-copy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3555] / [i915#9323]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#9323]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][53] -> [INCOMPLETE][54] ([i915#7297]) +1 other test incomplete [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-4/igt@gem_ccs@suspend-resume.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#6335]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-big.html - shard-dg2: NOTRUN -> [ABORT][56] ([i915#9846]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_engines@invalid-engines: - shard-tglu: [PASS][57] -> [FAIL][58] ([i915#12027]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@gem_ctx_engines@invalid-engines.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-2/igt@gem_ctx_engines@invalid-engines.html - shard-mtlp: [PASS][59] -> [FAIL][60] ([i915#12027]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-8/igt@gem_ctx_engines@invalid-engines.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#8555]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8555]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@hostile: - shard-dg1: NOTRUN -> [FAIL][63] ([i915#11980]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@gem_ctx_persistence@hostile.html - shard-snb: NOTRUN -> [SKIP][64] ([i915#1099]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb6/igt@gem_ctx_persistence@hostile.html - shard-mtlp: NOTRUN -> [FAIL][65] ([i915#11980]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#280]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#4525]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#6334]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: NOTRUN -> [FAIL][69] ([i915#2842]) +1 other test fail [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fence@submit3: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4812]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-2/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3539] / [i915#4852]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3281]) +14 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-scanout@vcs1: - shard-tglu: [PASS][73] -> [SKIP][74] ([i915#3639]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-7/igt@gem_exec_reloc@basic-scanout@vcs1.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@gem_exec_reloc@basic-scanout@vcs1.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: [PASS][75] -> [INCOMPLETE][76] ([i915#11441]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-6/igt@gem_exec_suspend@basic-s0@lmem0.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#2190]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#4613]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#4613]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#12193]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-16/igt@gem_lmem_swapping@verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4613]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4565]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-16/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#284]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_media_vme.html * igt@gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4077]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_offset@clear: - shard-mtlp: [PASS][85] -> [ABORT][86] ([i915#10729]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-8/igt@gem_mmap_offset@clear.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-6/igt@gem_mmap_offset@clear.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [PASS][87] -> [ABORT][88] ([i915#10029] / [i915#10729]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-8/igt@gem_mmap_offset@clear@smem0.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-6/igt@gem_mmap_offset@clear@smem0.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4083]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-6/igt@gem_mmap_wc@bad-offset.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#3282]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@create-regular-context-2: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4270]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#4270]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-9/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#4270]) +6 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4270]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4270]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#8428]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#8411]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4885]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#4885]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3297]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu: NOTRUN -> [SKIP][101] ([i915#3297]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#2527]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-15/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@gen9_exec_parse@bb-oversize.html - shard-tglu: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#2856]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@gen9_exec_parse@secure-batches.html - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#2856]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-6/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][107] ([i915#9820]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#8399]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: NOTRUN -> [FAIL][109] ([i915#3591]) +1 other test fail [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][110] -> [INCOMPLETE][111] ([i915#7790]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-snb4/igt@i915_pm_rps@reset.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#6245]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@i915_query@hwconfig_table.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg1: [PASS][113] -> [DMESG-WARN][114] ([i915#1982] / [i915#4391] / [i915#4423]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-13/igt@i915_suspend@basic-s3-without-i915.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-12/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@bad-pitch-63: - shard-glk: [PASS][115] -> [INCOMPLETE][116] ([i915#2295]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk7/igt@kms_addfb_basic@bad-pitch-63.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk5/igt@kms_addfb_basic@bad-pitch-63.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#4212]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-glk: ([PASS][118], [PASS][119]) -> [FAIL][120] ([i915#10991]) +1 other test fail [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#8709]) +11 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-glk: ([PASS][122], [PASS][123]) -> [FAIL][124] ([i915#12238]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk2/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs: - shard-glk: ([PASS][125], [PASS][126]) -> [FAIL][127] ([i915#11859]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk2/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-snb: [PASS][129] -> [FAIL][130] ([i915#5956]) +1 other test fail [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5286]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#5286]) +4 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-9/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#5286]) +7 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][134] -> [FAIL][135] ([i915#5138]) +1 other test fail [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#3638]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-15/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2: [PASS][137] -> [SKIP][138] ([i915#9197]) +37 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#3638]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5190]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#6095]) +79 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6095]) +9 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][144] +8 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#6095]) +81 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#6095]) +106 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#10307] / [i915#6095]) +150 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#11616] / [i915#7213]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#4087]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#7828]) +8 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_chamelium_audio@dp-audio.html - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#7828]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-6/igt@kms_chamelium_audio@dp-audio.html - shard-dg2: NOTRUN -> [SKIP][153] ([i915#7828]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][154] +7 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#7828]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#7828]) +11 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3116]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][158] ([i915#3116] / [i915#3299]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#7116] / [i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#11453]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#11453]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8814]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#11453]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#8814]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#4103]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#9809]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][170] +35 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#9067]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#4103]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#1769] / [i915#3555] / [i915#3804]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3804]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#1257]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3840]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_dsc@dsc-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#3840]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_dsc@dsc-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#4854]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#658]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#658]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#4881]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][184] +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3637]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#3637] / [i915#3966]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#3637]) +7 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@blocking-wf_vblank@a-hdmi-a1: - shard-tglu: [PASS][188] -> [FAIL][189] ([i915#2122]) +1 other test fail [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-4/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-2/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-tglu: [PASS][190] -> [SKIP][191] ([i915#3637]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][192] ([i915#2122]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555] / [i915#8813]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#2672]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#2672]) +4 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-tglu: [PASS][199] -> [SKIP][200] ([i915#3555]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#2587] / [i915#2672] / [i915#3555]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#2672] / [i915#3555]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2: [PASS][203] -> [SKIP][204] ([i915#3555]) +4 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#2672]) +3 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][206] ([i915#2587] / [i915#2672]) +4 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-tglu: [PASS][208] -> [SKIP][209] ([i915#1849]) +5 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: [PASS][210] -> [SKIP][211] ([i915#5354]) +13 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#1825]) +44 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-snb: [PASS][213] -> [SKIP][214] [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-tglu: NOTRUN -> [SKIP][215] +52 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3458]) +5 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][217] +8 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#1825]) +7 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#1849]) +14 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#3023]) +27 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3458]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#5354]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@plane-panning-top-left: - shard-tglu: [PASS][226] -> [SKIP][227] ([i915#8825]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_plane@plane-panning-top-left.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane@plane-panning-top-left.html * igt@kms_plane@plane-position-covered: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#8825]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane@plane-position-covered.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-dg2: [PASS][229] -> [SKIP][230] ([i915#7294]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@coverage-7efc: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#7294]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane_alpha_blend@coverage-7efc.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#3555]) +6 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-glk: ([PASS][233], [PASS][234]) -> [SKIP][235] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk7/igt@kms_plane_scaling@intel-max-src-size.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk5/igt@kms_plane_scaling@intel-max-src-size.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#12247]) +13 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation: - shard-dg2: [PASS][237] -> [SKIP][238] ([i915#12247] / [i915#8152] / [i915#9423]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d: - shard-dg2: [PASS][239] -> [SKIP][240] ([i915#12247] / [i915#8152]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#12247] / [i915#8152]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d: - shard-tglu: [PASS][242] -> [SKIP][243] ([i915#8152]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#3555]) +4 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-dg2: [PASS][245] -> [SKIP][246] ([i915#8152] / [i915#9423]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c: - shard-dg2: [PASS][247] -> [SKIP][248] ([i915#12247]) +14 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d: - shard-dg2: [PASS][249] -> [SKIP][250] ([i915#8152]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-dg2: [PASS][251] -> [SKIP][252] ([i915#3555] / [i915#8152] / [i915#9423]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-tglu: [PASS][253] -> [SKIP][254] ([i915#12247] / [i915#6953] / [i915#8152]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b: - shard-tglu: [PASS][255] -> [SKIP][256] ([i915#12247]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: - shard-tglu: [PASS][257] -> [SKIP][258] ([i915#12247] / [i915#8152]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#12247] / [i915#6953]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#12247]) +20 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#9812]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#5354]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#9685]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-9/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_rpm@basic-rte: - shard-dg1: [PASS][264] -> [DMESG-WARN][265] ([i915#4423]) +2 other tests dmesg-warn [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-18/igt@kms_pm_rpm@basic-rte.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-16/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@drm-resources-equal: - shard-tglu: [PASS][266] -> [SKIP][267] ([i915#3547] / [i915#9519]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-7/igt@kms_pm_rpm@drm-resources-equal.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#9519]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][269] -> [SKIP][270] ([i915#9519]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-rkl: NOTRUN -> [SKIP][271] ([i915#9519]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@pm-caching: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#4077]) +3 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_pm_rpm@pm-caching.html - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#4077]) +4 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_pm_rpm@pm-caching.html * igt@kms_prime@basic-crc-hybrid: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#6524]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#6524]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][276] ([i915#6524]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-9/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#9683]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#9732]) +16 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#1072] / [i915#9732]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr@fbc-psr2-sprite-blt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#9688]) +6 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#1072] / [i915#9732]) +24 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-cursor-render: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#1072] / [i915#9732]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-16/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-snb: NOTRUN -> [SKIP][283] +75 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb6/igt@kms_psr@psr2-sprite-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#4077] / [i915#9688]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#9685]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#5289]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][287] ([i915#5289]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][288] ([i915#5465]) +2 other tests fail [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb6/igt@kms_setmode@basic.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#8623]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak: - shard-mtlp: [PASS][290] -> [FAIL][291] ([i915#9196]) +1 other test fail [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#8808] / [i915#9906]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#11920]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][294] ([i915#11920]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#9906]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#2437]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#2437] / [i915#9412]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#2437] / [i915#9412]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_writeback@writeback-pixel-formats.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [FAIL][299] ([i915#11943]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#8516]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#3291] / [i915#3708]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@prime_vgem@basic-fence-read.html - shard-dg1: NOTRUN -> [SKIP][302] ([i915#3708]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@prime_vgem@basic-fence-read.html - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#3708]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#3708]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@prime_vgem@fence-read-hang.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-tglu: NOTRUN -> [FAIL][305] ([i915#9781]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@fbdev@unaligned-read: - shard-tglu: [SKIP][306] ([i915#2582]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@fbdev@unaligned-read.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@fbdev@unaligned-read.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][308] ([i915#2842]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][310] ([i915#5493]) -> [PASS][311] +1 other test pass [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_wc@set-cache-level: - shard-tglu: [SKIP][312] ([i915#1850]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@gem_mmap_wc@set-cache-level.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@gem_mmap_wc@set-cache-level.html * igt@gen9_exec_parse@allowed-single: - shard-glk: ([PASS][314], [ABORT][315]) ([i915#5566]) -> [PASS][316] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk7/igt@gen9_exec_parse@allowed-single.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@gen9_exec_parse@allowed-single.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk5/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [ABORT][317] ([i915#9820]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html - shard-snb: [ABORT][319] ([i915#9820]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [ABORT][321] ([i915#9820]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][323] ([i915#10131] / [i915#9820]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: [SKIP][325] -> [PASS][326] +40 other tests pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: ([PASS][327], [FAIL][328]) ([i915#2346]) -> [PASS][329] +1 other test pass [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dirtyfb@default-dirtyfb-ioctl: - shard-dg1: [DMESG-WARN][330] ([i915#4423]) -> [PASS][331] +1 other test pass [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-19/igt@kms_dirtyfb@default-dirtyfb-ioctl.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-12/igt@kms_dirtyfb@default-dirtyfb-ioctl.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-glk: ([PASS][332], [FAIL][333]) ([i915#2122]) -> [PASS][334] +5 other tests pass [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk8/igt@kms_flip@2x-plain-flip-fb-recreate.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk4/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: ([FAIL][335], [FAIL][336]) ([i915#2122]) -> [PASS][337] +3 other tests pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@dpms-off-confusion-interruptible: - shard-dg2: [SKIP][338] ([i915#5354]) -> [PASS][339] +20 other tests pass [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_flip@dpms-off-confusion-interruptible.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_flip@dpms-off-confusion-interruptible.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset: - shard-tglu: [SKIP][340] ([i915#3637]) -> [PASS][341] +5 other tests pass [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@plain-flip-ts-check@b-vga1: - shard-snb: [FAIL][342] ([i915#2122]) -> [PASS][343] +2 other tests pass [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-snb6/igt@kms_flip@plain-flip-ts-check@b-vga1.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb7/igt@kms_flip@plain-flip-ts-check@b-vga1.html * igt@kms_flip@plain-flip-ts-check@c-edp1: - shard-mtlp: [FAIL][344] ([i915#2122]) -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check@c-edp1.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-8/igt@kms_flip@plain-flip-ts-check@c-edp1.html * igt@kms_flip@plain-flip-ts-check@c-hdmi-a4: - shard-dg1: [FAIL][346] ([i915#2122]) -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-14/igt@kms_flip@plain-flip-ts-check@c-hdmi-a4.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-19/igt@kms_flip@plain-flip-ts-check@c-hdmi-a4.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-dg2: [FAIL][348] ([i915#6880]) -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_hdr@static-toggle: - shard-dg2: [SKIP][350] ([i915#3555] / [i915#8228]) -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_hdr@static-toggle.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_hdr@static-toggle.html * igt@kms_invalid_mode@bad-hsync-end: - shard-dg2: [SKIP][352] ([i915#3555]) -> [PASS][353] +5 other tests pass [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_invalid_mode@bad-hsync-end.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_invalid_mode@bad-hsync-end.html - shard-tglu: [SKIP][354] ([i915#3555]) -> [PASS][355] +2 other tests pass [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_invalid_mode@bad-hsync-end.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_invalid_mode@bad-hsync-end.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg2: [SKIP][356] ([i915#8825]) -> [PASS][357] [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right-suspend.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-dg2: [SKIP][358] ([i915#7294]) -> [PASS][359] +1 other test pass [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-basic.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant: - shard-tglu: [SKIP][360] ([i915#7294]) -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-dg2: [SKIP][362] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][363] +3 other tests pass [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d: - shard-dg2: [SKIP][364] ([i915#12247] / [i915#8152]) -> [PASS][365] +6 other tests pass [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-dg2: [SKIP][366] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - shard-tglu: [SKIP][368] ([i915#12247] / [i915#3558] / [i915#8152]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b: - shard-tglu: [SKIP][370] ([i915#12247]) -> [PASS][371] +2 other tests pass [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d: - shard-tglu: [SKIP][372] ([i915#12247] / [i915#8152]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-dg2: [SKIP][374] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-dg2: [SKIP][376] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a: - shard-dg2: [SKIP][378] ([i915#12247]) -> [PASS][379] +20 other tests pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][380] ([i915#9295]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][382] ([i915#9340]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@cursor-dpms: - shard-tglu: [SKIP][384] ([i915#1849]) -> [PASS][385] +9 other tests pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_pm_rpm@cursor-dpms.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_pm_rpm@cursor-dpms.html - shard-dg2: [SKIP][386] ([i915#1849]) -> [PASS][387] +1 other test pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][388] ([i915#9519]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][390] ([i915#9519]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_vblank@ts-continuation-modeset: - shard-dg2: [SKIP][392] ([i915#9197]) -> [PASS][393] +47 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_vblank@ts-continuation-modeset.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-11/igt@kms_vblank@ts-continuation-modeset.html #### Warnings #### * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: ([FAIL][394], [FAIL][395]) ([i915#2842]) -> [FAIL][396] ([i915#2876]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: [SKIP][397] ([i915#7091]) -> [SKIP][398] ([i915#9197]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_selftest@mock: - shard-dg1: [DMESG-WARN][399] ([i915#1982] / [i915#9311]) -> [DMESG-WARN][400] ([i915#9311]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-19/igt@i915_selftest@mock.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-17/igt@i915_selftest@mock.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: [SKIP][401] ([i915#6228]) -> [SKIP][402] ([i915#9197]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_async_flips@invalid-async-flip.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: [SKIP][403] ([i915#9197]) -> [SKIP][404] ([i915#9531]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2: [SKIP][405] -> [SKIP][406] ([i915#9197]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg1: [SKIP][407] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][408] ([i915#4538] / [i915#5286]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-19/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-12/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [SKIP][409] -> [SKIP][410] ([i915#5286]) +2 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2: [SKIP][411] ([i915#9197]) -> [SKIP][412] +2 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: [SKIP][413] ([i915#5190] / [i915#9197]) -> [SKIP][414] ([i915#4538] / [i915#5190]) +8 other tests skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: [SKIP][415] ([i915#5190]) -> [SKIP][416] ([i915#5190] / [i915#9197]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2: [SKIP][417] ([i915#5190] / [i915#9197]) -> [SKIP][418] ([i915#5190]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: [SKIP][419] ([i915#4538] / [i915#5190]) -> [SKIP][420] ([i915#5190] / [i915#9197]) +4 other tests skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs: - shard-dg2: [SKIP][421] ([i915#9197]) -> [SKIP][422] ([i915#10307] / [i915#6095]) +8 other tests skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-11/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-dg2: [SKIP][423] ([i915#10307] / [i915#6095]) -> [SKIP][424] ([i915#9197]) +6 other tests skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-tglu: [SKIP][425] -> [SKIP][426] ([i915#6095]) +12 other tests skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_content_protection@content-type-change: - shard-tglu: [SKIP][427] -> [SKIP][428] ([i915#6944] / [i915#9424]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_content_protection@content-type-change.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: [SKIP][429] ([i915#3299]) -> [SKIP][430] ([i915#9197]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg2: [SKIP][431] ([i915#9197]) -> [SKIP][432] ([i915#9424]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_content_protection@lic-type-1.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][433] ([i915#9197]) -> [SKIP][434] ([i915#7118] / [i915#9424]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_content_protection@type1.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-3/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: [SKIP][435] ([i915#11453] / [i915#3359]) -> [SKIP][436] ([i915#11453]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: [SKIP][437] ([i915#9197]) -> [SKIP][438] ([i915#11453]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2: [SKIP][439] ([i915#11453]) -> [SKIP][440] ([i915#9197]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglu: [SKIP][441] -> [SKIP][442] ([i915#3555]) +3 other tests skip [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-32x10.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: [SKIP][443] -> [SKIP][444] ([i915#11453]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-512x512.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-dg2: [SKIP][445] ([i915#5354]) -> [SKIP][446] ([i915#9197]) +2 other tests skip [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: [SKIP][447] ([i915#4103] / [i915#4213]) -> [SKIP][448] ([i915#9197]) [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: [SKIP][449] ([i915#9197]) -> [SKIP][450] ([i915#5354]) +1 other test skip [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: [SKIP][451] ([i915#9197]) -> [SKIP][452] ([i915#4103] / [i915#4213]) [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cur == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/index.html [-- Attachment #2: Type: text/html, Size: 108266 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.IGT: success for drm/i915/hdcp: Retry first read and writes to downstream (rev3) 2024-09-25 6:56 [PATCH] drm/i915/hdcp: Retry first read and writes to downstream Suraj Kandpal ` (4 preceding siblings ...) 2024-09-28 20:34 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-09-30 18:18 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-09-30 18:18 UTC (permalink / raw) To: Kandpal, Suraj; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100290 bytes --] == Series Details == Series: drm/i915/hdcp: Retry first read and writes to downstream (rev3) URL : https://patchwork.freedesktop.org/series/139078/ State : success == Summary == CI Bug Log - changes from CI_DRM_15453_full -> Patchwork_139078v3_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with Patchwork_139078v3_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_139078v3_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. Participating hosts (9 -> 8) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_139078v3_full: ### IGT changes ### #### Warnings #### * igt@gem_ctx_engines@invalid-engines: - shard-glk: [FAIL][1] ([i915#12027]) -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk1/igt@gem_ctx_engines@invalid-engines.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk4/igt@gem_ctx_engines@invalid-engines.html * igt@gem_exec_fair@basic-pace-share: - shard-glk: ([FAIL][3], [FAIL][4]) ([i915#2842]) -> [FAIL][5] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@gem_exec_fair@basic-pace-share.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk6/igt@gem_exec_fair@basic-pace-share.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk7/igt@gem_exec_fair@basic-pace-share.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][6] ([i915#7484]) -> [FAIL][7] +1 other test fail [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html New tests --------- New tests have been introduced between CI_DRM_15453_full and Patchwork_139078v3_full: ### New IGT tests (12) ### * igt@gem_exec_flush: - Statuses : - Exec time: [None] s * igt@kms_hdr: - Statuses : - Exec time: [None] s * igt@kms_plane_cursor@overlay@pipe-b-dp-3-size-128: - Statuses : 1 pass(s) - Exec time: [3.45] s * igt@kms_plane_cursor@overlay@pipe-b-dp-3-size-256: - Statuses : 1 pass(s) - Exec time: [3.45] s * igt@kms_plane_cursor@overlay@pipe-b-dp-3-size-64: - Statuses : 1 pass(s) - Exec time: [3.52] s * igt@kms_plane_cursor@overlay@pipe-d-dp-3-size-128: - Statuses : 1 pass(s) - Exec time: [3.50] s * igt@kms_plane_cursor@overlay@pipe-d-dp-3-size-256: - Statuses : 1 pass(s) - Exec time: [3.45] s * igt@kms_plane_cursor@overlay@pipe-d-dp-3-size-64: - Statuses : 1 pass(s) - Exec time: [3.53] s * igt@kms_plane_multiple@tiling-none@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [1.08] s * igt@kms_plane_multiple@tiling-none@pipe-b-dp-3: - Statuses : 1 pass(s) - Exec time: [1.03] s * igt@kms_plane_multiple@tiling-none@pipe-c-dp-3: - Statuses : 1 pass(s) - Exec time: [1.04] s * igt@kms_plane_multiple@tiling-none@pipe-d-dp-3: - Statuses : 1 pass(s) - Exec time: [1.02] s Known issues ------------ Here are the changes found in Patchwork_139078v3_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-15/igt@drm_fdinfo@virtual-busy-hang.html * igt@fbdev@eof: - shard-tglu: [PASS][9] -> [SKIP][10] ([i915#2582]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@fbdev@eof.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@fbdev@eof.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#4873]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_caching@read-writes.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@gem_ccs@block-copy-compressed.html - shard-tglu: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@gem_ccs@block-copy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][16] -> [INCOMPLETE][17] ([i915#7297]) +1 other test incomplete [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-4/igt@gem_ccs@suspend-resume.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#6335]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-big.html - shard-dg2: NOTRUN -> [ABORT][19] ([i915#9846]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_engines@invalid-engines: - shard-tglu: [PASS][20] -> [FAIL][21] ([i915#12027]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@gem_ctx_engines@invalid-engines.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-2/igt@gem_ctx_engines@invalid-engines.html - shard-mtlp: [PASS][22] -> [FAIL][23] ([i915#12027]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-8/igt@gem_ctx_engines@invalid-engines.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@hostile: - shard-dg1: NOTRUN -> [FAIL][26] ([i915#11980]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@gem_ctx_persistence@hostile.html - shard-snb: NOTRUN -> [SKIP][27] ([i915#1099]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb6/igt@gem_ctx_persistence@hostile.html - shard-mtlp: NOTRUN -> [FAIL][28] ([i915#11980]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#280]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: NOTRUN -> [FAIL][32] ([i915#2842]) +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fence@submit3: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-2/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#3281]) +14 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-scanout@vcs1: - shard-tglu: [PASS][36] -> [SKIP][37] ([i915#3639]) +5 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-7/igt@gem_exec_reloc@basic-scanout@vcs1.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@gem_exec_reloc@basic-scanout@vcs1.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][38] -> [INCOMPLETE][39] ([i915#11441]) +1 other test incomplete [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#2190]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#4613]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#4613]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#12193]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-16/igt@gem_lmem_swapping@verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4565]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-16/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#284]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_media_vme.html * igt@gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4077]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_offset@clear: - shard-mtlp: [PASS][48] -> [ABORT][49] ([i915#10729]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-8/igt@gem_mmap_offset@clear.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-6/igt@gem_mmap_offset@clear.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [PASS][50] -> [ABORT][51] ([i915#10029] / [i915#10729]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-8/igt@gem_mmap_offset@clear@smem0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-6/igt@gem_mmap_offset@clear@smem0.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4083]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-6/igt@gem_mmap_wc@bad-offset.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3282]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@create-regular-context-2: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#4270]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-9/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4270]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4270]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#8428]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#8411]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4885]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4885]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3297]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu: NOTRUN -> [SKIP][64] ([i915#3297]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#2527]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-15/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#2527]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@gen9_exec_parse@bb-oversize.html - shard-tglu: NOTRUN -> [SKIP][67] ([i915#2527] / [i915#2856]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#2856]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@gen9_exec_parse@secure-batches.html - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#2856]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-6/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][70] ([i915#9820]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#8399]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: NOTRUN -> [FAIL][72] ([i915#3591]) +1 other test fail [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][73] -> [INCOMPLETE][74] ([i915#7790]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-snb4/igt@i915_pm_rps@reset.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb4/igt@i915_pm_rps@reset.html - shard-tglu: NOTRUN -> [ABORT][75] ([i915#12309]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-9/igt@i915_pm_rps@reset.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#6245]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@i915_query@hwconfig_table.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg1: [PASS][77] -> [DMESG-WARN][78] ([i915#1982] / [i915#4391] / [i915#4423]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-13/igt@i915_suspend@basic-s3-without-i915.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-12/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@bad-pitch-63: - shard-glk: [PASS][79] -> [INCOMPLETE][80] ([i915#2295]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk7/igt@kms_addfb_basic@bad-pitch-63.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk5/igt@kms_addfb_basic@bad-pitch-63.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4212]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-glk: ([PASS][82], [PASS][83]) -> [FAIL][84] ([i915#10991]) +1 other test fail [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#8709]) +11 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-glk: ([PASS][86], [PASS][87]) -> [FAIL][88] ([i915#12238]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk2/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs: - shard-glk: ([PASS][89], [PASS][90]) -> [FAIL][91] ([i915#11859]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk2/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#1769] / [i915#3555]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-snb: [PASS][93] -> [FAIL][94] ([i915#5956]) +1 other test fail [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing: - shard-tglu: [PASS][95] -> [SKIP][96] ([i915#12306]) +32 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-7/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5286]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#5286]) +4 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-9/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#5286]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][100] -> [FAIL][101] ([i915#5138]) +1 other test fail [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#3638]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-15/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2: [PASS][103] -> [SKIP][104] ([i915#9197]) +37 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#3638]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5190]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#4538]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#6095]) +79 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6095]) +9 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#12313]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][111] ([i915#12313]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][112] +8 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#6095]) +81 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#6095]) +106 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#10307] / [i915#6095]) +150 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#11616] / [i915#7213]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4087]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#7828]) +8 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_chamelium_audio@dp-audio.html - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#7828]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-6/igt@kms_chamelium_audio@dp-audio.html - shard-dg2: NOTRUN -> [SKIP][121] ([i915#7828]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][122] +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#7828]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#7828]) +11 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3116]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][126] ([i915#3116] / [i915#3299]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#9424]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6944] / [i915#9424]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][130] ([i915#7116] / [i915#9424]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#11453]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#11453]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3555] / [i915#8814]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#11453]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#8814]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#4103]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#9809]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][138] +35 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#9067]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#4103]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#1769] / [i915#3555] / [i915#3804]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#3804]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#1257]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#3840]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#3840]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_dsc@dsc-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][146] ([i915#3555] / [i915#3840]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_dsc@dsc-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#3840]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#12306]) +20 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#4854]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#658]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][151] ([i915#658]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#4881]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][153] +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#3637]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#3637] / [i915#3966]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#3637]) +7 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@blocking-wf_vblank@a-hdmi-a1: - shard-tglu: [PASS][157] -> [FAIL][158] ([i915#2122]) +1 other test fail [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-4/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-2/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-tglu: [PASS][159] -> [SKIP][160] ([i915#3637]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][161] ([i915#2122]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#2672] / [i915#3555] / [i915#8813]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][163] ([i915#2672] / [i915#3555]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#2672]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#2587] / [i915#2672]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#2672] / [i915#3555]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#2672]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-tglu: [PASS][168] -> [SKIP][169] ([i915#3555]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#2587] / [i915#2672] / [i915#3555]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#2672] / [i915#3555]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2: [PASS][172] -> [SKIP][173] ([i915#3555]) +4 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#2672]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672]) +4 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#2672] / [i915#3555]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-tglu: [PASS][177] -> [SKIP][178] ([i915#1849]) +5 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: [PASS][179] -> [SKIP][180] ([i915#5354]) +13 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#1825]) +44 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-snb: [PASS][182] -> [SKIP][183] [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-tglu: NOTRUN -> [SKIP][184] +52 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#8708]) +6 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#3458]) +5 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][187] +8 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#1825]) +7 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#1849]) +14 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#5439]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][191] ([i915#5439]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#3023]) +27 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#8708]) +5 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#8708]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3458]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#5354]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8228]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8228]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@plane-panning-top-left: - shard-tglu: [PASS][200] -> [SKIP][201] ([i915#8825]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_plane@plane-panning-top-left.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane@plane-panning-top-left.html * igt@kms_plane@plane-position-covered: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#8825]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane@plane-position-covered.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-dg2: [PASS][203] -> [SKIP][204] ([i915#7294]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@coverage-7efc: - shard-tglu: NOTRUN -> [SKIP][205] ([i915#7294]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane_alpha_blend@coverage-7efc.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3555]) +6 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-glk: ([PASS][207], [PASS][208]) -> [SKIP][209] [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk7/igt@kms_plane_scaling@intel-max-src-size.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk5/igt@kms_plane_scaling@intel-max-src-size.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#12247]) +13 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation: - shard-dg2: [PASS][211] -> [SKIP][212] ([i915#12247] / [i915#8152] / [i915#9423]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d: - shard-dg2: [PASS][213] -> [SKIP][214] ([i915#12247] / [i915#8152]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#12247] / [i915#8152]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d: - shard-tglu: [PASS][216] -> [SKIP][217] ([i915#8152]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#3555]) +4 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-dg2: [PASS][219] -> [SKIP][220] ([i915#8152] / [i915#9423]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c: - shard-dg2: [PASS][221] -> [SKIP][222] ([i915#12247]) +14 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d: - shard-dg2: [PASS][223] -> [SKIP][224] ([i915#8152]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-dg2: [PASS][225] -> [SKIP][226] ([i915#3555] / [i915#8152] / [i915#9423]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-tglu: [PASS][227] -> [SKIP][228] ([i915#12247] / [i915#6953] / [i915#8152]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b: - shard-tglu: [PASS][229] -> [SKIP][230] ([i915#12247]) +5 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: - shard-tglu: [PASS][231] -> [SKIP][232] ([i915#12247] / [i915#8152]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#12247] / [i915#6953]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#12247]) +20 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#9812]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#5354]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#9685]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-9/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_rpm@basic-rte: - shard-dg1: [PASS][238] -> [DMESG-WARN][239] ([i915#4423]) +2 other tests dmesg-warn [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-18/igt@kms_pm_rpm@basic-rte.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-16/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@drm-resources-equal: - shard-tglu: [PASS][240] -> [SKIP][241] ([i915#3547] / [i915#9519]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-7/igt@kms_pm_rpm@drm-resources-equal.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#9519]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][243] -> [SKIP][244] ([i915#9519]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-rkl: NOTRUN -> [SKIP][245] ([i915#9519]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@pm-caching: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#4077]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_pm_rpm@pm-caching.html - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#4077]) +4 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_pm_rpm@pm-caching.html * igt@kms_prime@basic-crc-hybrid: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#6524]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#6524]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][250] ([i915#6524]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-9/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_properties@crtc-properties-atomic: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#11521]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_properties@crtc-properties-atomic.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#9808]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#11520]) +9 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#11520]) +7 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#11520]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#9683]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#9732]) +16 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#1072] / [i915#9732]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr@fbc-psr2-sprite-blt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#9688]) +6 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#1072] / [i915#9732]) +24 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-cursor-render: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#1072] / [i915#9732]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-16/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-snb: NOTRUN -> [SKIP][262] +75 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb6/igt@kms_psr@psr2-sprite-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#4077] / [i915#9688]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#9685]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#5289]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][266] ([i915#5289]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][267] ([i915#5465]) +2 other tests fail [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb6/igt@kms_setmode@basic.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#8623]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak: - shard-mtlp: [PASS][269] -> [FAIL][270] ([i915#9196]) +1 other test fail [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#8808] / [i915#9906]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#11920]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][273] ([i915#11920]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#9906]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#2437]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#2437] / [i915#9412]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#2437] / [i915#9412]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-tglu: [PASS][278] -> [FAIL][279] ([i915#10538]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-7/igt@perf@gen12-group-concurrent-oa-buffer-read.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [FAIL][280] ([i915#11943]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#8516]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#3291] / [i915#3708]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@prime_vgem@basic-fence-read.html - shard-dg1: NOTRUN -> [SKIP][283] ([i915#3708]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@prime_vgem@basic-fence-read.html - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#3708]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#3708]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-2/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#9917]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#9917]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-tglu: NOTRUN -> [FAIL][288] ([i915#9781]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@fbdev@unaligned-read: - shard-tglu: [SKIP][289] ([i915#2582]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@fbdev@unaligned-read.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@fbdev@unaligned-read.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][291] ([i915#2842]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][293] ([i915#5493]) -> [PASS][294] +1 other test pass [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_wc@set-cache-level: - shard-tglu: [SKIP][295] ([i915#1850]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@gem_mmap_wc@set-cache-level.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@gem_mmap_wc@set-cache-level.html * igt@gen9_exec_parse@allowed-single: - shard-glk: ([PASS][297], [ABORT][298]) ([i915#5566]) -> [PASS][299] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk7/igt@gen9_exec_parse@allowed-single.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@gen9_exec_parse@allowed-single.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk5/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [ABORT][300] ([i915#9820]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html - shard-snb: [ABORT][302] ([i915#9820]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [ABORT][304] ([i915#9820]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][306] ([i915#10131] / [i915#9820]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: [SKIP][308] ([i915#12306]) -> [PASS][309] +40 other tests pass [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: ([PASS][310], [FAIL][311]) ([i915#2346]) -> [PASS][312] +1 other test pass [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dirtyfb@default-dirtyfb-ioctl: - shard-dg1: [DMESG-WARN][313] ([i915#4423]) -> [PASS][314] +1 other test pass [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-19/igt@kms_dirtyfb@default-dirtyfb-ioctl.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-12/igt@kms_dirtyfb@default-dirtyfb-ioctl.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-glk: ([PASS][315], [FAIL][316]) ([i915#2122]) -> [PASS][317] +5 other tests pass [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk8/igt@kms_flip@2x-plain-flip-fb-recreate.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk4/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: ([FAIL][318], [FAIL][319]) ([i915#2122]) -> [PASS][320] +3 other tests pass [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@dpms-off-confusion-interruptible: - shard-dg2: [SKIP][321] ([i915#5354]) -> [PASS][322] +20 other tests pass [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_flip@dpms-off-confusion-interruptible.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_flip@dpms-off-confusion-interruptible.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset: - shard-tglu: [SKIP][323] ([i915#3637]) -> [PASS][324] +5 other tests pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_flip@flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@plain-flip-ts-check@b-vga1: - shard-snb: [FAIL][325] ([i915#2122]) -> [PASS][326] +2 other tests pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-snb6/igt@kms_flip@plain-flip-ts-check@b-vga1.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-snb7/igt@kms_flip@plain-flip-ts-check@b-vga1.html * igt@kms_flip@plain-flip-ts-check@c-edp1: - shard-mtlp: [FAIL][327] ([i915#2122]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check@c-edp1.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-mtlp-8/igt@kms_flip@plain-flip-ts-check@c-edp1.html * igt@kms_flip@plain-flip-ts-check@c-hdmi-a4: - shard-dg1: [FAIL][329] ([i915#2122]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-14/igt@kms_flip@plain-flip-ts-check@c-hdmi-a4.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-19/igt@kms_flip@plain-flip-ts-check@c-hdmi-a4.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-dg2: [FAIL][331] ([i915#6880]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_hdr@static-toggle: - shard-dg2: [SKIP][333] ([i915#3555] / [i915#8228]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_hdr@static-toggle.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_hdr@static-toggle.html * igt@kms_invalid_mode@bad-hsync-end: - shard-dg2: [SKIP][335] ([i915#3555]) -> [PASS][336] +5 other tests pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_invalid_mode@bad-hsync-end.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_invalid_mode@bad-hsync-end.html - shard-tglu: [SKIP][337] ([i915#3555]) -> [PASS][338] +2 other tests pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_invalid_mode@bad-hsync-end.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_invalid_mode@bad-hsync-end.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg2: [SKIP][339] ([i915#8825]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right-suspend.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-dg2: [SKIP][341] ([i915#7294]) -> [PASS][342] +1 other test pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-basic.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant: - shard-tglu: [SKIP][343] ([i915#7294]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-dg2: [SKIP][345] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][346] +3 other tests pass [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d: - shard-dg2: [SKIP][347] ([i915#12247] / [i915#8152]) -> [PASS][348] +6 other tests pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-dg2: [SKIP][349] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - shard-tglu: [SKIP][351] ([i915#12247] / [i915#3558] / [i915#8152]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b: - shard-tglu: [SKIP][353] ([i915#12247]) -> [PASS][354] +2 other tests pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d: - shard-tglu: [SKIP][355] ([i915#12247] / [i915#8152]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-dg2: [SKIP][357] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-dg2: [SKIP][359] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a: - shard-dg2: [SKIP][361] ([i915#12247]) -> [PASS][362] +20 other tests pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][363] ([i915#9295]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][365] ([i915#9340]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@cursor-dpms: - shard-tglu: [SKIP][367] ([i915#1849]) -> [PASS][368] +9 other tests pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_pm_rpm@cursor-dpms.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_pm_rpm@cursor-dpms.html - shard-dg2: [SKIP][369] ([i915#1849]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][371] ([i915#9519]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][373] ([i915#9519]) -> [PASS][374] +1 other test pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_vblank@ts-continuation-modeset: - shard-dg2: [SKIP][375] ([i915#9197]) -> [PASS][376] +47 other tests pass [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_vblank@ts-continuation-modeset.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-11/igt@kms_vblank@ts-continuation-modeset.html #### Warnings #### * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: ([FAIL][377], [FAIL][378]) ([i915#2842]) -> [FAIL][379] ([i915#2876]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: [SKIP][380] ([i915#7091]) -> [SKIP][381] ([i915#9197]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_selftest@mock: - shard-dg1: [DMESG-WARN][382] ([i915#1982] / [i915#9311]) -> [DMESG-WARN][383] ([i915#9311]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-19/igt@i915_selftest@mock.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-17/igt@i915_selftest@mock.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: [SKIP][384] ([i915#6228]) -> [SKIP][385] ([i915#9197]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_async_flips@invalid-async-flip.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: [SKIP][386] ([i915#9197]) -> [SKIP][387] ([i915#9531]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2: [SKIP][388] -> [SKIP][389] ([i915#9197]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg1: [SKIP][390] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][391] ([i915#4538] / [i915#5286]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg1-19/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg1-12/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [SKIP][392] ([i915#5286]) -> [SKIP][393] ([i915#12306]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [SKIP][394] ([i915#12306]) -> [SKIP][395] ([i915#5286]) +2 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2: [SKIP][396] ([i915#9197]) -> [SKIP][397] +2 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: [SKIP][398] ([i915#5190] / [i915#9197]) -> [SKIP][399] ([i915#4538] / [i915#5190]) +8 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: [SKIP][400] ([i915#5190]) -> [SKIP][401] ([i915#5190] / [i915#9197]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2: [SKIP][402] ([i915#5190] / [i915#9197]) -> [SKIP][403] ([i915#5190]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-10/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: [SKIP][404] ([i915#4538] / [i915#5190]) -> [SKIP][405] ([i915#5190] / [i915#9197]) +4 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: [SKIP][406] ([i915#12313]) -> [SKIP][407] ([i915#9197]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs: - shard-dg2: [SKIP][408] ([i915#9197]) -> [SKIP][409] ([i915#10307] / [i915#6095]) +8 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-11/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: [SKIP][410] ([i915#9197]) -> [SKIP][411] ([i915#12313]) +2 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-dg2: [SKIP][412] ([i915#10307] / [i915#6095]) -> [SKIP][413] ([i915#9197]) +6 other tests skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-1/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-tglu: [SKIP][414] ([i915#6095]) -> [SKIP][415] ([i915#12306]) +4 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu: [SKIP][416] ([i915#12313]) -> [SKIP][417] ([i915#12306]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-tglu: [SKIP][418] ([i915#12306]) -> [SKIP][419] ([i915#6095]) +12 other tests skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-tglu: [SKIP][420] ([i915#12306]) -> [SKIP][421] ([i915#12313]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: [SKIP][422] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) -> [SKIP][423] ([i915#12306]) +1 other test skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_content_protection@atomic-dpms.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-tglu: [SKIP][424] ([i915#12306]) -> [SKIP][425] ([i915#6944] / [i915#9424]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_content_protection@content-type-change.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: [SKIP][426] ([i915#3299]) -> [SKIP][427] ([i915#9197]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg2: [SKIP][428] ([i915#9197]) -> [SKIP][429] ([i915#9424]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_content_protection@lic-type-1.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-7/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][430] ([i915#9197]) -> [SKIP][431] ([i915#7118] / [i915#9424]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_content_protection@type1.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-3/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu: [SKIP][432] ([i915#11453]) -> [SKIP][433] ([i915#12306]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: [SKIP][434] ([i915#11453] / [i915#3359]) -> [SKIP][435] ([i915#11453]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: [SKIP][436] ([i915#9197]) -> [SKIP][437] ([i915#11453]) +1 other test skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2: [SKIP][438] ([i915#11453]) -> [SKIP][439] ([i915#9197]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglu: [SKIP][440] ([i915#12306]) -> [SKIP][441] ([i915#3555]) +3 other tests skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-32x10.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: [SKIP][442] ([i915#12306]) -> [SKIP][443] ([i915#11453]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15453/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-512x512.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_139078v3/index.html [-- Attachment #2: Type: text/html, Size: 108518 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-09-30 18:18 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-09-25 6:56 [PATCH] drm/i915/hdcp: Retry first read and writes to downstream Suraj Kandpal 2024-09-25 8:55 ` Jani Nikula 2024-09-25 11:35 ` Kandpal, Suraj 2024-09-26 7:14 ` Suraj Kandpal 2024-09-27 4:52 ` Nautiyal, Ankit K 2024-09-27 6:04 ` Suraj Kandpal 2024-09-27 21:49 ` ✓ Fi.CI.BAT: success for drm/i915/hdcp: Retry first read and writes to downstream (rev3) Patchwork 2024-09-28 20:34 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-09-30 18:18 ` ✓ Fi.CI.IGT: success " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.