* [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms
@ 2024-12-09 8:57 Tejas Upadhyay
2024-12-09 10:39 ` Hajda, Andrzej
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Tejas Upadhyay @ 2024-12-09 8:57 UTC (permalink / raw)
To: igt-dev, intel-xe; +Cc: Tejas Upadhyay, Matt Roper, Jan Maslak
There are hardware platforms which are not supporting
hwconfig table, for example ADLS. Querying hwconfig
on unsupported platforms leads to assert and failure
for some of tests like,
./build/tests/xe_module_load --r load
https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3683
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Jan Maslak <jan.maslak@intel.com>
Fixes: 37a230e50 ("lib/xe_query: add hwconfig to xe_device")
Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com>
---
lib/xe/xe_query.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
index f3731d9d3..8f0a5392c 100644
--- a/lib/xe/xe_query.c
+++ b/lib/xe/xe_query.c
@@ -51,7 +51,8 @@ static uint32_t *xe_query_hwconfig_new(int fd, uint32_t *hwconfig_size)
/* Perform the initial query to get the size */
igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0);
- igt_assert_neq(query.size, 0);
+ if (!query.size)
+ return NULL;
hwconfig = malloc(query.size);
igt_assert(hwconfig);
@@ -858,7 +859,8 @@ uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32
igt_assert(xe_dev);
hwconfig = xe_dev->hwconfig;
- igt_assert(hwconfig);
+ if (!hwconfig)
+ return NULL;
/* Extract the value from the hwconfig */
pos = 0;
--
2.34.1
^ permalink raw reply related [flat|nested] 13+ messages in thread* Re: [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms 2024-12-09 8:57 [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms Tejas Upadhyay @ 2024-12-09 10:39 ` Hajda, Andrzej 2024-12-09 16:04 ` Matt Roper ` (5 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Hajda, Andrzej @ 2024-12-09 10:39 UTC (permalink / raw) To: Tejas Upadhyay, igt-dev, intel-xe; +Cc: Matt Roper, Jan Maslak W dniu 09.12.2024 o 09:57, Tejas Upadhyay pisze: > There are hardware platforms which are not supporting > hwconfig table, for example ADLS. Querying hwconfig > on unsupported platforms leads to assert and failure > for some of tests like, > ./build/tests/xe_module_load --r load > > https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3683 > > Cc: Matt Roper <matthew.d.roper@intel.com> > Cc: Jan Maslak <jan.maslak@intel.com> > Fixes: 37a230e50 ("lib/xe_query: add hwconfig to xe_device") > Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com> Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> Regards Andrzej > --- > lib/xe/xe_query.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > index f3731d9d3..8f0a5392c 100644 > --- a/lib/xe/xe_query.c > +++ b/lib/xe/xe_query.c > @@ -51,7 +51,8 @@ static uint32_t *xe_query_hwconfig_new(int fd, uint32_t *hwconfig_size) > > /* Perform the initial query to get the size */ > igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); > - igt_assert_neq(query.size, 0); > + if (!query.size) > + return NULL; > > hwconfig = malloc(query.size); > igt_assert(hwconfig); > @@ -858,7 +859,8 @@ uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32 > igt_assert(xe_dev); > > hwconfig = xe_dev->hwconfig; > - igt_assert(hwconfig); > + if (!hwconfig) > + return NULL; > > /* Extract the value from the hwconfig */ > pos = 0; ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms 2024-12-09 8:57 [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms Tejas Upadhyay 2024-12-09 10:39 ` Hajda, Andrzej @ 2024-12-09 16:04 ` Matt Roper 2024-12-09 19:20 ` John Harrison ` (4 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Matt Roper @ 2024-12-09 16:04 UTC (permalink / raw) To: Tejas Upadhyay; +Cc: igt-dev, intel-xe, Jan Maslak On Mon, Dec 09, 2024 at 02:27:09PM +0530, Tejas Upadhyay wrote: > There are hardware platforms which are not supporting > hwconfig table, for example ADLS. Querying hwconfig > on unsupported platforms leads to assert and failure > for some of tests like, > ./build/tests/xe_module_load --r load > > https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3683 This should be provided as a git trailer: Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3683 Then gitlab will automatically update that ticket once this patch lands. Matt > > Cc: Matt Roper <matthew.d.roper@intel.com> > Cc: Jan Maslak <jan.maslak@intel.com> > Fixes: 37a230e50 ("lib/xe_query: add hwconfig to xe_device") > Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com> > --- > lib/xe/xe_query.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > index f3731d9d3..8f0a5392c 100644 > --- a/lib/xe/xe_query.c > +++ b/lib/xe/xe_query.c > @@ -51,7 +51,8 @@ static uint32_t *xe_query_hwconfig_new(int fd, uint32_t *hwconfig_size) > > /* Perform the initial query to get the size */ > igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); > - igt_assert_neq(query.size, 0); > + if (!query.size) > + return NULL; > > hwconfig = malloc(query.size); > igt_assert(hwconfig); > @@ -858,7 +859,8 @@ uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32 > igt_assert(xe_dev); > > hwconfig = xe_dev->hwconfig; > - igt_assert(hwconfig); > + if (!hwconfig) > + return NULL; > > /* Extract the value from the hwconfig */ > pos = 0; > -- > 2.34.1 > -- Matt Roper Graphics Software Engineer Linux GPU Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms 2024-12-09 8:57 [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms Tejas Upadhyay 2024-12-09 10:39 ` Hajda, Andrzej 2024-12-09 16:04 ` Matt Roper @ 2024-12-09 19:20 ` John Harrison 2024-12-09 20:38 ` Matt Roper 2024-12-09 20:02 ` ✗ GitLab.Pipeline: warning for " Patchwork ` (3 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: John Harrison @ 2024-12-09 19:20 UTC (permalink / raw) To: Tejas Upadhyay, igt-dev, intel-xe; +Cc: Matt Roper, Jan Maslak On 12/9/2024 00:57, Tejas Upadhyay wrote: > There are hardware platforms which are not supporting > hwconfig table, for example ADLS. Querying hwconfig > on unsupported platforms leads to assert and failure > for some of tests like, > ./build/tests/xe_module_load --r load The module reload test should not be querying the hwconfig table?! But the hwconfig test itself should be failing on platforms which do not have a table. That is intentional. There is no platform which is POR for the Xe driver which does not support hwconfig tables. So the test is supposed to fail if it ever does not get a valid table. John. > > https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3683 > > Cc: Matt Roper <matthew.d.roper@intel.com> > Cc: Jan Maslak <jan.maslak@intel.com> > Fixes: 37a230e50 ("lib/xe_query: add hwconfig to xe_device") > Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com> > --- > lib/xe/xe_query.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > index f3731d9d3..8f0a5392c 100644 > --- a/lib/xe/xe_query.c > +++ b/lib/xe/xe_query.c > @@ -51,7 +51,8 @@ static uint32_t *xe_query_hwconfig_new(int fd, uint32_t *hwconfig_size) > > /* Perform the initial query to get the size */ > igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); > - igt_assert_neq(query.size, 0); > + if (!query.size) > + return NULL; > > hwconfig = malloc(query.size); > igt_assert(hwconfig); > @@ -858,7 +859,8 @@ uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32 > igt_assert(xe_dev); > > hwconfig = xe_dev->hwconfig; > - igt_assert(hwconfig); > + if (!hwconfig) > + return NULL; > > /* Extract the value from the hwconfig */ > pos = 0; ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms 2024-12-09 19:20 ` John Harrison @ 2024-12-09 20:38 ` Matt Roper 2024-12-10 8:39 ` Upadhyay, Tejas 2024-12-11 9:13 ` Upadhyay, Tejas 0 siblings, 2 replies; 13+ messages in thread From: Matt Roper @ 2024-12-09 20:38 UTC (permalink / raw) To: John Harrison; +Cc: Tejas Upadhyay, igt-dev, intel-xe, Jan Maslak On Mon, Dec 09, 2024 at 11:20:07AM -0800, John Harrison wrote: > On 12/9/2024 00:57, Tejas Upadhyay wrote: > > There are hardware platforms which are not supporting > > hwconfig table, for example ADLS. Querying hwconfig > > on unsupported platforms leads to assert and failure > > for some of tests like, > > ./build/tests/xe_module_load --r load > The module reload test should not be querying the hwconfig table?! See the Fixes: line; that patch made it so that anything calling xe_device_get() will fetch and cache the hwconfig (and assert if it's missing). xe_module load calls __drm_open_driver -> __drm_open_driver_another -> xe_device_get so it does indeed fetch the hwconfig table now and hit the assertion added by that patch. I don't know if always grabbing and caching the hwconfig was actually a good idea or not. As we've seen here, the hwconfig may legitimately be NULL, so as we remove the assertion here, we still need to do NULL-checks at the point the hwconfig gets used to truly be safe. > > But the hwconfig test itself should be failing on platforms which do not > have a table. That is intentional. There is no platform which is POR for the > Xe driver which does not support hwconfig tables. So the test is supposed to > fail if it ever does not get a valid table. The Xe driver is only officially supported on the Xe2 platforms and beyond, but it can still load and run on some pre-Xe2 platforms that people were using as development platforms; some of those don't support hwconfig. And even though our CI setup is only trying to test a subset of those platforms that do contain hwconfig, note that our DG2 setups also have an ADL-S igpu that also gets probed during module load, and that's what leads to the CI failures that were reported here. Maybe XeKMD is mature enough now (and we have enough real platforms for testing now) that we could prune the list of platforms that Xe is willing to load on with unofficial support. E.g., drop the unofficial support for TGL, RKL, and ADL-S since those platforms don't have hwconfig and I don't think any of our developers are still using them as development vehicles at this point. That's probably a separate discussion from the patch at hand though. Matt > > John. > > > > > https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3683 > > > > Cc: Matt Roper <matthew.d.roper@intel.com> > > Cc: Jan Maslak <jan.maslak@intel.com> > > Fixes: 37a230e50 ("lib/xe_query: add hwconfig to xe_device") > > Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com> > > --- > > lib/xe/xe_query.c | 6 ++++-- > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > > index f3731d9d3..8f0a5392c 100644 > > --- a/lib/xe/xe_query.c > > +++ b/lib/xe/xe_query.c > > @@ -51,7 +51,8 @@ static uint32_t *xe_query_hwconfig_new(int fd, uint32_t *hwconfig_size) > > /* Perform the initial query to get the size */ > > igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); > > - igt_assert_neq(query.size, 0); > > + if (!query.size) > > + return NULL; > > hwconfig = malloc(query.size); > > igt_assert(hwconfig); > > @@ -858,7 +859,8 @@ uint32_t *xe_hwconfig_lookup_value(int fd, enum intel_hwconfig attribute, uint32 > > igt_assert(xe_dev); > > hwconfig = xe_dev->hwconfig; > > - igt_assert(hwconfig); > > + if (!hwconfig) > > + return NULL; > > /* Extract the value from the hwconfig */ > > pos = 0; > -- Matt Roper Graphics Software Engineer Linux GPU Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms 2024-12-09 20:38 ` Matt Roper @ 2024-12-10 8:39 ` Upadhyay, Tejas 2024-12-11 9:13 ` Upadhyay, Tejas 1 sibling, 0 replies; 13+ messages in thread From: Upadhyay, Tejas @ 2024-12-10 8:39 UTC (permalink / raw) To: Roper, Matthew D, Harrison, John C Cc: igt-dev@lists.freedesktop.org, intel-xe@lists.freedesktop.org, Maslak, Jan > -----Original Message----- > From: Roper, Matthew D <matthew.d.roper@intel.com> > Sent: Tuesday, December 10, 2024 2:08 AM > To: Harrison, John C <john.c.harrison@intel.com> > Cc: Upadhyay, Tejas <tejas.upadhyay@intel.com>; igt- > dev@lists.freedesktop.org; intel-xe@lists.freedesktop.org; Maslak, Jan > <jan.maslak@intel.com> > Subject: Re: [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms > > On Mon, Dec 09, 2024 at 11:20:07AM -0800, John Harrison wrote: > > On 12/9/2024 00:57, Tejas Upadhyay wrote: > > > There are hardware platforms which are not supporting hwconfig > > > table, for example ADLS. Querying hwconfig on unsupported platforms > > > leads to assert and failure for some of tests like, > > > ./build/tests/xe_module_load --r load > > The module reload test should not be querying the hwconfig table?! > > See the Fixes: line; that patch made it so that anything calling > xe_device_get() will fetch and cache the hwconfig (and assert if it's > missing). xe_module load calls __drm_open_driver -> > __drm_open_driver_another -> xe_device_get so it does indeed fetch the > hwconfig table now and hit the assertion added by that patch. > > I don't know if always grabbing and caching the hwconfig was actually a > good idea or not. As we've seen here, the hwconfig may legitimately be > NULL, so as we remove the assertion here, we still need to do > NULL-checks at the point the hwconfig gets used to truly be safe. > > > > > But the hwconfig test itself should be failing on platforms which do not > > have a table. That is intentional. There is no platform which is POR for the > > Xe driver which does not support hwconfig tables. So the test is supposed > to > > fail if it ever does not get a valid table. > > The Xe driver is only officially supported on the Xe2 platforms and > beyond, but it can still load and run on some pre-Xe2 platforms that > people were using as development platforms; some of those don't support > hwconfig. And even though our CI setup is only trying to test a subset > of those platforms that do contain hwconfig, note that our DG2 setups > also have an ADL-S igpu that also gets probed during module load, and > that's what leads to the CI failures that were reported here. > > > Maybe XeKMD is mature enough now (and we have enough real platforms for > testing now) that we could prune the list of platforms that Xe is > willing to load on with unofficial support. E.g., drop the unofficial > support for TGL, RKL, and ADL-S since those platforms don't have > hwconfig and I don't think any of our developers are still using them as > development vehicles at this point. That's probably a separate > discussion from the patch at hand though. > We can go with this patch or skip hwconfig considerations for unsupported platforms like KMD is doing, but in the end it will also need same kind of changes. Or if we plan to remove pre-xe2 platforms completely from CI then no change needed. Tejas > > Matt > > > > > John. > > > > > > > > https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3683 > > > > > > Cc: Matt Roper <matthew.d.roper@intel.com> > > > Cc: Jan Maslak <jan.maslak@intel.com> > > > Fixes: 37a230e50 ("lib/xe_query: add hwconfig to xe_device") > > > Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com> > > > --- > > > lib/xe/xe_query.c | 6 ++++-- > > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > > > index f3731d9d3..8f0a5392c 100644 > > > --- a/lib/xe/xe_query.c > > > +++ b/lib/xe/xe_query.c > > > @@ -51,7 +51,8 @@ static uint32_t *xe_query_hwconfig_new(int fd, > uint32_t *hwconfig_size) > > > /* Perform the initial query to get the size */ > > > igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), > 0); > > > - igt_assert_neq(query.size, 0); > > > + if (!query.size) > > > + return NULL; > > > hwconfig = malloc(query.size); > > > igt_assert(hwconfig); > > > @@ -858,7 +859,8 @@ uint32_t *xe_hwconfig_lookup_value(int fd, enum > intel_hwconfig attribute, uint32 > > > igt_assert(xe_dev); > > > hwconfig = xe_dev->hwconfig; > > > - igt_assert(hwconfig); > > > + if (!hwconfig) > > > + return NULL; > > > /* Extract the value from the hwconfig */ > > > pos = 0; > > > > -- > Matt Roper > Graphics Software Engineer > Linux GPU Platform Enablement > Intel Corporation ^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms 2024-12-09 20:38 ` Matt Roper 2024-12-10 8:39 ` Upadhyay, Tejas @ 2024-12-11 9:13 ` Upadhyay, Tejas 2024-12-12 18:54 ` Kamil Konieczny 1 sibling, 1 reply; 13+ messages in thread From: Upadhyay, Tejas @ 2024-12-11 9:13 UTC (permalink / raw) To: Roper, Matthew D, Harrison, John C Cc: igt-dev@lists.freedesktop.org, intel-xe@lists.freedesktop.org, Maslak, Jan Going ahead with merge of this patch. Tejas > -----Original Message----- > From: Roper, Matthew D <matthew.d.roper@intel.com> > Sent: Tuesday, December 10, 2024 2:08 AM > To: Harrison, John C <john.c.harrison@intel.com> > Cc: Upadhyay, Tejas <tejas.upadhyay@intel.com>; igt- > dev@lists.freedesktop.org; intel-xe@lists.freedesktop.org; Maslak, Jan > <jan.maslak@intel.com> > Subject: Re: [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms > > On Mon, Dec 09, 2024 at 11:20:07AM -0800, John Harrison wrote: > > On 12/9/2024 00:57, Tejas Upadhyay wrote: > > > There are hardware platforms which are not supporting hwconfig > > > table, for example ADLS. Querying hwconfig on unsupported platforms > > > leads to assert and failure for some of tests like, > > > ./build/tests/xe_module_load --r load > > The module reload test should not be querying the hwconfig table?! > > See the Fixes: line; that patch made it so that anything calling > xe_device_get() will fetch and cache the hwconfig (and assert if it's > missing). xe_module load calls __drm_open_driver -> > __drm_open_driver_another -> xe_device_get so it does indeed fetch the > hwconfig table now and hit the assertion added by that patch. > > I don't know if always grabbing and caching the hwconfig was actually a > good idea or not. As we've seen here, the hwconfig may legitimately be > NULL, so as we remove the assertion here, we still need to do > NULL-checks at the point the hwconfig gets used to truly be safe. > > > > > But the hwconfig test itself should be failing on platforms which do not > > have a table. That is intentional. There is no platform which is POR for the > > Xe driver which does not support hwconfig tables. So the test is supposed to > > fail if it ever does not get a valid table. > > The Xe driver is only officially supported on the Xe2 platforms and > beyond, but it can still load and run on some pre-Xe2 platforms that > people were using as development platforms; some of those don't support > hwconfig. And even though our CI setup is only trying to test a subset > of those platforms that do contain hwconfig, note that our DG2 setups > also have an ADL-S igpu that also gets probed during module load, and > that's what leads to the CI failures that were reported here. > > > Maybe XeKMD is mature enough now (and we have enough real platforms for > testing now) that we could prune the list of platforms that Xe is > willing to load on with unofficial support. E.g., drop the unofficial > support for TGL, RKL, and ADL-S since those platforms don't have > hwconfig and I don't think any of our developers are still using them as > development vehicles at this point. That's probably a separate > discussion from the patch at hand though. > > > Matt > > > > > John. > > > > > > > > https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3683 > > > > > > Cc: Matt Roper <matthew.d.roper@intel.com> > > > Cc: Jan Maslak <jan.maslak@intel.com> > > > Fixes: 37a230e50 ("lib/xe_query: add hwconfig to xe_device") > > > Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com> > > > --- > > > lib/xe/xe_query.c | 6 ++++-- > > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > > > index f3731d9d3..8f0a5392c 100644 > > > --- a/lib/xe/xe_query.c > > > +++ b/lib/xe/xe_query.c > > > @@ -51,7 +51,8 @@ static uint32_t *xe_query_hwconfig_new(int fd, > uint32_t *hwconfig_size) > > > /* Perform the initial query to get the size */ > > > igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), > 0); > > > - igt_assert_neq(query.size, 0); > > > + if (!query.size) > > > + return NULL; > > > hwconfig = malloc(query.size); > > > igt_assert(hwconfig); > > > @@ -858,7 +859,8 @@ uint32_t *xe_hwconfig_lookup_value(int fd, > enum intel_hwconfig attribute, uint32 > > > igt_assert(xe_dev); > > > hwconfig = xe_dev->hwconfig; > > > - igt_assert(hwconfig); > > > + if (!hwconfig) > > > + return NULL; > > > /* Extract the value from the hwconfig */ > > > pos = 0; > > > > -- > Matt Roper > Graphics Software Engineer > Linux GPU Platform Enablement > Intel Corporation ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms 2024-12-11 9:13 ` Upadhyay, Tejas @ 2024-12-12 18:54 ` Kamil Konieczny 0 siblings, 0 replies; 13+ messages in thread From: Kamil Konieczny @ 2024-12-12 18:54 UTC (permalink / raw) To: Upadhyay, Tejas Cc: Roper, Matthew D, Harrison, John C, igt-dev@lists.freedesktop.org, intel-xe@lists.freedesktop.org, Maslak, Jan Hi Upadhyay,, On 2024-12-11 at 09:13:50 +0000, Upadhyay, Tejas wrote: > Going ahead with merge of this patch. > > Tejas > Merged, Regards, Kamil > > -----Original Message----- > > From: Roper, Matthew D <matthew.d.roper@intel.com> > > Sent: Tuesday, December 10, 2024 2:08 AM > > To: Harrison, John C <john.c.harrison@intel.com> > > Cc: Upadhyay, Tejas <tejas.upadhyay@intel.com>; igt- > > dev@lists.freedesktop.org; intel-xe@lists.freedesktop.org; Maslak, Jan > > <jan.maslak@intel.com> > > Subject: Re: [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms > > > > On Mon, Dec 09, 2024 at 11:20:07AM -0800, John Harrison wrote: > > > On 12/9/2024 00:57, Tejas Upadhyay wrote: > > > > There are hardware platforms which are not supporting hwconfig > > > > table, for example ADLS. Querying hwconfig on unsupported platforms > > > > leads to assert and failure for some of tests like, > > > > ./build/tests/xe_module_load --r load > > > The module reload test should not be querying the hwconfig table?! > > > > See the Fixes: line; that patch made it so that anything calling > > xe_device_get() will fetch and cache the hwconfig (and assert if it's > > missing). xe_module load calls __drm_open_driver -> > > __drm_open_driver_another -> xe_device_get so it does indeed fetch the > > hwconfig table now and hit the assertion added by that patch. > > > > I don't know if always grabbing and caching the hwconfig was actually a > > good idea or not. As we've seen here, the hwconfig may legitimately be > > NULL, so as we remove the assertion here, we still need to do > > NULL-checks at the point the hwconfig gets used to truly be safe. > > > > > > > > But the hwconfig test itself should be failing on platforms which do not > > > have a table. That is intentional. There is no platform which is POR for the > > > Xe driver which does not support hwconfig tables. So the test is supposed to > > > fail if it ever does not get a valid table. > > > > The Xe driver is only officially supported on the Xe2 platforms and > > beyond, but it can still load and run on some pre-Xe2 platforms that > > people were using as development platforms; some of those don't support > > hwconfig. And even though our CI setup is only trying to test a subset > > of those platforms that do contain hwconfig, note that our DG2 setups > > also have an ADL-S igpu that also gets probed during module load, and > > that's what leads to the CI failures that were reported here. > > > > > > Maybe XeKMD is mature enough now (and we have enough real platforms for > > testing now) that we could prune the list of platforms that Xe is > > willing to load on with unofficial support. E.g., drop the unofficial > > support for TGL, RKL, and ADL-S since those platforms don't have > > hwconfig and I don't think any of our developers are still using them as > > development vehicles at this point. That's probably a separate > > discussion from the patch at hand though. > > > > > > Matt > > > > > > > > John. > > > > > > > > > > > https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3683 > > > > > > > > Cc: Matt Roper <matthew.d.roper@intel.com> > > > > Cc: Jan Maslak <jan.maslak@intel.com> > > > > Fixes: 37a230e50 ("lib/xe_query: add hwconfig to xe_device") > > > > Signed-off-by: Tejas Upadhyay <tejas.upadhyay@intel.com> > > > > --- > > > > lib/xe/xe_query.c | 6 ++++-- > > > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > > > > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > > > > index f3731d9d3..8f0a5392c 100644 > > > > --- a/lib/xe/xe_query.c > > > > +++ b/lib/xe/xe_query.c > > > > @@ -51,7 +51,8 @@ static uint32_t *xe_query_hwconfig_new(int fd, > > uint32_t *hwconfig_size) > > > > /* Perform the initial query to get the size */ > > > > igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), > > 0); > > > > - igt_assert_neq(query.size, 0); > > > > + if (!query.size) > > > > + return NULL; > > > > hwconfig = malloc(query.size); > > > > igt_assert(hwconfig); > > > > @@ -858,7 +859,8 @@ uint32_t *xe_hwconfig_lookup_value(int fd, > > enum intel_hwconfig attribute, uint32 > > > > igt_assert(xe_dev); > > > > hwconfig = xe_dev->hwconfig; > > > > - igt_assert(hwconfig); > > > > + if (!hwconfig) > > > > + return NULL; > > > > /* Extract the value from the hwconfig */ > > > > pos = 0; > > > > > > > -- > > Matt Roper > > Graphics Software Engineer > > Linux GPU Platform Enablement > > Intel Corporation ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ GitLab.Pipeline: warning for lib/xe: set hwconfig NULL for unsupported platforms 2024-12-09 8:57 [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms Tejas Upadhyay ` (2 preceding siblings ...) 2024-12-09 19:20 ` John Harrison @ 2024-12-09 20:02 ` Patchwork 2024-12-09 20:20 ` ✓ Xe.CI.BAT: success " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-12-09 20:02 UTC (permalink / raw) To: Tejas Upadhyay; +Cc: igt-dev == Series Details == Series: lib/xe: set hwconfig NULL for unsupported platforms URL : https://patchwork.freedesktop.org/series/142282/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1326607 for the overview. build:tests-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/67948905): section_start:1733774324:get_sources Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out fd7d578c as detached HEAD (ref is intel/IGTPW_12275)... Skipping Git submodules setup section_end:1733774334:get_sources section_start:1733774334:step_script Executing "step_script" stage of the job script Using docker image sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-fd7d578cc3da58dbbc498edbe79601d9d23a6b9c with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora@sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ... section_end:1733774336:step_script section_start:1733774336:cleanup_file_variables Cleaning up project directory and file based variables section_end:1733774337:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f: image not known (docker.go:650:0s) build:tests-fedora-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/67948909): section_start:1733774324:get_sources Getting source from Git repository $ /host/bin/curl -s -L --cacert /host/ca-certificates.crt --retry 4 -f --retry-delay 60 https://gitlab.freedesktop.org/freedesktop/helm-gitlab-infra/-/raw/main/runner-gating/runner-gating.sh | sh -s -- pre_get_sources_script Checking if the user of the pipeline is allowed... Checking if the job's project is part of a well-known group... Thank you for contributing to freedesktop.org Fetching changes... Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/ Checking out fd7d578c as detached HEAD (ref is intel/IGTPW_12275)... Skipping Git submodules setup section_end:1733774334:get_sources section_start:1733774334:step_script Executing "step_script" stage of the job script Using docker image sha256:4b3054d89ef79f9be95501786fbbbe22857d02c867fff99693808cd80909939f for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora:commit-fd7d578cc3da58dbbc498edbe79601d9d23a6b9c with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-fedora@sha256:17d64607d998df2bf29a56b88922d3a598e6f1daa3b51ece2a892c2f293daf83 ... section_end:1733774335:step_script section_start:1733774335:cleanup_file_variables Cleaning up project directory and file based variables section_end:1733774337:cleanup_file_variables ERROR: Job failed (system failure): Error response from daemon: reading information about layer "b0de37c4473752ef090ec76b030cb962d9df499f6c04c4e6ea0eda484f278267": layer not known (docker.go:661:0s) == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1326607 ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for lib/xe: set hwconfig NULL for unsupported platforms 2024-12-09 8:57 [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms Tejas Upadhyay ` (3 preceding siblings ...) 2024-12-09 20:02 ` ✗ GitLab.Pipeline: warning for " Patchwork @ 2024-12-09 20:20 ` Patchwork 2024-12-09 20:36 ` ✗ i915.CI.BAT: failure " Patchwork 2024-12-09 21:26 ` ✗ Xe.CI.Full: " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-12-09 20:20 UTC (permalink / raw) To: Tejas Upadhyay; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 870 bytes --] == Series Details == Series: lib/xe: set hwconfig NULL for unsupported platforms URL : https://patchwork.freedesktop.org/series/142282/ State : success == Summary == CI Bug Log - changes from XEIGT_8145_BAT -> XEIGTPW_12275_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8145 -> IGTPW_12275 IGTPW_12275: 12275 IGT_8145: 9ecc5cadf47dc934af126a6b34653b860974b9f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2340-9d12021e081c72b18c31bda175fb9a43f1d005fc: 9d12021e081c72b18c31bda175fb9a43f1d005fc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/index.html [-- Attachment #2: Type: text/html, Size: 1415 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.BAT: failure for lib/xe: set hwconfig NULL for unsupported platforms 2024-12-09 8:57 [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms Tejas Upadhyay ` (4 preceding siblings ...) 2024-12-09 20:20 ` ✓ Xe.CI.BAT: success " Patchwork @ 2024-12-09 20:36 ` Patchwork 2024-12-09 21:26 ` ✗ Xe.CI.Full: " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-12-09 20:36 UTC (permalink / raw) To: Tejas Upadhyay; +Cc: igt-dev == Series Details == Series: lib/xe: set hwconfig NULL for unsupported platforms URL : https://patchwork.freedesktop.org/series/142282/ State : failure == Summary == CI Bug Log - changes from IGT_8145 -> IGTPW_12275 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12275 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12275, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12275: ### IGT changes ### #### Possible regressions #### * igt@kms_force_connector_basic@force-connector-state: - fi-cfl-8109u: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/fi-cfl-8109u/igt@kms_force_connector_basic@force-connector-state.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/fi-cfl-8109u/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-apl-1: [PASS][3] -> [DMESG-WARN][4] +2 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-edp-1: - {bat-mtlp-9}: [FAIL][5] -> [DMESG-WARN][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-mtlp-9/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-edp-1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/bat-mtlp-9/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-b-edp-1.html * igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-edp-1: - {bat-mtlp-9}: [DMESG-WARN][7] ([i915#12695]) -> [FAIL][8] +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-edp-1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-edp-1.html * igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-edp-1: - {bat-mtlp-9}: [PASS][9] -> [FAIL][10] +4 other tests fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-edp-1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-edp-1.html Known issues ------------ Here are the changes found in IGTPW_12275 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-dg2-11: [PASS][11] -> [FAIL][12] ([i915#12903]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-dg2-11/igt@i915_pm_rpm@module-reload.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/bat-dg2-11/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - bat-arls-5: NOTRUN -> [ABORT][13] ([i915#12061]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/bat-arls-5/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [PASS][14] -> [ABORT][15] ([i915#12061]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-arls-5/igt@i915_selftest@live@workarounds.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/bat-arls-5/igt@i915_selftest@live@workarounds.html * igt@kms_flip@basic-flip-vs-dpms@a-dp2: - fi-cfl-8109u: [PASS][16] -> [DMESG-WARN][17] ([i915#12914]) +1 other test dmesg-warn [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-dpms@a-dp2.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-dpms@a-dp2.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - bat-apl-1: [PASS][18] -> [DMESG-WARN][19] ([i915#12921]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-apl-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/bat-apl-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-apl-1: [PASS][20] -> [DMESG-WARN][21] ([i915#12918]) +1 other test dmesg-warn [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@fbdev@read: - {bat-mtlp-9}: [DMESG-WARN][22] ([i915#12695]) -> [PASS][23] +5 other tests pass [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-mtlp-9/igt@fbdev@read.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/bat-mtlp-9/igt@fbdev@read.html * igt@i915_module_load@load: - bat-twl-1: [DMESG-WARN][24] ([i915#1982]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-twl-1/igt@i915_module_load@load.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/bat-twl-1/igt@i915_module_load@load.html * igt@kms_flip@basic-flip-vs-dpms@d-edp1: - {bat-mtlp-9}: [DMESG-WARN][26] -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@d-edp1.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@d-edp1.html * igt@kms_flip@basic-flip-vs-modeset: - fi-kbl-7567u: [DMESG-WARN][28] ([i915#12926]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-modeset.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_flip@basic-flip-vs-modeset@a-dp1: - fi-kbl-7567u: [DMESG-WARN][30] -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-modeset@a-dp1.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-edp-1: - {bat-mtlp-9}: [FAIL][32] -> [PASS][33] +1 other test pass [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8145/bat-mtlp-9/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-edp-1.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/bat-mtlp-9/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12695]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12695 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12914 [i915#12918]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12918 [i915#12921]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12921 [i915#12926]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12926 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8145 -> IGTPW_12275 CI-20190529: 20190529 CI_DRM_15808: 9d12021e081c72b18c31bda175fb9a43f1d005fc @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12275: 12275 IGT_8145: 9ecc5cadf47dc934af126a6b34653b860974b9f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12275/index.html ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.Full: failure for lib/xe: set hwconfig NULL for unsupported platforms 2024-12-09 8:57 [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms Tejas Upadhyay ` (5 preceding siblings ...) 2024-12-09 20:36 ` ✗ i915.CI.BAT: failure " Patchwork @ 2024-12-09 21:26 ` Patchwork 2024-12-11 9:19 ` Upadhyay, Tejas 6 siblings, 1 reply; 13+ messages in thread From: Patchwork @ 2024-12-09 21:26 UTC (permalink / raw) To: Tejas Upadhyay; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 127795 bytes --] == Series Details == Series: lib/xe: set hwconfig NULL for unsupported platforms URL : https://patchwork.freedesktop.org/series/142282/ State : failure == Summary == CI Bug Log - changes from XEIGT_8145_full -> XEIGTPW_12275_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12275_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12275_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 (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12275_full: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][1] +21 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_atomic@crtc-invalid-params-fence@pipe-a-dp-2: - shard-bmg: [PASS][2] -> [DMESG-WARN][3] +9 other tests dmesg-warn [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-dp-2.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-dp-2.html * igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate: - shard-dg2-set2: NOTRUN -> [ABORT][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate.html * igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault: - shard-bmg: NOTRUN -> [DMESG-WARN][5] +3 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][6] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-5-4-rc-ccs}: - shard-dg2-set2: NOTRUN -> [SKIP][7] +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-5-4-rc-ccs.html New tests --------- New tests have been introduced between XEIGT_8145_full and XEIGTPW_12275_full: ### New IGT tests (48) ### * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.13] s * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.13] s * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.13] s * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-5-4-mc-ccs: - Statuses : 1 skip(s) - Exec time: [0.14] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-5-4-rc-ccs-cc: - Statuses : 1 skip(s) - Exec time: [0.10] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-6-4: - Statuses : 1 pass(s) - Exec time: [2.08] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-6-4-mc-ccs: - Statuses : 1 skip(s) - Exec time: [0.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-6-4-rc-ccs: - Statuses : 1 skip(s) - Exec time: [0.08] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc: - Statuses : 1 skip(s) - Exec time: [0.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-6-linear: - Statuses : 1 pass(s) - Exec time: [2.10] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-6-x: - Statuses : 1 pass(s) - Exec time: [2.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-5-4-mc-ccs: - Statuses : 1 skip(s) - Exec time: [0.17] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-5-4-rc-ccs-cc: - Statuses : 1 skip(s) - Exec time: [0.11] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4: - Statuses : 1 pass(s) - Exec time: [2.06] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs: - Statuses : 1 skip(s) - Exec time: [0.14] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-rc-ccs: - Statuses : 1 skip(s) - Exec time: [0.08] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-rc-ccs-cc: - Statuses : 1 skip(s) - Exec time: [0.08] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-linear: - Statuses : 1 pass(s) - Exec time: [2.08] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-x: - Statuses : 1 pass(s) - Exec time: [2.10] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-dp-5-4-mc-ccs: - Statuses : 1 skip(s) - Exec time: [0.19] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-dp-5-4-rc-ccs-cc: - Statuses : 1 skip(s) - Exec time: [0.15] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-6-4: - Statuses : 1 pass(s) - Exec time: [2.06] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-6-4-mc-ccs: - Statuses : 1 skip(s) - Exec time: [0.20] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-6-4-rc-ccs: - Statuses : 1 skip(s) - Exec time: [0.07] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-6-4-rc-ccs-cc: - Statuses : 1 skip(s) - Exec time: [0.07] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-6-linear: - Statuses : 1 pass(s) - Exec time: [2.07] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-6-x: - Statuses : 1 pass(s) - Exec time: [2.07] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-dp-5-4: - Statuses : 1 pass(s) - Exec time: [2.06] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-dp-5-4-mc-ccs: - Statuses : 1 skip(s) - Exec time: [0.20] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-dp-5-4-rc-ccs: - Statuses : 1 skip(s) - Exec time: [0.07] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-dp-5-4-rc-ccs-cc: - Statuses : 1 skip(s) - Exec time: [0.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-dp-5-linear: - Statuses : 1 pass(s) - Exec time: [2.06] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-dp-5-x: - Statuses : 1 pass(s) - Exec time: [2.10] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-6-4: - Statuses : 1 pass(s) - Exec time: [2.06] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-6-4-mc-ccs: - Statuses : 1 skip(s) - Exec time: [0.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-6-4-rc-ccs: - Statuses : 1 skip(s) - Exec time: [0.07] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-6-4-rc-ccs-cc: - Statuses : 1 skip(s) - Exec time: [0.08] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-6-linear: - Statuses : 1 pass(s) - Exec time: [2.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-6-x: - Statuses : 1 pass(s) - Exec time: [2.08] s * igt@kms_async_flips@test-cursor-atomic@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.11] s * igt@kms_async_flips@test-cursor-atomic@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.11] s * igt@kms_async_flips@test-cursor-atomic@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.16] s * igt@kms_async_flips@test-cursor-atomic@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.16] s * igt@kms_async_flips@test-time-stamp-atomic@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.15] s * igt@kms_async_flips@test-time-stamp-atomic@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.15] s * igt@kms_async_flips@test-time-stamp-atomic@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.15] s * igt@kms_async_flips@test-time-stamp-atomic@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.16] s Known issues ------------ Here are the changes found in XEIGTPW_12275_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotunbind-rebind: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][8] ([Intel XE#3467] / [Intel XE#3468]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@core_hotunplug@hotunbind-rebind.html * igt@intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1125]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#623]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1466]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2233]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#2550]) +23 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: NOTRUN -> [FAIL][14] ([Intel XE#1426]) +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#316]) +16 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3658]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2327]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +10 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#607]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#610]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +43 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +16 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#619]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb.html - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1467]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb.html - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2328]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#607]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1477]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2191]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#2314] / [Intel XE#2894]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#2191]) +6 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#367]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#367]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#367]) +11 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1512]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#455] / [Intel XE#787]) +99 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-dp-5.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#2907]) +5 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#3432]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3432]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#3442]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#2887]) +16 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2887]) +7 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#787]) +349 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html * igt@kms_cdclk@mode-transition@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#314]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1152]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#306]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#306]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_chamelium_color@degamma.html - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2325]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-cmp-planes-random: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#373]) +34 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2252]) +6 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#373]) +9 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color@ctm-0-50: - shard-bmg: [PASS][55] -> [DMESG-WARN][56] ([Intel XE#2705] / [Intel XE#3468]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_color@ctm-0-50.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_color@ctm-0-50.html * igt@kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][57] ([Intel XE#1178]) +3 other tests fail [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic@pipe-a-dp-5: - shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#3407]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_content_protection@atomic@pipe-a-dp-5.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#307]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: NOTRUN -> [FAIL][60] ([Intel XE#1178]) +3 other tests fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_content_protection@lic-type-0.html - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#3278]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][62] ([Intel XE#3304]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][63] ([Intel XE#1188]) +1 other test fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2320]) +8 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-64x64: - shard-bmg: NOTRUN -> [DMESG-FAIL][65] ([Intel XE#3468]) +4 other tests dmesg-fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-64x64.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#308]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1424]) +10 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#2321]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][69] ([Intel XE#3468]) +1 other test incomplete [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2291]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#323]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#323]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2286]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#309]) +5 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2291]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-move: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][77] ([Intel XE#3184]) +1 other test dmesg-warn [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_cursor_legacy@torture-move.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#1508]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#1340]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([i915#3804]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_dsc@dsc-fractional-bpp: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#2244]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#776]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#702]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@kms_feature_discovery@display-2x.html - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2373]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#703]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1137]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2374]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_feature_discovery@psr1.html - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#1135]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1421]) +11 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-bmg: [PASS][91] -> [SKIP][92] ([Intel XE#2316]) +6 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][93] ([Intel XE#3321]) +3 other tests fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp5.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp5: - shard-dg2-set2: NOTRUN -> [FAIL][94] ([Intel XE#3149]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp5.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][95] ([Intel XE#2882]) +2 other tests fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][96] ([Intel XE#301]) +7 other tests fail [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][97] ([Intel XE#3321]) +4 other tests fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2316]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-expired-vblank@c-dp2: - shard-bmg: [PASS][99] -> [DMESG-WARN][100] ([Intel XE#3468]) +57 other tests dmesg-warn [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html * igt@kms_flip@flip-vs-suspend-interruptible@b-dp5: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][101] ([Intel XE#3468]) +1 other test dmesg-fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@b-dp5.html * igt@kms_flip@nonblocking-read: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][102] ([Intel XE#1727]) +19 other tests dmesg-warn [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_flip@nonblocking-read.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1401]) +9 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2293]) +6 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode: - shard-bmg: [PASS][106] -> [DMESG-WARN][107] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1401] / [Intel XE#1745]) +9 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([i915#5274]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#352]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2311]) +18 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#651]) +117 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#651]) +17 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [FAIL][114] ([Intel XE#2333]) +11 other tests fail [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][115] ([Intel XE#1727]) +2 other tests incomplete [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#656]) +54 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#653]) +117 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#658]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1158]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2312]) +13 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2313]) +28 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-lnl: NOTRUN -> [ABORT][122] ([Intel XE#3673]) +12 other tests abort [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#605]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_getfb@getfb2-accept-ccs: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2340]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#346]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2927]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_joiner@basic-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2927]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#3012]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2925]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_plane@pixel-format-source-clamping: - shard-bmg: NOTRUN -> [DMESG-WARN][130] ([Intel XE#2566] / [Intel XE#3468]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [PASS][131] -> [INCOMPLETE][132] ([Intel XE#1035] / [Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-bmg: [PASS][133] -> [DMESG-FAIL][134] ([Intel XE#3468]) +4 other tests dmesg-fail [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][135] ([Intel XE#1035] / [Intel XE#3468]) +1 other test incomplete [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [INCOMPLETE][136] ([Intel XE#1727]) +1 other test incomplete [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant@pipe-a-hdmi-a-3.html * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128: - shard-bmg: NOTRUN -> [DMESG-FAIL][137] ([Intel XE#2705] / [Intel XE#3468]) +2 other tests dmesg-fail [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128.html * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64: - shard-bmg: NOTRUN -> [DMESG-WARN][138] ([Intel XE#3468]) +29 other tests dmesg-warn [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: NOTRUN -> [FAIL][139] ([Intel XE#616]) +1 other test fail [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#599]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][141] -> [SKIP][142] ([Intel XE#2571]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#3307]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][144] ([Intel XE#361]) +1 other test fail [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2763] / [Intel XE#455]) +13 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#2763]) +20 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#2763]) +19 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2763]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#870]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#736]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1129]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html - shard-lnl: [PASS][152] -> [FAIL][153] ([Intel XE#718]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#3309]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#908]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_pm_dc@dc6-dpms.html - shard-lnl: NOTRUN -> [FAIL][156] ([Intel XE#1430]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: NOTRUN -> [FAIL][157] ([Intel XE#2029]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2-set2: NOTRUN -> [FAIL][158] ([Intel XE#3527]) +1 other test fail [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: NOTRUN -> [ABORT][159] ([Intel XE#3468]) +3 other tests abort [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@cursor: - shard-bmg: [PASS][160] -> [INCOMPLETE][161] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests incomplete [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_pm_rpm@cursor.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_pm_rpm@cursor.html - shard-dg2-set2: NOTRUN -> [INCOMPLETE][162] ([Intel XE#1727] / [Intel XE#3468]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#1439] / [Intel XE#836]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][164] ([Intel XE#3468]) +16 other tests dmesg-warn [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#1489]) +33 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#2893]) +6 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#1489]) +9 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#1122]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@pr-sprite-render: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#1406]) +7 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_psr@pr-sprite-render.html * igt@kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_psr@psr-basic.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#2850] / [Intel XE#929]) +63 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_psr@psr-dpms.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#2939]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#3414]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#3414]) +6 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#1127]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#1127]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2330]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#3414]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2413]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#1435]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#2426]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: NOTRUN -> [FAIL][182] ([Intel XE#1729]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#362]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#1500]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: NOTRUN -> [FAIL][185] ([Intel XE#899]) +3 other tests fail [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][186] ([Intel XE#1727] / [Intel XE#3468]) +10 other tests dmesg-warn [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-6.html * igt@kms_vblank@ts-continuation-suspend: - shard-bmg: [PASS][187] -> [DMESG-WARN][188] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-warn [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_vblank@ts-continuation-suspend.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#455]) +77 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_vrr@flipline.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#1499]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#756]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#756]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#756]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_writeback@writeback-invalid-parameters.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][194] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#1091] / [Intel XE#2849]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][196] ([Intel XE#1727] / [Intel XE#3468]) +14 other tests dmesg-fail [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][198] ([Intel XE#1123]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#1126]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_create@create-big-vram: - shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#1062]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_create@create-big-vram.html * igt@xe_eudebug@vm-bind-clear: - shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#2905]) +9 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_eudebug@vm-bind-clear.html * igt@xe_eudebug_online@basic-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#2905]) +45 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_eudebug_online@basic-breakpoint.html - shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#2905]) +11 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_eudebug_online@basic-breakpoint.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][204] ([Intel XE#1473]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][205] ([Intel XE#1473] / [Intel XE#402]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#688]) +15 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@xe_evict@evict-cm-threads-small.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][207] ([Intel XE#1600]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][208] ([Intel XE#1473] / [Intel XE#2472]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race: - shard-bmg: [PASS][209] -> [DMESG-WARN][210] ([Intel XE#2705]) +1 other test dmesg-warn [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: NOTRUN -> [SKIP][211] ([Intel XE#2322]) +9 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#1392]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html * igt@xe_exec_basic@once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [DMESG-WARN][213] ([Intel XE#1727]) +4 other tests dmesg-warn [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_exec_basic@once-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm: - shard-bmg: [PASS][214] -> [DMESG-WARN][215] ([Intel XE#1727]) +3 other tests dmesg-warn [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#288]) +103 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][217] ([Intel XE#2360]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_compute0: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][218] ([Intel XE#1727] / [Intel XE#358]) +1 other test dmesg-warn [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_compute0.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][219] ([Intel XE#3343]) +2 other tests dmesg-warn [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: NOTRUN -> [DMESG-WARN][220] ([Intel XE#3467] / [Intel XE#3468]) +3 other tests dmesg-warn [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init: - shard-bmg: [PASS][221] -> [DMESG-WARN][222] ([Intel XE#3343] / [Intel XE#3468]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][223] ([Intel XE#3467]) +14 other tests dmesg-warn [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_gt_freq@freq_suspend: - shard-lnl: NOTRUN -> [SKIP][224] ([Intel XE#584]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_gt_freq@freq_suspend.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][225] ([Intel XE#255]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-dg2-set2: NOTRUN -> [TIMEOUT][226] ([Intel XE#2961] / [Intel XE#2998]) +1 other test timeout [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_dma_buf: - shard-lnl: [PASS][227] -> [SKIP][228] ([Intel XE#1192]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-6/igt@xe_live_ktest@xe_dma_buf.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][229] ([Intel XE#2229]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#2229]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][231] ([Intel XE#1999]) +2 other tests fail [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][232] ([Intel XE#560]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_media_fill@media-fill.html - shard-lnl: NOTRUN -> [SKIP][233] ([Intel XE#560]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_media_fill@media-fill.html - shard-bmg: NOTRUN -> [SKIP][234] ([Intel XE#2459] / [Intel XE#2596]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@xe_media_fill@media-fill.html * igt@xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][235] ([Intel XE#512]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_mmap@small-bar.html * igt@xe_module_load@force-load: - shard-dg2-set2: NOTRUN -> [SKIP][236] ([Intel XE#378]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_module_load@force-load.html - shard-lnl: NOTRUN -> [SKIP][237] ([Intel XE#378]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@xe_module_load@force-load.html - shard-bmg: NOTRUN -> [SKIP][238] ([Intel XE#2457]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_module_load@force-load.html * igt@xe_module_load@load: - shard-lnl: ([PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263]) -> ([PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [SKIP][289]) ([Intel XE#378]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-5/igt@xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-8/igt@xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-8/igt@xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-4/igt@xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-4/igt@xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-8/igt@xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-2/igt@xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-2/igt@xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-7/igt@xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-3/igt@xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-6/igt@xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-4/igt@xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-1/igt@xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-1/igt@xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-1/igt@xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-7/igt@xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-6/igt@xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-3/igt@xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-3/igt@xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-7/igt@xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-7/igt@xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-6/igt@xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-5/igt@xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-5/igt@xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-5/igt@xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@xe_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@xe_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@xe_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@xe_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@xe_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@xe_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@xe_module_load@load.html - shard-bmg: ([PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314]) -> ([PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [SKIP][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340]) ([Intel XE#2457]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@xe_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@xe_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_module_load@load.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_module_load@load.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_module_load@load.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@xe_module_load@load.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_module_load@load.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_module_load@load.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_module_load@load.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_module_load@load.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_module_load@load.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_module_load@load.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_module_load@load.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_module_load@load.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_module_load@load.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_module_load@load.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_module_load@load.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_module_load@load.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@xe_module_load@load.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@xe_module_load@load.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@xe_module_load@load.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@xe_module_load@load.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_module_load@load.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_module_load@load.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_module_load@load.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_module_load@load.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@xe_module_load@load.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_module_load@load.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_module_load@load.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@xe_module_load@load.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@xe_module_load@load.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@xe_module_load@load.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@xe_module_load@load.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_module_load@load.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_module_load@load.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_module_load@load.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@xe_module_load@load.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_module_load@load.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_module_load@load.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@xe_module_load@load.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_module_load@load.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_module_load@load.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_module_load@load.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@xe_module_load@load.html * igt@xe_module_load@reload-no-display: - shard-bmg: [PASS][341] -> [DMESG-WARN][342] ([Intel XE#3467]) +2 other tests dmesg-warn [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_module_load@reload-no-display.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_module_load@reload-no-display.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][343] ([Intel XE#2248]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_oa@syncs-ufence-wait: - shard-dg2-set2: NOTRUN -> [SKIP][344] ([Intel XE#3573]) +27 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_oa@syncs-ufence-wait.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][345] ([Intel XE#2248]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: NOTRUN -> [SKIP][346] ([Intel XE#1337]) [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][347] ([Intel XE#2838] / [Intel XE#979]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - shard-lnl: NOTRUN -> [SKIP][348] ([Intel XE#977]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@xe_pat@pat-index-xelp.html - shard-bmg: NOTRUN -> [SKIP][349] ([Intel XE#2245]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][350] ([Intel XE#979]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html - shard-lnl: NOTRUN -> [SKIP][351] ([Intel XE#979]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@write: - shard-dg2-set2: NOTRUN -> [FAIL][352] ([Intel XE#1173]) +1 other test fail [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][353] ([Intel XE#2284] / [Intel XE#366]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][354] ([Intel XE#2284] / [Intel XE#366]) +6 other tests skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][355] ([Intel XE#2284]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-basic: - shard-dg2-set2: NOTRUN -> [ABORT][356] ([Intel XE#1358]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_pm@s2idle-basic.html * igt@xe_pm@s2idle-basic-exec: - shard-bmg: NOTRUN -> [ABORT][357] ([Intel XE#1616]) +1 other test abort [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_pm@s2idle-basic-exec.html - shard-dg2-set2: NOTRUN -> [ABORT][358] ([Intel XE#1358] / [Intel XE#1727] / [Intel XE#3468]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_pm@s2idle-basic-exec.html - shard-lnl: NOTRUN -> [ABORT][359] ([Intel XE#1358] / [Intel XE#1616] / [Intel XE#3766]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s2idle-exec-after: - shard-lnl: NOTRUN -> [ABORT][360] ([Intel XE#1358] / [Intel XE#3673]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: NOTRUN -> [ABORT][361] ([Intel XE#1694]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_pm@s2idle-vm-bind-unbind-all.html - shard-lnl: NOTRUN -> [ABORT][362] ([Intel XE#1616] / [Intel XE#1694] / [Intel XE#3766]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: NOTRUN -> [ABORT][363] ([Intel XE#1694] / [Intel XE#3468]) +1 other test abort [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s3-exec-after: - shard-bmg: NOTRUN -> [DMESG-WARN][364] ([Intel XE#3468] / [Intel XE#569]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@xe_pm@s3-exec-after.html - shard-dg2-set2: NOTRUN -> [DMESG-WARN][365] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) +2 other tests dmesg-warn [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_pm@s3-exec-after.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-lnl: NOTRUN -> [ABORT][366] ([Intel XE#1358] / [Intel XE#1607]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html - shard-bmg: NOTRUN -> [DMESG-WARN][367] ([Intel XE#1727] / [Intel XE#3468]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_pm@s4-d3hot-basic-exec.html * igt@xe_pm@s4-vm-bind-userptr: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][368] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][369] ([Intel XE#579]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html - shard-lnl: NOTRUN -> [SKIP][370] ([Intel XE#579]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@xe_pm@vram-d3cold-threshold.html - shard-bmg: NOTRUN -> [SKIP][371] ([Intel XE#579]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pm_residency@gt-c6-freeze@gt1: - shard-bmg: [PASS][372] -> [DMESG-FAIL][373] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt1.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt1.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][374] ([Intel XE#944]) +12 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][375] ([Intel XE#944]) +4 other tests skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html - shard-bmg: NOTRUN -> [SKIP][376] ([Intel XE#944]) +2 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][377] ([Intel XE#3342]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html - shard-lnl: NOTRUN -> [SKIP][378] ([Intel XE#3342]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_wedged@basic-wedged: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][379] ([Intel XE#2919]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_wedged@basic-wedged.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: NOTRUN -> [ABORT][380] ([Intel XE#3421]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2: - shard-bmg: [FAIL][381] ([Intel XE#827]) -> [PASS][382] +1 other test pass [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html * igt@kms_async_flips@async-flip-with-page-flip-events: - shard-bmg: [DMESG-FAIL][383] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][384] +2 other tests pass [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_async_flips@async-flip-with-page-flip-events.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_async_flips@async-flip-with-page-flip-events.html * igt@kms_atomic_transition@plane-all-transition-fencing: - shard-bmg: [DMESG-WARN][385] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_atomic_transition@plane-all-transition-fencing.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@kms_atomic_transition@plane-all-transition-fencing.html * igt@kms_color@ctm-signed: - shard-bmg: [DMESG-WARN][387] ([Intel XE#877]) -> [PASS][388] +1 other test pass [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_color@ctm-signed.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_color@ctm-signed.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-bmg: [SKIP][389] ([Intel XE#2291]) -> [PASS][390] +3 other tests pass [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-bmg: [SKIP][391] ([Intel XE#2316]) -> [PASS][392] +1 other test pass [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2: - shard-bmg: [FAIL][393] ([Intel XE#2882]) -> [PASS][394] +2 other tests pass [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [FAIL][395] ([Intel XE#886]) -> [PASS][396] +3 other tests pass [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-bmg: [DMESG-WARN][397] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][398] +1 other test pass [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_hdr@static-toggle-suspend: - shard-bmg: [SKIP][399] ([Intel XE#1503]) -> [PASS][400] +1 other test pass [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-bmg: [DMESG-WARN][401] ([Intel XE#3468]) -> [PASS][402] +43 other tests pass [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_plane_alpha_blend@constant-alpha-max.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@xe_exec_balancer@once-cm-parallel-basic: - shard-bmg: [DMESG-WARN][403] -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_exec_balancer@once-cm-parallel-basic.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_exec_balancer@once-cm-parallel-basic.html * igt@xe_exec_basic@many-bindexecqueue-userptr-invalidate: - shard-bmg: [DMESG-WARN][405] ([Intel XE#1727]) -> [PASS][406] +2 other tests pass [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-userptr-invalidate.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_exec_basic@many-bindexecqueue-userptr-invalidate.html * igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-rebind: - shard-lnl: [FAIL][407] -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-1/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-rebind.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-rebind.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-bmg: [DMESG-WARN][409] ([Intel XE#3343]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: - shard-bmg: [DMESG-WARN][411] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][412] +1 other test pass [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html * igt@xe_live_ktest@xe_migrate: - shard-bmg: [SKIP][413] ([Intel XE#1192]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_live_ktest@xe_migrate.html * igt@xe_module_load@many-reload: - shard-bmg: [DMESG-WARN][415] ([Intel XE#3467]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_module_load@many-reload.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@xe_module_load@many-reload.html * igt@xe_pm@d3hot-mocs: - shard-bmg: [DMESG-WARN][417] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_pm@d3hot-mocs.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_pm@d3hot-mocs.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-bmg: [DMESG-WARN][419] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][420] [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_pm@s3-vm-bind-prefetch.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm@s4-mocs: - shard-bmg: [DMESG-WARN][421] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][422] [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_pm@s4-mocs.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_pm@s4-mocs.html #### Warnings #### * igt@kms_content_protection@uevent: - shard-bmg: [FAIL][423] ([Intel XE#1188]) -> [SKIP][424] ([Intel XE#2341]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_content_protection@uevent.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_content_protection@uevent.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [SKIP][425] ([Intel XE#2316]) -> [FAIL][426] ([Intel XE#2882]) +1 other test fail [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [DMESG-WARN][427] ([Intel XE#3468]) -> [SKIP][428] ([Intel XE#2316]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning-interruptible.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [ABORT][429] ([Intel XE#3468]) -> [SKIP][430] ([Intel XE#2316]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-expired-vblank: - shard-bmg: [FAIL][431] ([Intel XE#2882]) -> [DMESG-WARN][432] ([Intel XE#3468]) +1 other test dmesg-warn [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-bmg: [INCOMPLETE][433] ([Intel XE#1727]) -> [FAIL][434] ([Intel XE#2333]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][435] ([Intel XE#2312]) -> [FAIL][436] ([Intel XE#2333]) +3 other tests fail [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][437] ([Intel XE#3468]) -> [FAIL][438] ([Intel XE#2333]) +2 other tests fail [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [DMESG-FAIL][439] ([Intel XE#3468]) -> [SKIP][440] ([Intel XE#2312]) [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [FAIL][441] ([Intel XE#2333]) -> [SKIP][442] ([Intel XE#2312]) +2 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-bmg: [FAIL][443] ([Intel XE#2333]) -> [DMESG-FAIL][444] ([Intel XE#3468]) +5 other tests dmesg-fail [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][445] ([Intel XE#2312]) -> [SKIP][446] ([Intel XE#2311]) +11 other tests skip [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][447] ([Intel XE#2311]) -> [SKIP][448] ([Intel XE#2312]) +9 other tests skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][449] ([Intel XE#2313]) -> [SKIP][450] ([Intel XE#2312]) +9 other tests skip [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][451] ([Intel XE#2312]) -> [SKIP][452] ([Intel XE#2313]) +11 other tests skip [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_pm_dc@dc6-dpms: - shard-bmg: [DMESG-FAIL][453] ([Intel XE#3468]) -> [FAIL][454] ([Intel XE#1430]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_pm_dc@dc6-dpms.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_pm_dc@dc6-dpms.html * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01: - shard-bmg: [ABORT][455] ([Intel XE#3673]) -> [ABORT][456] ([Intel XE#3468] / [Intel XE#3673]) +1 other test abort [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [DMESG-FAIL][457] -> [FAIL][458] ([Intel XE#1000]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-bmg: [DMESG-FAIL][459] ([Intel XE#3468]) -> [FAIL][460] ([Intel XE#2364]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_evict@evict-large-multi-vm-cm.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][461] ([Intel XE#1473] / [Intel XE#2472]) -> [TIMEOUT][462] ([Intel XE#1473]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: - shard-bmg: [DMESG-WARN][463] ([Intel XE#3467]) -> [DMESG-WARN][464] ([Intel XE#3467] / [Intel XE#3468]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html * igt@xe_module_load@load: - shard-dg2-set2: ([FAIL][465], [FAIL][466], [FAIL][467], [FAIL][468], [FAIL][469], [FAIL][470], [FAIL][471], [FAIL][472], [FAIL][473], [FAIL][474], [FAIL][475], [FAIL][476], [FAIL][477], [FAIL][478], [FAIL][479], [FAIL][480], [FAIL][481], [FAIL][482], [FAIL][483], [FAIL][484], [FAIL][485], [FAIL][486], [FAIL][487], [FAIL][488], [FAIL][489]) -> ([PASS][490], [PASS][491], [PASS][492], [PASS][493], [PASS][494], [SKIP][495], [PASS][496], [PASS][497], [PASS][498], [PASS][499], [PASS][500], [PASS][501], [PASS][502], [PASS][503], [PASS][504], [PASS][505], [PASS][506], [PASS][507], [PASS][508], [PASS][509], [PASS][510], [PASS][511], [PASS][512], [PASS][513], [PASS][514], [PASS][515]) ([Intel XE#378]) [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-466/igt@xe_module_load@load.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-466/igt@xe_module_load@load.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-466/igt@xe_module_load@load.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-435/igt@xe_module_load@load.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-435/igt@xe_module_load@load.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-435/igt@xe_module_load@load.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-463/igt@xe_module_load@load.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-463/igt@xe_module_load@load.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-463/igt@xe_module_load@load.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-463/igt@xe_module_load@load.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-434/igt@xe_module_load@load.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-434/igt@xe_module_load@load.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-434/igt@xe_module_load@load.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-434/igt@xe_module_load@load.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-436/igt@xe_module_load@load.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-436/igt@xe_module_load@load.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-436/igt@xe_module_load@load.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-436/igt@xe_module_load@load.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-433/igt@xe_module_load@load.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-433/igt@xe_module_load@load.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-433/igt@xe_module_load@load.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-464/igt@xe_module_load@load.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-464/igt@xe_module_load@load.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-464/igt@xe_module_load@load.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-464/igt@xe_module_load@load.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@xe_module_load@load.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@xe_module_load@load.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@xe_module_load@load.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_module_load@load.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_module_load@load.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@xe_module_load@load.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_module_load@load.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_module_load@load.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_module_load@load.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_module_load@load.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_module_load@load.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_module_load@load.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_module_load@load.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_module_load@load.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_module_load@load.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_module_load@load.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_module_load@load.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_module_load@load.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_module_load@load.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_module_load@load.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_module_load@load.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_module_load@load.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_module_load@load.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_module_load@load.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_module_load@load.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_module_load@load.html * igt@xe_module_load@reload: - shard-bmg: [FAIL][516] ([Intel XE#3625]) -> [DMESG-WARN][517] ([Intel XE#3467]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_module_load@reload.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_module_load@reload.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-bmg: [ABORT][518] ([Intel XE#1616]) -> [ABORT][519] ([Intel XE#1616] / [Intel XE#3468]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_pm@s2idle-d3hot-basic-exec.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: [ABORT][520] ([Intel XE#1616] / [Intel XE#3468]) -> [ABORT][521] ([Intel XE#1616]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm_residency@gt-c6-freeze@gt0: - shard-bmg: [ABORT][522] ([Intel XE#3673]) -> [DMESG-FAIL][523] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-fail [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt0.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3407 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3527]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3527 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3766 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8145 -> IGTPW_12275 IGTPW_12275: 12275 IGT_8145: 9ecc5cadf47dc934af126a6b34653b860974b9f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2340-9d12021e081c72b18c31bda175fb9a43f1d005fc: 9d12021e081c72b18c31bda175fb9a43f1d005fc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/index.html [-- Attachment #2: Type: text/html, Size: 151172 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: ✗ Xe.CI.Full: failure for lib/xe: set hwconfig NULL for unsupported platforms 2024-12-09 21:26 ` ✗ Xe.CI.Full: " Patchwork @ 2024-12-11 9:19 ` Upadhyay, Tejas 0 siblings, 0 replies; 13+ messages in thread From: Upadhyay, Tejas @ 2024-12-11 9:19 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 128360 bytes --] Regression shown below aren’t related to patch. Tejas From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Tuesday, December 10, 2024 2:57 AM To: Upadhyay, Tejas <tejas.upadhyay@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Xe.CI.Full: failure for lib/xe: set hwconfig NULL for unsupported platforms Patch Details Series: lib/xe: set hwconfig NULL for unsupported platforms URL: https://patchwork.freedesktop.org/series/142282/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/index.html CI Bug Log - changes from XEIGT_8145_full -> XEIGTPW_12275_full Summary FAILURE Serious unknown changes coming with XEIGTPW_12275_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12275_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in XEIGTPW_12275_full: IGT changes Possible regressions * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs (NEW): * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs.html> +21 other tests skip * igt@kms_atomic@crtc-invalid-params-fence@pipe-a-dp-2: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-dp-2.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-dp-2.html> +9 other tests dmesg-warn * igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate: * shard-dg2-set2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate.html> * igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html> +3 other tests dmesg-warn * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html> Suppressed The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-5-4-rc-ccs}: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-5-4-rc-ccs.html> +2 other tests skip New tests New tests have been introduced between XEIGT_8145_full and XEIGTPW_12275_full: New IGT tests (48) * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [2.13] s * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [2.13] s * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [2.13] s * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [2.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-5-4-mc-ccs: * Statuses : 1 skip(s) * Exec time: [0.14] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-5-4-rc-ccs-cc: * Statuses : 1 skip(s) * Exec time: [0.10] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-6-4: * Statuses : 1 pass(s) * Exec time: [2.08] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-6-4-mc-ccs: * Statuses : 1 skip(s) * Exec time: [0.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-6-4-rc-ccs: * Statuses : 1 skip(s) * Exec time: [0.08] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-6-4-rc-ccs-cc: * Statuses : 1 skip(s) * Exec time: [0.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-6-linear: * Statuses : 1 pass(s) * Exec time: [2.10] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-6-x: * Statuses : 1 pass(s) * Exec time: [2.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-5-4-mc-ccs: * Statuses : 1 skip(s) * Exec time: [0.17] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-5-4-rc-ccs-cc: * Statuses : 1 skip(s) * Exec time: [0.11] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4: * Statuses : 1 pass(s) * Exec time: [2.06] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-mc-ccs: * Statuses : 1 skip(s) * Exec time: [0.14] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-rc-ccs: * Statuses : 1 skip(s) * Exec time: [0.08] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-4-rc-ccs-cc: * Statuses : 1 skip(s) * Exec time: [0.08] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-linear: * Statuses : 1 pass(s) * Exec time: [2.08] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-x: * Statuses : 1 pass(s) * Exec time: [2.10] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-dp-5-4-mc-ccs: * Statuses : 1 skip(s) * Exec time: [0.19] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-dp-5-4-rc-ccs-cc: * Statuses : 1 skip(s) * Exec time: [0.15] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-6-4: * Statuses : 1 pass(s) * Exec time: [2.06] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-6-4-mc-ccs: * Statuses : 1 skip(s) * Exec time: [0.20] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-6-4-rc-ccs: * Statuses : 1 skip(s) * Exec time: [0.07] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-6-4-rc-ccs-cc: * Statuses : 1 skip(s) * Exec time: [0.07] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-6-linear: * Statuses : 1 pass(s) * Exec time: [2.07] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-6-x: * Statuses : 1 pass(s) * Exec time: [2.07] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-dp-5-4: * Statuses : 1 pass(s) * Exec time: [2.06] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-dp-5-4-mc-ccs: * Statuses : 1 skip(s) * Exec time: [0.20] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-dp-5-4-rc-ccs: * Statuses : 1 skip(s) * Exec time: [0.07] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-dp-5-4-rc-ccs-cc: * Statuses : 1 skip(s) * Exec time: [0.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-dp-5-linear: * Statuses : 1 pass(s) * Exec time: [2.06] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-dp-5-x: * Statuses : 1 pass(s) * Exec time: [2.10] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-6-4: * Statuses : 1 pass(s) * Exec time: [2.06] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-6-4-mc-ccs: * Statuses : 1 skip(s) * Exec time: [0.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-6-4-rc-ccs: * Statuses : 1 skip(s) * Exec time: [0.07] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-6-4-rc-ccs-cc: * Statuses : 1 skip(s) * Exec time: [0.08] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-6-linear: * Statuses : 1 pass(s) * Exec time: [2.12] s * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-6-x: * Statuses : 1 pass(s) * Exec time: [2.08] s * igt@kms_async_flips@test-cursor-atomic@pipe-a-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [0.11] s * igt@kms_async_flips@test-cursor-atomic@pipe-b-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [0.11] s * igt@kms_async_flips@test-cursor-atomic@pipe-c-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [0.16] s * igt@kms_async_flips@test-cursor-atomic@pipe-d-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [0.16] s * igt@kms_async_flips@test-time-stamp-atomic@pipe-a-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [0.15] s * igt@kms_async_flips@test-time-stamp-atomic@pipe-b-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [0.15] s * igt@kms_async_flips@test-time-stamp-atomic@pipe-c-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [0.15] s * igt@kms_async_flips@test-time-stamp-atomic@pipe-d-hdmi-a-6: * Statuses : 1 pass(s) * Exec time: [0.16] s Known issues Here are the changes found in XEIGTPW_12275_full that come from known issues: IGT changes Issues hit * igt@core_hotunplug@hotunbind-rebind: * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@core_hotunplug@hotunbind-rebind.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@intel_hwmon@hwmon-write: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@intel_hwmon@hwmon-write.html> (Intel XE#1125<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125>) * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#623<https://gitlab.freedesktop.org/drm/xe/kernel/issues/623>) * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#1466<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#2233<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233>) * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-6-4-mc-ccs.html> (Intel XE#2550<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550>) +23 other tests skip * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: * shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (Intel XE#1426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426>) +1 other test fail * igt@kms_big_fb@4-tiled-8bpp-rotate-90: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +16 other tests skip * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (Intel XE#1407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407>) +5 other tests skip * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (Intel XE#3658<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658>) * igt@kms_big_fb@linear-8bpp-rotate-90: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +3 other tests skip * igt@kms_big_fb@y-tiled-16bpp-rotate-0: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +10 other tests skip * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (Intel XE#607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>) +1 other test skip * igt@kms_big_fb@y-tiled-addfb-size-overflow: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>) * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +43 other tests skip * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +16 other tests skip * igt@kms_big_fb@yf-tiled-addfb: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#619<https://gitlab.freedesktop.org/drm/xe/kernel/issues/619>) +1 other test skip * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#1467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#2328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328>) * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> (Intel XE#607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>) * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> (Intel XE#1477<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477>) * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) +1 other test skip * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +6 other tests skip * igt@kms_bw@linear-tiling-2-displays-1920x1080p: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +1 other test skip * igt@kms_bw@linear-tiling-2-displays-3840x2160p: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +3 other tests skip * igt@kms_bw@linear-tiling-4-displays-2160x1440p: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +11 other tests skip * igt@kms_bw@linear-tiling-4-displays-2560x1440p: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html> (Intel XE#1512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512>) * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-dp-5: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-dp-5.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +99 other tests skip * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> (Intel XE#2907<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907>) +5 other tests skip * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +8 other tests skip * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +1 other test skip * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) +1 other test skip * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> (Intel XE#3442<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442>) * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +16 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +7 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +349 other tests skip * igt@kms_cdclk@mode-transition@pipe-c-dp-4: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html> (Intel XE#314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/314>) +4 other tests skip * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html> (Intel XE#1152<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152>) +3 other tests skip * igt@kms_chamelium_color@ctm-red-to-blue: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +4 other tests skip * igt@kms_chamelium_color@degamma: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_chamelium_color@degamma.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +2 other tests skip * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_chamelium_color@degamma.html> (Intel XE#2325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) +1 other test skip * igt@kms_chamelium_frames@hdmi-cmp-planes-random: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +34 other tests skip * igt@kms_chamelium_hpd@common-hpd-after-suspend: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +6 other tests skip * igt@kms_chamelium_hpd@vga-hpd-fast: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_chamelium_hpd@vga-hpd-fast.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +9 other tests skip * igt@kms_color@ctm-0-50: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_color@ctm-0-50.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_color@ctm-0-50.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_content_protection@atomic: * shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_content_protection@atomic.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +3 other tests fail * igt@kms_content_protection@atomic@pipe-a-dp-5: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_content_protection@atomic@pipe-a-dp-5.html> (Intel XE#3407<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3407>) * igt@kms_content_protection@dp-mst-lic-type-0: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) +2 other tests skip * igt@kms_content_protection@lic-type-0: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_content_protection@lic-type-0.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +3 other tests fail * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_content_protection@lic-type-0.html> (Intel XE#3278<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278>) +2 other tests skip * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html> (Intel XE#3304<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304>) * igt@kms_content_protection@uevent: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_content_protection@uevent.html> (Intel XE#1188<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>) +1 other test fail * igt@kms_cursor_crc@cursor-offscreen-128x42: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-128x42.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +8 other tests skip * igt@kms_cursor_crc@cursor-onscreen-64x64: * shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-64x64.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +4 other tests dmesg-fail * igt@kms_cursor_crc@cursor-rapid-movement-512x512: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> (Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) +1 other test skip * igt@kms_cursor_crc@cursor-rapid-movement-64x21: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html> (Intel XE#1424<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +10 other tests skip * igt@kms_cursor_crc@cursor-sliding-512x512: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6: * shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +1 other test skip * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) +4 other tests skip * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> (Intel XE#2286<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286>) * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +5 other tests skip * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +1 other test skip * igt@kms_cursor_legacy@torture-move: * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_cursor_legacy@torture-move.html> (Intel XE#3184<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184>) +1 other test dmesg-warn * igt@kms_dirtyfb@psr-dirtyfb-ioctl: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> (Intel XE#1508<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508>) +1 other test skip * igt@kms_dither@fb-8bpc-vs-panel-6bpc: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html> (Intel XE#1340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340>) * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html> (i915#3804<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) * igt@kms_dsc@dsc-fractional-bpp: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_dsc@dsc-fractional-bpp.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) * igt@kms_fbcon_fbt@psr: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_fbcon_fbt@psr.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>) +1 other test skip * igt@kms_feature_discovery@display-2x: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@kms_feature_discovery@display-2x.html> (Intel XE#702<https://gitlab.freedesktop.org/drm/xe/kernel/issues/702>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_feature_discovery@display-2x.html> (Intel XE#2373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>) * igt@kms_feature_discovery@display-3x: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_feature_discovery@display-3x.html> (Intel XE#703<https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>) * igt@kms_feature_discovery@dp-mst: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_feature_discovery@dp-mst.html> (Intel XE#1137<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137>) * igt@kms_feature_discovery@psr1: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_feature_discovery@psr1.html> (Intel XE#2374<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374>) * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_feature_discovery@psr1.html> (Intel XE#1135<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135>) +1 other test skip * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html> (Intel XE#1421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +11 other tests skip * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +6 other tests skip * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp5: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp5.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) +3 other tests fail * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp5: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp5.html> (Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149>) * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: * shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) +2 other tests fail * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +7 other tests fail * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3: * shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) +4 other tests fail * igt@kms_flip@2x-plain-flip-ts-check: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +2 other tests skip * igt@kms_flip@flip-vs-expired-vblank@c-dp2: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +57 other tests dmesg-warn * igt@kms_flip@flip-vs-suspend-interruptible@b-dp5: * shard-dg2-set2: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@b-dp5.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-fail * igt@kms_flip@nonblocking-read: * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_flip@nonblocking-read.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +19 other tests dmesg-warn * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +6 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401>) +9 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +6 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> (Intel XE#1401<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel XE#1745<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745>) +9 other tests skip * igt@kms_force_connector_basic@prune-stale-modes: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html> (i915#5274<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274>) * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_force_connector_basic@prune-stale-modes.html> (Intel XE#352<https://gitlab.freedesktop.org/drm/xe/kernel/issues/352>) * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +18 other tests skip * igt@kms_frontbuffer_tracking@drrs-suspend: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +117 other tests skip * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-suspend.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +17 other tests skip * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: * shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +11 other tests fail * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: * shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +2 other tests incomplete * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +54 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +117 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel XE#658<https://gitlab.freedesktop.org/drm/xe/kernel/issues/658>) * igt@kms_frontbuffer_tracking@plane-fbc-rte: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_frontbuffer_tracking@plane-fbc-rte.html> (Intel XE#1158<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158>) * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +13 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +28 other tests skip * igt@kms_frontbuffer_tracking@psr-suspend: * shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-suspend.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +12 other tests abort * igt@kms_getfb@getfb-reject-ccs: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_getfb@getfb-reject-ccs.html> (Intel XE#605<https://gitlab.freedesktop.org/drm/xe/kernel/issues/605>) * igt@kms_getfb@getfb2-accept-ccs: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_getfb@getfb2-accept-ccs.html> (Intel XE#2340<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340>) * igt@kms_joiner@basic-big-joiner: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_joiner@basic-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) * igt@kms_joiner@basic-ultra-joiner: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_joiner@basic-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>) * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_joiner@basic-ultra-joiner.html> (Intel XE#2927<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927>) * igt@kms_joiner@invalid-modeset-force-big-joiner: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html> (Intel XE#3012<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012>) * igt@kms_joiner@invalid-modeset-force-ultra-joiner: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (Intel XE#2925<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925>) * igt@kms_plane@pixel-format-source-clamping: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_plane@pixel-format-source-clamping.html> (Intel XE#2566<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_plane@plane-panning-bottom-right-suspend: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend.html> (Intel XE#1035<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +4 other tests dmesg-fail * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: * shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html> (Intel XE#1035<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant@pipe-a-hdmi-a-3: * shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant@pipe-a-hdmi-a-3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +1 other test incomplete * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128: * shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-fail * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +29 other tests dmesg-warn * igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-6-size-64.html> (Intel XE#616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/616>) +1 other test fail * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html> (Intel XE#599<https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) +3 other tests skip * igt@kms_plane_scaling@2x-scaler-multi-pipe: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> (Intel XE#2571<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571>) * igt@kms_plane_scaling@intel-max-src-size: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_plane_scaling@intel-max-src-size.html> (Intel XE#3307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307>) * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html> (Intel XE#361<https://gitlab.freedesktop.org/drm/xe/kernel/issues/361>) +1 other test fail * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +13 other tests skip * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +20 other tests skip * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +19 other tests skip * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +4 other tests skip * igt@kms_pm_backlight@bad-brightness: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) +2 other tests skip * igt@kms_pm_dc@dc3co-vpb-simulation: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html> (Intel XE#736<https://gitlab.freedesktop.org/drm/xe/kernel/issues/736>) * igt@kms_pm_dc@dc5-psr: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html> (Intel XE#1129<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129>) +1 other test skip * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) * igt@kms_pm_dc@dc5-retention-flops: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html> (Intel XE#3309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309>) * igt@kms_pm_dc@dc6-dpms: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#908<https://gitlab.freedesktop.org/drm/xe/kernel/issues/908>) +1 other test skip * shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>) * igt@kms_pm_dc@deep-pkgc: * shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html> (Intel XE#2029<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029>) * igt@kms_pm_lpsp@kms-lpsp: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_pm_lpsp@kms-lpsp.html> (Intel XE#3527<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3527>) +1 other test fail * igt@kms_pm_rpm@basic-pci-d3-state: * shard-dg2-set2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_pm_rpm@basic-pci-d3-state.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +3 other tests abort * igt@kms_pm_rpm@cursor: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_pm_rpm@cursor.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_pm_rpm@cursor.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +3 other tests incomplete * shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_pm_rpm@cursor.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>) * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +16 other tests dmesg-warn * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +33 other tests skip * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> (Intel XE#2893<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +6 other tests skip * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +9 other tests skip * igt@kms_psr2_su@page_flip-nv12: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html> (Intel XE#1122<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122>) +3 other tests skip * igt@kms_psr@pr-sprite-render: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_psr@pr-sprite-render.html> (Intel XE#1406<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) +7 other tests skip * igt@kms_psr@psr-basic: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_psr@psr-basic.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +14 other tests skip * igt@kms_psr@psr-dpms: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_psr@psr-dpms.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +63 other tests skip * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (Intel XE#2939<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939>) +1 other test skip * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +1 other test skip * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +6 other tests skip * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>) +1 other test skip * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#2330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330>) * igt@kms_rotation_crc@sprite-rotation-90: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_rotation_crc@sprite-rotation-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +1 other test skip * igt@kms_scaling_modes@scaling-mode-full-aspect: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html> (Intel XE#2413<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413>) +1 other test skip * igt@kms_setmode@invalid-clone-single-crtc-stealing: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) * igt@kms_tiled_display@basic-test-pattern: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#2426<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426>) * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html> (Intel XE#1729<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729>) * igt@kms_tiled_display@basic-test-pattern-with-chamelium: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#362<https://gitlab.freedesktop.org/drm/xe/kernel/issues/362>) * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (Intel XE#1500<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500>) * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: * shard-lnl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>) +3 other tests fail * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-6: * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-6.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +10 other tests dmesg-warn * igt@kms_vblank@ts-continuation-suspend: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_vblank@ts-continuation-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_vblank@ts-continuation-suspend.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +3 other tests dmesg-warn * igt@kms_vrr@flipline: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@kms_vrr@flipline.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +77 other tests skip * igt@kms_vrr@seamless-rr-switch-drrs: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-drrs.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) * igt@kms_writeback@writeback-fb-id-xrgb2101010: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +3 other tests skip * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) * igt@kms_writeback@writeback-invalid-parameters: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@kms_writeback@writeback-invalid-parameters.html> (Intel XE#756<https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) +1 other test skip * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) +1 other test skip * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01: * shard-dg2-set2: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +14 other tests dmesg-fail * igt@xe_compute_preempt@compute-preempt-many: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html> (Intel XE#1280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip * igt@xe_copy_basic@mem-copy-linear-0xfffe: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfffe.html> (Intel XE#1123<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123>) +2 other tests skip * igt@xe_copy_basic@mem-set-linear-0xfffe: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html> (Intel XE#1126<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126>) * igt@xe_create@create-big-vram: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_create@create-big-vram.html> (Intel XE#1062<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062>) * igt@xe_eudebug@vm-bind-clear: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_eudebug@vm-bind-clear.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +9 other tests skip * igt@xe_eudebug_online@basic-breakpoint: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_eudebug_online@basic-breakpoint.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +45 other tests skip * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_eudebug_online@basic-breakpoint.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +11 other tests skip * igt@xe_evict@evict-beng-mixed-many-threads-large: * shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) * igt@xe_evict@evict-beng-mixed-many-threads-small: * shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#402<https://gitlab.freedesktop.org/drm/xe/kernel/issues/402>) * igt@xe_evict@evict-cm-threads-small: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@xe_evict@evict-cm-threads-small.html> (Intel XE#688<https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +15 other tests skip * igt@xe_evict@evict-large-multi-vm-cm: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_evict@evict-large-multi-vm-cm.html> (Intel XE#1600<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600>) * igt@xe_evict@evict-mixed-threads-large: * shard-bmg: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@xe_evict@evict-mixed-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#2472<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472>) * igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705>) +1 other test dmesg-warn * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +9 other tests skip * igt@xe_exec_basic@multigpu-once-userptr-invalidate: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html> (Intel XE#1392<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +8 other tests skip * igt@xe_exec_basic@once-bindexecqueue-rebind: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_exec_basic@once-bindexecqueue-rebind.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +4 other tests dmesg-warn * igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +3 other tests dmesg-warn * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +103 other tests skip * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html> (Intel XE#2360<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360>) +3 other tests skip * igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_compute0: * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_compute0.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/358>) +1 other test dmesg-warn * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>) +2 other tests dmesg-warn * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +3 other tests dmesg-warn * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) +14 other tests dmesg-warn * igt@xe_gt_freq@freq_suspend: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_gt_freq@freq_suspend.html> (Intel XE#584<https://gitlab.freedesktop.org/drm/xe/kernel/issues/584>) +2 other tests skip * igt@xe_huc_copy@huc_copy: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_huc_copy@huc_copy.html> (Intel XE#255<https://gitlab.freedesktop.org/drm/xe/kernel/issues/255>) * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: * shard-dg2-set2: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> (Intel XE#2961<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961> / Intel XE#2998<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998>) +1 other test timeout * igt@xe_live_ktest@xe_dma_buf: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-6/igt@xe_live_ktest@xe_dma_buf.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@xe_live_ktest@xe_dma_buf.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>) * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>) * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html> (Intel XE#1999<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999>) +2 other tests fail * igt@xe_media_fill@media-fill: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_media_fill@media-fill.html> (Intel XE#560<https://gitlab.freedesktop.org/drm/xe/kernel/issues/560>) * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_media_fill@media-fill.html> (Intel XE#560<https://gitlab.freedesktop.org/drm/xe/kernel/issues/560>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@xe_media_fill@media-fill.html> (Intel XE#2459<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459> / Intel XE#2596<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596>) * igt@xe_mmap@small-bar: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_mmap@small-bar.html> (Intel XE#512<https://gitlab.freedesktop.org/drm/xe/kernel/issues/512>) * igt@xe_module_load@force-load: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_module_load@force-load.html> (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>) * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@xe_module_load@force-load.html> (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_module_load@force-load.html> (Intel XE#2457<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457>) * igt@xe_module_load@load: * shard-lnl: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-5/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@xe_module_load@load.html>) (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>) * shard-bmg: (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@xe_module_load@load.html>) (Intel XE#2457<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457>) * igt@xe_module_load@reload-no-display: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@xe_module_load@reload-no-display.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_module_load@reload-no-display.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) +2 other tests dmesg-warn * igt@xe_oa@oa-tlb-invalidate: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248>) * igt@xe_oa@syncs-ufence-wait: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_oa@syncs-ufence-wait.html> (Intel XE#3573<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573>) +27 other tests skip * igt@xe_oa@unprivileged-single-ctx-counters: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_oa@unprivileged-single-ctx-counters.html> (Intel XE#2248<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248>) +1 other test skip * igt@xe_pat@display-vs-wb-transient: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html> (Intel XE#1337<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337>) * igt@xe_pat@pat-index-xehpc: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html> (Intel XE#2838<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838> / Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>) * igt@xe_pat@pat-index-xelp: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@xe_pat@pat-index-xelp.html> (Intel XE#977<https://gitlab.freedesktop.org/drm/xe/kernel/issues/977>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@xe_pat@pat-index-xelp.html> (Intel XE#2245<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245>) * igt@xe_pat@pat-index-xelpg: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html> (Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>) * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-6/igt@xe_pat@pat-index-xelpg.html> (Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>) * igt@xe_peer2peer@write: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_peer2peer@write.html> (Intel XE#1173<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173>) +1 other test fail * igt@xe_pm@d3cold-mmap-system: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_pm@d3cold-mmap-system.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) * igt@xe_pm@d3cold-mmap-vram: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_pm@d3cold-mmap-vram.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / Intel XE#366<https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +6 other tests skip * igt@xe_pm@d3cold-mocs: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_pm@d3cold-mocs.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>) * igt@xe_pm@s2idle-basic: * shard-dg2-set2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_pm@s2idle-basic.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358>) * igt@xe_pm@s2idle-basic-exec: * shard-bmg: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) +1 other test abort * shard-dg2-set2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3766<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3766>) * igt@xe_pm@s2idle-exec-after: * shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-1/igt@xe_pm@s2idle-exec-after.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) * igt@xe_pm@s2idle-vm-bind-unbind-all: * shard-dg2-set2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_pm@s2idle-vm-bind-unbind-all.html> (Intel XE#1694<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694>) * shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-7/igt@xe_pm@s2idle-vm-bind-unbind-all.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#1694<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694> / Intel XE#3766<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3766>) * igt@xe_pm@s2idle-vm-bind-userptr: * shard-dg2-set2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_pm@s2idle-vm-bind-userptr.html> (Intel XE#1694<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test abort * igt@xe_pm@s3-exec-after: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@xe_pm@s3-exec-after.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_pm@s3-exec-after.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) +2 other tests dmesg-warn * igt@xe_pm@s4-d3hot-basic-exec: * shard-lnl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html> (Intel XE#1358<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358> / Intel XE#1607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607>) * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_pm@s4-d3hot-basic-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_pm@s4-vm-bind-userptr: * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_pm@s4-vm-bind-userptr.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_pm@vram-d3cold-threshold: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html> (Intel XE#579<https://gitlab.freedesktop.org/drm/xe/kernel/issues/579>) * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@xe_pm@vram-d3cold-threshold.html> (Intel XE#579<https://gitlab.freedesktop.org/drm/xe/kernel/issues/579>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_pm@vram-d3cold-threshold.html> (Intel XE#579<https://gitlab.freedesktop.org/drm/xe/kernel/issues/579>) * igt@xe_pm_residency@gt-c6-freeze@gt1: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt1.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt1.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-fail * igt@xe_query@multigpu-query-engines: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_query@multigpu-query-engines.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +12 other tests skip * igt@xe_query@multigpu-query-topology-l3-bank-mask: * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +4 other tests skip * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@xe_query@multigpu-query-topology-l3-bank-mask.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +2 other tests skip * igt@xe_sriov_flr@flr-vf1-clear: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>) * shard-lnl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_sriov_flr@flr-vf1-clear.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>) * igt@xe_wedged@basic-wedged: * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_wedged@basic-wedged.html> (Intel XE#2919<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919>) * igt@xe_wedged@wedged-at-any-timeout: * shard-dg2-set2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_wedged@wedged-at-any-timeout.html> (Intel XE#3421<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421>) Possible fixes * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html> (Intel XE#827<https://gitlab.freedesktop.org/drm/xe/kernel/issues/827>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html> +1 other test pass * igt@kms_async_flips@async-flip-with-page-flip-events: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_async_flips@async-flip-with-page-flip-events.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_async_flips@async-flip-with-page-flip-events.html> +2 other tests pass * igt@kms_atomic_transition@plane-all-transition-fencing: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_atomic_transition@plane-all-transition-fencing.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@kms_atomic_transition@plane-all-transition-fencing.html> * igt@kms_color@ctm-signed: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_color@ctm-signed.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_color@ctm-signed.html> +1 other test pass * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html> +3 other tests pass * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html> +1 other test pass * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html> +2 other tests pass * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html> +3 other tests pass * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html> +1 other test pass * igt@kms_hdr@static-toggle-suspend: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html> (Intel XE#1503<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html> +1 other test pass * igt@kms_plane_alpha_blend@constant-alpha-max: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@kms_plane_alpha_blend@constant-alpha-max.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@kms_plane_alpha_blend@constant-alpha-max.html> +43 other tests pass * igt@xe_exec_balancer@once-cm-parallel-basic: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_exec_balancer@once-cm-parallel-basic.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_exec_balancer@once-cm-parallel-basic.html> * igt@xe_exec_basic@many-bindexecqueue-userptr-invalidate: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-userptr-invalidate.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_exec_basic@many-bindexecqueue-userptr-invalidate.html> +2 other tests pass * igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-rebind: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-lnl-1/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-rebind.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-lnl-4/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-rebind.html> * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> +1 other test pass * igt@xe_live_ktest@xe_migrate: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_live_ktest@xe_migrate.html> * igt@xe_module_load@many-reload: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_module_load@many-reload.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@xe_module_load@many-reload.html> * igt@xe_pm@d3hot-mocs: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_pm@d3hot-mocs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_pm@d3hot-mocs.html> * igt@xe_pm@s3-vm-bind-prefetch: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_pm@s3-vm-bind-prefetch.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_pm@s3-vm-bind-prefetch.html> * igt@xe_pm@s4-mocs: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_pm@s4-mocs.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_pm@s4-mocs.html> Warnings * igt@kms_content_protection@uevent: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_content_protection@uevent.html> (Intel XE#1188<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@kms_content_protection@uevent.html> (Intel XE#2341<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341>) * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) +1 other test fail * igt@kms_flip@2x-flip-vs-panning-interruptible: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning-interruptible.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) * igt@kms_flip@2x-flip-vs-suspend-interruptible: * shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) * igt@kms_flip@flip-vs-expired-vblank: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: * shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +3 other tests fail * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +2 other tests fail * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +2 other tests skip * igt@kms_frontbuffer_tracking@fbc-tiling-linear: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +5 other tests dmesg-fail * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +11 other tests skip * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +9 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +9 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +11 other tests skip * igt@kms_pm_dc@dc6-dpms: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>) * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01: * shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) +1 other test abort * igt@xe_evict@evict-beng-mixed-threads-large: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_evict@evict-beng-mixed-threads-large.html> (Intel XE#1000<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000>) * igt@xe_evict@evict-large-multi-vm-cm: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_evict@evict-large-multi-vm-cm.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-8/igt@xe_evict@evict-large-multi-vm-cm.html> (Intel XE#2364<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364>) * igt@xe_evict@evict-mixed-many-threads-small: * shard-bmg: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#2472<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_module_load@load: * shard-dg2-set2: (FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-466/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-435/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-463/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-463/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-463/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-463/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-434/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-436/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-433/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-433/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-433/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-464/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-464/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-464/igt@xe_module_load@load.html>, FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-dg2-464/igt@xe_module_load@load.html>) -> (PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_module_load@load.html>, SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-436/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-463/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-434/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-466/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-433/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-464/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_module_load@load.html>, PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-dg2-435/igt@xe_module_load@load.html>) (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>) * igt@xe_module_load@reload: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-7/igt@xe_module_load@reload.html> (Intel XE#3625<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3625>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-1/igt@xe_module_load@reload.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) * igt@xe_pm@s2idle-d3hot-basic-exec: * shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-5/igt@xe_pm@s2idle-d3hot-basic-exec.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-4/igt@xe_pm@s2idle-d3hot-basic-exec.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_pm@s2idle-vm-bind-unbind-all: * shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-unbind-all.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616>) * igt@xe_pm_residency@gt-c6-freeze@gt0: * shard-bmg: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8145/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#3673<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12275/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt0.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-fail {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * IGT: IGT_8145 -> IGTPW_12275 IGTPW_12275: 12275 IGT_8145: 9ecc5cadf47dc934af126a6b34653b860974b9f1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2340-9d12021e081c72b18c31bda175fb9a43f1d005fc: 9d12021e081c72b18c31bda175fb9a43f1d005fc [-- Attachment #2: Type: text/html, Size: 245170 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-12-12 18:54 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-12-09 8:57 [i-g-t] lib/xe: set hwconfig NULL for unsupported platforms Tejas Upadhyay 2024-12-09 10:39 ` Hajda, Andrzej 2024-12-09 16:04 ` Matt Roper 2024-12-09 19:20 ` John Harrison 2024-12-09 20:38 ` Matt Roper 2024-12-10 8:39 ` Upadhyay, Tejas 2024-12-11 9:13 ` Upadhyay, Tejas 2024-12-12 18:54 ` Kamil Konieczny 2024-12-09 20:02 ` ✗ GitLab.Pipeline: warning for " Patchwork 2024-12-09 20:20 ` ✓ Xe.CI.BAT: success " Patchwork 2024-12-09 20:36 ` ✗ i915.CI.BAT: failure " Patchwork 2024-12-09 21:26 ` ✗ Xe.CI.Full: " Patchwork 2024-12-11 9:19 ` Upadhyay, Tejas
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox