* [PATCH v2 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test
@ 2024-10-02 11:29 Dominik Karol Piątkowski
2024-10-02 11:29 ` [PATCH v2 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers Dominik Karol Piątkowski
` (5 more replies)
0 siblings, 6 replies; 13+ messages in thread
From: Dominik Karol Piątkowski @ 2024-10-02 11:29 UTC (permalink / raw)
To: igt-dev
Cc: Zbigniew Kempczyński, Dominik Grzegorzek,
Christoph Manszewski, Pawel Sikora, Jonathan Cavitt,
Dominik Karol Piątkowski
xe_eudebug_online@interrupt-other test fails due to preemption
interfering with it.
In order to fix it, set the preempt_timeout_us for engine_class used in
this test to maximum for the duration of the test.
This series introduces the following engine_class helpers:
- xe_sysfs_engine_class_get_property
Convenience wrapper to get value of given property for given engine
class on given gt.
- xe_sysfs_engine_class_set_property
Convenience wrapper to set given property for given engine class on
given gt to given value.
v2:
-Move helpers from lib/xe_eudebug to lib/igt_sysfs
-Improve readability in xe_eudebug_online adjust commit
-Add justification in message of xe_eudebug_online adjust commit
Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com>
Dominik Karol Piątkowski (2):
lib/igt_sysfs: Introduce engine_class property helpers
tests/xe_eudebug_online: Adjust interrupt-other test
lib/igt_sysfs.c | 85 +++++++++++++++++++++++++++++++++
lib/igt_sysfs.h | 5 ++
tests/intel/xe_eudebug_online.c | 45 ++++++++++++++++-
3 files changed, 133 insertions(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH v2 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers 2024-10-02 11:29 [PATCH v2 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski @ 2024-10-02 11:29 ` Dominik Karol Piątkowski 2024-10-03 13:58 ` Grzegorzek, Dominik 2024-10-07 11:45 ` Grzegorzek, Dominik 2024-10-02 11:29 ` [PATCH v2 i-g-t 2/2] tests/xe_eudebug_online: Adjust interrupt-other test Dominik Karol Piątkowski ` (4 subsequent siblings) 5 siblings, 2 replies; 13+ messages in thread From: Dominik Karol Piątkowski @ 2024-10-02 11:29 UTC (permalink / raw) To: igt-dev Cc: Zbigniew Kempczyński, Dominik Grzegorzek, Christoph Manszewski, Pawel Sikora, Jonathan Cavitt, Dominik Karol Piątkowski Introduce the following engine_class helpers: - xe_sysfs_engine_class_get_property Convenience wrapper to get value of given property for given engine class on given gt. - xe_sysfs_engine_class_set_property Convenience wrapper to set given property for given engine class on given gt to given value. Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com> --- lib/igt_sysfs.c | 85 +++++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_sysfs.h | 5 +++ 2 files changed, 90 insertions(+) diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c index aec0bb53d..8fe6d7ede 100644 --- a/lib/igt_sysfs.c +++ b/lib/igt_sysfs.c @@ -1360,3 +1360,88 @@ int xe_sysfs_get_num_tiles(int xe_device) return num_tiles; } + +/** + * xe_sysfs_engine_class_get_property + * @xe_device: fd of the device + * @gt: gt number + * @class: engine class + * @property: property of engine class to retrieve + * @value: pointer for storing read value + * + * Convenience wrapper to get value of given property for given engine class on given gt. + * + * Returns: true on success, false on failure. + */ +bool xe_sysfs_engine_class_get_property(int xe_device, int gt, uint16_t class, const char *property, + uint32_t *value) +{ + int engines_fd; + + engines_fd = xe_sysfs_engine_open(xe_device, gt, class); + + if (engines_fd == -1) { + igt_debug("Failed to open %s on gt%d.\n", xe_engine_class_to_str(class), gt); + + return false; + } + + if (!__igt_sysfs_get_u32(engines_fd, property, value)) { + igt_debug("Failed to read %s property of %s on gt%d.\n", property, + xe_engine_class_to_str(class), gt); + close(engines_fd); + + return false; + } + + close(engines_fd); + + return true; +} + +/** + * xe_sysfs_engine_class_set_property + * @xe_device: fd of the device + * @gt: gt number + * @class: engine class + * @property: property of engine class to be modified + * @new_value: value to be set + * @old_value: pointer for storing old value, can be NULL + * + * Convenience wrapper to set given property for given engine class on given gt to given value. + * + * Returns: true on success, false on failure. + */ +bool xe_sysfs_engine_class_set_property(int xe_device, int gt, uint16_t class, const char *property, + uint32_t new_value, uint32_t *old_value) +{ + int engines_fd; + + engines_fd = xe_sysfs_engine_open(xe_device, gt, class); + + if (engines_fd == -1) { + igt_debug("Failed to open %s on gt%d.\n", xe_engine_class_to_str(class), gt); + + return false; + } + + if (old_value && !__igt_sysfs_get_u32(engines_fd, property, old_value)) { + igt_debug("Failed to read %s property of %s on gt%d.\n", property, + xe_engine_class_to_str(class), gt); + close(engines_fd); + + return false; + } + + if (!__igt_sysfs_set_u32(engines_fd, property, new_value)) { + igt_debug("Failed to write %s property of %s on gt%d.\n", property, + xe_engine_class_to_str(class), gt); + close(engines_fd); + + return false; + } + + close(engines_fd); + + return true; +} diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h index 2a1e3b1bf..3cede07f9 100644 --- a/lib/igt_sysfs.h +++ b/lib/igt_sysfs.h @@ -175,4 +175,9 @@ int xe_sysfs_get_num_tiles(int xe_device); char *xe_sysfs_engine_path(int xe_device, int gt, int class, char *path, int pathlen); int xe_sysfs_engine_open(int xe_device, int gt, int class); +bool xe_sysfs_engine_class_get_property(int xe_device, int gt, uint16_t class, const char *property, + uint32_t *value); +bool xe_sysfs_engine_class_set_property(int xe_device, int gt, uint16_t class, const char *property, + uint32_t new_value, uint32_t *old_value); + #endif /* __IGT_SYSFS_H__ */ -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v2 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers 2024-10-02 11:29 ` [PATCH v2 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers Dominik Karol Piątkowski @ 2024-10-03 13:58 ` Grzegorzek, Dominik 2024-10-07 4:03 ` Zbigniew Kempczyński 2024-10-07 8:15 ` Zbigniew Kempczyński 2024-10-07 11:45 ` Grzegorzek, Dominik 1 sibling, 2 replies; 13+ messages in thread From: Grzegorzek, Dominik @ 2024-10-03 13:58 UTC (permalink / raw) To: Piatkowski, Dominik Karol, igt-dev@lists.freedesktop.org Cc: Kempczynski, Zbigniew, Sikora, Pawel, Manszewski, Christoph, Cavitt, Jonathan Hi Dominik, Since you made this generic it looks good to me, and I would vote for merging it to igt_sysfs, as this could be useful function for anyone who would like to manipulate/read engine params. However, Zbigniew had some objections againt it under mine previous comment in which I asked you to place it here. Let's hear from him if this is acceptable in a current form. If not, I would just move those functions as they are to the test file. Regards, Dominik On Wed, 2024-10-02 at 13:29 +0200, Dominik Karol Piątkowski wrote: > Introduce the following engine_class helpers: > - xe_sysfs_engine_class_get_property > Convenience wrapper to get value of given property for given engine > class on given gt. > - xe_sysfs_engine_class_set_property > Convenience wrapper to set given property for given engine class on > given gt to given value. > > Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com> > --- > lib/igt_sysfs.c | 85 +++++++++++++++++++++++++++++++++++++++++++++++++ > lib/igt_sysfs.h | 5 +++ > 2 files changed, 90 insertions(+) > > diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c > index aec0bb53d..8fe6d7ede 100644 > --- a/lib/igt_sysfs.c > +++ b/lib/igt_sysfs.c > @@ -1360,3 +1360,88 @@ int xe_sysfs_get_num_tiles(int xe_device) > > return num_tiles; > } > + > +/** > + * xe_sysfs_engine_class_get_property > + * @xe_device: fd of the device > + * @gt: gt number > + * @class: engine class > + * @property: property of engine class to retrieve > + * @value: pointer for storing read value > + * > + * Convenience wrapper to get value of given property for given engine class on given gt. > + * > + * Returns: true on success, false on failure. > + */ > +bool xe_sysfs_engine_class_get_property(int xe_device, int gt, uint16_t class, const char *property, > + uint32_t *value) > +{ > + int engines_fd; > + > + engines_fd = xe_sysfs_engine_open(xe_device, gt, class); > + > + if (engines_fd == -1) { > + igt_debug("Failed to open %s on gt%d.\n", xe_engine_class_to_str(class), gt); > + > + return false; > + } > + > + if (!__igt_sysfs_get_u32(engines_fd, property, value)) { > + igt_debug("Failed to read %s property of %s on gt%d.\n", property, > + xe_engine_class_to_str(class), gt); > + close(engines_fd); > + > + return false; > + } > + > + close(engines_fd); > + > + return true; > +} > + > +/** > + * xe_sysfs_engine_class_set_property > + * @xe_device: fd of the device > + * @gt: gt number > + * @class: engine class > + * @property: property of engine class to be modified > + * @new_value: value to be set > + * @old_value: pointer for storing old value, can be NULL > + * > + * Convenience wrapper to set given property for given engine class on given gt to given value. > + * > + * Returns: true on success, false on failure. > + */ > +bool xe_sysfs_engine_class_set_property(int xe_device, int gt, uint16_t class, const char *property, > + uint32_t new_value, uint32_t *old_value) > +{ > + int engines_fd; > + > + engines_fd = xe_sysfs_engine_open(xe_device, gt, class); > + > + if (engines_fd == -1) { > + igt_debug("Failed to open %s on gt%d.\n", xe_engine_class_to_str(class), gt); > + > + return false; > + } > + > + if (old_value && !__igt_sysfs_get_u32(engines_fd, property, old_value)) { > + igt_debug("Failed to read %s property of %s on gt%d.\n", property, > + xe_engine_class_to_str(class), gt); > + close(engines_fd); > + > + return false; > + } > + > + if (!__igt_sysfs_set_u32(engines_fd, property, new_value)) { > + igt_debug("Failed to write %s property of %s on gt%d.\n", property, > + xe_engine_class_to_str(class), gt); > + close(engines_fd); > + > + return false; > + } > + > + close(engines_fd); > + > + return true; > +} > diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h > index 2a1e3b1bf..3cede07f9 100644 > --- a/lib/igt_sysfs.h > +++ b/lib/igt_sysfs.h > @@ -175,4 +175,9 @@ int xe_sysfs_get_num_tiles(int xe_device); > char *xe_sysfs_engine_path(int xe_device, int gt, int class, char *path, int pathlen); > int xe_sysfs_engine_open(int xe_device, int gt, int class); > > +bool xe_sysfs_engine_class_get_property(int xe_device, int gt, uint16_t class, const char *property, > + uint32_t *value); > +bool xe_sysfs_engine_class_set_property(int xe_device, int gt, uint16_t class, const char *property, > + uint32_t new_value, uint32_t *old_value); > + > #endif /* __IGT_SYSFS_H__ */ ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers 2024-10-03 13:58 ` Grzegorzek, Dominik @ 2024-10-07 4:03 ` Zbigniew Kempczyński 2024-10-07 8:15 ` Zbigniew Kempczyński 1 sibling, 0 replies; 13+ messages in thread From: Zbigniew Kempczyński @ 2024-10-07 4:03 UTC (permalink / raw) To: Grzegorzek, Dominik Cc: Piatkowski, Dominik Karol, igt-dev@lists.freedesktop.org, Sikora, Pawel, Manszewski, Christoph, Cavitt, Jonathan On Thu, Oct 03, 2024 at 03:58:09PM +0200, Grzegorzek, Dominik wrote: > Hi Dominik, > > Since you made this generic it looks good to me, and I would vote for merging it to igt_sysfs, > as this could be useful function for anyone who would like to manipulate/read engine params. > However, Zbigniew had some objections againt it under mine previous comment in which I asked you to > place it here. Let's hear from him if this is acceptable in a current form. If not, I would just > move those functions as they are to the test file. I'm sorry for late answer. Please check my answer to previous series, I'm catching up my email queue. -- Zbigniew > > Regards, > Dominik > > On Wed, 2024-10-02 at 13:29 +0200, Dominik Karol Piątkowski wrote: > > Introduce the following engine_class helpers: > > - xe_sysfs_engine_class_get_property > > Convenience wrapper to get value of given property for given engine > > class on given gt. > > - xe_sysfs_engine_class_set_property > > Convenience wrapper to set given property for given engine class on > > given gt to given value. > > > > Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com> > > --- > > lib/igt_sysfs.c | 85 +++++++++++++++++++++++++++++++++++++++++++++++++ > > lib/igt_sysfs.h | 5 +++ > > 2 files changed, 90 insertions(+) > > > > diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c > > index aec0bb53d..8fe6d7ede 100644 > > --- a/lib/igt_sysfs.c > > +++ b/lib/igt_sysfs.c > > @@ -1360,3 +1360,88 @@ int xe_sysfs_get_num_tiles(int xe_device) > > > > return num_tiles; > > } > > + > > +/** > > + * xe_sysfs_engine_class_get_property > > + * @xe_device: fd of the device > > + * @gt: gt number > > + * @class: engine class > > + * @property: property of engine class to retrieve > > + * @value: pointer for storing read value > > + * > > + * Convenience wrapper to get value of given property for given engine class on given gt. > > + * > > + * Returns: true on success, false on failure. > > + */ > > +bool xe_sysfs_engine_class_get_property(int xe_device, int gt, uint16_t class, const char *property, > > + uint32_t *value) > > +{ > > + int engines_fd; > > + > > + engines_fd = xe_sysfs_engine_open(xe_device, gt, class); > > + > > + if (engines_fd == -1) { > > + igt_debug("Failed to open %s on gt%d.\n", xe_engine_class_to_str(class), gt); > > + > > + return false; > > + } > > + > > + if (!__igt_sysfs_get_u32(engines_fd, property, value)) { > > + igt_debug("Failed to read %s property of %s on gt%d.\n", property, > > + xe_engine_class_to_str(class), gt); > > + close(engines_fd); > > + > > + return false; > > + } > > + > > + close(engines_fd); > > + > > + return true; > > +} > > + > > +/** > > + * xe_sysfs_engine_class_set_property > > + * @xe_device: fd of the device > > + * @gt: gt number > > + * @class: engine class > > + * @property: property of engine class to be modified > > + * @new_value: value to be set > > + * @old_value: pointer for storing old value, can be NULL > > + * > > + * Convenience wrapper to set given property for given engine class on given gt to given value. > > + * > > + * Returns: true on success, false on failure. > > + */ > > +bool xe_sysfs_engine_class_set_property(int xe_device, int gt, uint16_t class, const char *property, > > + uint32_t new_value, uint32_t *old_value) > > +{ > > + int engines_fd; > > + > > + engines_fd = xe_sysfs_engine_open(xe_device, gt, class); > > + > > + if (engines_fd == -1) { > > + igt_debug("Failed to open %s on gt%d.\n", xe_engine_class_to_str(class), gt); > > + > > + return false; > > + } > > + > > + if (old_value && !__igt_sysfs_get_u32(engines_fd, property, old_value)) { > > + igt_debug("Failed to read %s property of %s on gt%d.\n", property, > > + xe_engine_class_to_str(class), gt); > > + close(engines_fd); > > + > > + return false; > > + } > > + > > + if (!__igt_sysfs_set_u32(engines_fd, property, new_value)) { > > + igt_debug("Failed to write %s property of %s on gt%d.\n", property, > > + xe_engine_class_to_str(class), gt); > > + close(engines_fd); > > + > > + return false; > > + } > > + > > + close(engines_fd); > > + > > + return true; > > +} > > diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h > > index 2a1e3b1bf..3cede07f9 100644 > > --- a/lib/igt_sysfs.h > > +++ b/lib/igt_sysfs.h > > @@ -175,4 +175,9 @@ int xe_sysfs_get_num_tiles(int xe_device); > > char *xe_sysfs_engine_path(int xe_device, int gt, int class, char *path, int pathlen); > > int xe_sysfs_engine_open(int xe_device, int gt, int class); > > > > +bool xe_sysfs_engine_class_get_property(int xe_device, int gt, uint16_t class, const char *property, > > + uint32_t *value); > > +bool xe_sysfs_engine_class_set_property(int xe_device, int gt, uint16_t class, const char *property, > > + uint32_t new_value, uint32_t *old_value); > > + > > #endif /* __IGT_SYSFS_H__ */ > ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers 2024-10-03 13:58 ` Grzegorzek, Dominik 2024-10-07 4:03 ` Zbigniew Kempczyński @ 2024-10-07 8:15 ` Zbigniew Kempczyński 1 sibling, 0 replies; 13+ messages in thread From: Zbigniew Kempczyński @ 2024-10-07 8:15 UTC (permalink / raw) To: Grzegorzek, Dominik Cc: Piatkowski, Dominik Karol, igt-dev@lists.freedesktop.org, Sikora, Pawel, Manszewski, Christoph, Cavitt, Jonathan On Thu, Oct 03, 2024 at 03:58:09PM +0200, Grzegorzek, Dominik wrote: > Hi Dominik, > > Since you made this generic it looks good to me, and I would vote for merging it to igt_sysfs, > as this could be useful function for anyone who would like to manipulate/read engine params. > However, Zbigniew had some objections againt it under mine previous comment in which I asked you to > place it here. Let's hear from him if this is acceptable in a current form. If not, I would just > move those functions as they are to the test file. Yes, this doesn't depend on eudebug so it is fine for me. -- Zbigniew > > Regards, > Dominik > > On Wed, 2024-10-02 at 13:29 +0200, Dominik Karol Piątkowski wrote: > > Introduce the following engine_class helpers: > > - xe_sysfs_engine_class_get_property > > Convenience wrapper to get value of given property for given engine > > class on given gt. > > - xe_sysfs_engine_class_set_property > > Convenience wrapper to set given property for given engine class on > > given gt to given value. > > > > Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com> > > --- > > lib/igt_sysfs.c | 85 +++++++++++++++++++++++++++++++++++++++++++++++++ > > lib/igt_sysfs.h | 5 +++ > > 2 files changed, 90 insertions(+) > > > > diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c > > index aec0bb53d..8fe6d7ede 100644 > > --- a/lib/igt_sysfs.c > > +++ b/lib/igt_sysfs.c > > @@ -1360,3 +1360,88 @@ int xe_sysfs_get_num_tiles(int xe_device) > > > > return num_tiles; > > } > > + > > +/** > > + * xe_sysfs_engine_class_get_property > > + * @xe_device: fd of the device > > + * @gt: gt number > > + * @class: engine class > > + * @property: property of engine class to retrieve > > + * @value: pointer for storing read value > > + * > > + * Convenience wrapper to get value of given property for given engine class on given gt. > > + * > > + * Returns: true on success, false on failure. > > + */ > > +bool xe_sysfs_engine_class_get_property(int xe_device, int gt, uint16_t class, const char *property, > > + uint32_t *value) > > +{ > > + int engines_fd; > > + > > + engines_fd = xe_sysfs_engine_open(xe_device, gt, class); > > + > > + if (engines_fd == -1) { > > + igt_debug("Failed to open %s on gt%d.\n", xe_engine_class_to_str(class), gt); > > + > > + return false; > > + } > > + > > + if (!__igt_sysfs_get_u32(engines_fd, property, value)) { > > + igt_debug("Failed to read %s property of %s on gt%d.\n", property, > > + xe_engine_class_to_str(class), gt); > > + close(engines_fd); > > + > > + return false; > > + } > > + > > + close(engines_fd); > > + > > + return true; > > +} > > + > > +/** > > + * xe_sysfs_engine_class_set_property > > + * @xe_device: fd of the device > > + * @gt: gt number > > + * @class: engine class > > + * @property: property of engine class to be modified > > + * @new_value: value to be set > > + * @old_value: pointer for storing old value, can be NULL > > + * > > + * Convenience wrapper to set given property for given engine class on given gt to given value. > > + * > > + * Returns: true on success, false on failure. > > + */ > > +bool xe_sysfs_engine_class_set_property(int xe_device, int gt, uint16_t class, const char *property, > > + uint32_t new_value, uint32_t *old_value) > > +{ > > + int engines_fd; > > + > > + engines_fd = xe_sysfs_engine_open(xe_device, gt, class); > > + > > + if (engines_fd == -1) { > > + igt_debug("Failed to open %s on gt%d.\n", xe_engine_class_to_str(class), gt); > > + > > + return false; > > + } > > + > > + if (old_value && !__igt_sysfs_get_u32(engines_fd, property, old_value)) { > > + igt_debug("Failed to read %s property of %s on gt%d.\n", property, > > + xe_engine_class_to_str(class), gt); > > + close(engines_fd); > > + > > + return false; > > + } > > + > > + if (!__igt_sysfs_set_u32(engines_fd, property, new_value)) { > > + igt_debug("Failed to write %s property of %s on gt%d.\n", property, > > + xe_engine_class_to_str(class), gt); > > + close(engines_fd); > > + > > + return false; > > + } > > + > > + close(engines_fd); > > + > > + return true; > > +} > > diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h > > index 2a1e3b1bf..3cede07f9 100644 > > --- a/lib/igt_sysfs.h > > +++ b/lib/igt_sysfs.h > > @@ -175,4 +175,9 @@ int xe_sysfs_get_num_tiles(int xe_device); > > char *xe_sysfs_engine_path(int xe_device, int gt, int class, char *path, int pathlen); > > int xe_sysfs_engine_open(int xe_device, int gt, int class); > > > > +bool xe_sysfs_engine_class_get_property(int xe_device, int gt, uint16_t class, const char *property, > > + uint32_t *value); > > +bool xe_sysfs_engine_class_set_property(int xe_device, int gt, uint16_t class, const char *property, > > + uint32_t new_value, uint32_t *old_value); > > + > > #endif /* __IGT_SYSFS_H__ */ > ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers 2024-10-02 11:29 ` [PATCH v2 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers Dominik Karol Piątkowski 2024-10-03 13:58 ` Grzegorzek, Dominik @ 2024-10-07 11:45 ` Grzegorzek, Dominik 1 sibling, 0 replies; 13+ messages in thread From: Grzegorzek, Dominik @ 2024-10-07 11:45 UTC (permalink / raw) To: Piatkowski, Dominik Karol, igt-dev@lists.freedesktop.org Cc: Kempczynski, Zbigniew, Sikora, Pawel, Manszewski, Christoph, Cavitt, Jonathan On Wed, 2024-10-02 at 13:29 +0200, Dominik Karol Piątkowski wrote: > Introduce the following engine_class helpers: > - xe_sysfs_engine_class_get_property > Convenience wrapper to get value of given property for given engine > class on given gt. > - xe_sysfs_engine_class_set_property > Convenience wrapper to set given property for given engine class on > given gt to given value. > > Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com> > --- > lib/igt_sysfs.c | 85 +++++++++++++++++++++++++++++++++++++++++++++++++ > lib/igt_sysfs.h | 5 +++ > 2 files changed, 90 insertions(+) > > diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c > index aec0bb53d..8fe6d7ede 100644 > --- a/lib/igt_sysfs.c > +++ b/lib/igt_sysfs.c > @@ -1360,3 +1360,88 @@ int xe_sysfs_get_num_tiles(int xe_device) > > return num_tiles; > } > + > +/** > + * xe_sysfs_engine_class_get_property > + * @xe_device: fd of the device > + * @gt: gt number > + * @class: engine class > + * @property: property of engine class to retrieve > + * @value: pointer for storing read value > + * > + * Convenience wrapper to get value of given property for given engine class on given gt. > + * > + * Returns: true on success, false on failure. > + */ > +bool xe_sysfs_engine_class_get_property(int xe_device, int gt, uint16_t class, const char *property, > + uint32_t *value) > +{ > + int engines_fd; > + > + engines_fd = xe_sysfs_engine_open(xe_device, gt, class); > + > + if (engines_fd == -1) { > + igt_debug("Failed to open %s on gt%d.\n", xe_engine_class_to_str(class), gt); > + > + return false; > + } > + > + if (!__igt_sysfs_get_u32(engines_fd, property, value)) { > + igt_debug("Failed to read %s property of %s on gt%d.\n", property, > + xe_engine_class_to_str(class), gt); > + close(engines_fd); > + > + return false; > + } > + > + close(engines_fd); > + > + return true; > +} > + > +/** > + * xe_sysfs_engine_class_set_property > + * @xe_device: fd of the device > + * @gt: gt number > + * @class: engine class > + * @property: property of engine class to be modified > + * @new_value: value to be set > + * @old_value: pointer for storing old value, can be NULL > + * > + * Convenience wrapper to set given property for given engine class on given gt to given value. > + * > + * Returns: true on success, false on failure. > + */ > +bool xe_sysfs_engine_class_set_property(int xe_device, int gt, uint16_t class, const char *property, > + uint32_t new_value, uint32_t *old_value) > +{ > + int engines_fd; > + > + engines_fd = xe_sysfs_engine_open(xe_device, gt, class); > + > + if (engines_fd == -1) { > + igt_debug("Failed to open %s on gt%d.\n", xe_engine_class_to_str(class), gt); > + > + return false; > + } > + > + if (old_value && !__igt_sysfs_get_u32(engines_fd, property, old_value)) { > + igt_debug("Failed to read %s property of %s on gt%d.\n", property, > + xe_engine_class_to_str(class), gt); > + close(engines_fd); > + > + return false; > + } > + > + if (!__igt_sysfs_set_u32(engines_fd, property, new_value)) { > + igt_debug("Failed to write %s property of %s on gt%d.\n", property, > + xe_engine_class_to_str(class), gt); > + close(engines_fd); > + > + return false; > + } > + > + close(engines_fd); > + > + return true; > +} > diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h > index 2a1e3b1bf..3cede07f9 100644 > --- a/lib/igt_sysfs.h > +++ b/lib/igt_sysfs.h > @@ -175,4 +175,9 @@ int xe_sysfs_get_num_tiles(int xe_device); > char *xe_sysfs_engine_path(int xe_device, int gt, int class, char *path, int pathlen); > int xe_sysfs_engine_open(int xe_device, int gt, int class); > > +bool xe_sysfs_engine_class_get_property(int xe_device, int gt, uint16_t class, const char *property, > + uint32_t *value); > +bool xe_sysfs_engine_class_set_property(int xe_device, int gt, uint16_t class, const char *property, > + uint32_t new_value, uint32_t *old_value); > + > #endif /* __IGT_SYSFS_H__ */ Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com> ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v2 i-g-t 2/2] tests/xe_eudebug_online: Adjust interrupt-other test 2024-10-02 11:29 [PATCH v2 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski 2024-10-02 11:29 ` [PATCH v2 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers Dominik Karol Piątkowski @ 2024-10-02 11:29 ` Dominik Karol Piątkowski 2024-10-03 13:49 ` Grzegorzek, Dominik 2024-10-02 13:05 ` ✓ CI.xeBAT: success for Fix xe_eudebug_online@interrupt-other test (rev2) Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 13+ messages in thread From: Dominik Karol Piątkowski @ 2024-10-02 11:29 UTC (permalink / raw) To: igt-dev Cc: Zbigniew Kempczyński, Dominik Grzegorzek, Christoph Manszewski, Pawel Sikora, Jonathan Cavitt, Dominik Karol Piątkowski This test fails due to preemption interfering with it. In order to fix it, set the preempt_timeout_us for engine_class used in this test to maximum for the duration of the test. It is set to maximum inside test_gt_render_or_compute. If set before, we would lack engine_class info. If set inside the test function, we would need to pass original preempt_timeout_us value from there, unnecessarily complicating the declaration of test function. It is restored in subsequent igt_fixture. This way, a proper cleanup can be assured. If restored inside the test function or even test_gt_render_or_compute section, any failed assert preceding cleanup inside test function would prevent cleanup from happening. We cannot allow that. In order to underline that the subsequent igt_fixture is related to this test, both test_gt_render_or_compute and igt_fixture sections were put inside igt_subtest_group, hopefully increasing readability. Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com> --- tests/intel/xe_eudebug_online.c | 45 +++++++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 2 deletions(-) diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c index 68d1b786f..84736192f 100644 --- a/tests/intel/xe_eudebug_online.c +++ b/tests/intel/xe_eudebug_online.c @@ -16,6 +16,7 @@ #include "xe/xe_ioctl.h" #include "xe/xe_query.h" #include "igt.h" +#include "igt_sysfs.h" #include "intel_pat.h" #include "intel_mocs.h" #include "gpgpu_shader.h" @@ -2201,6 +2202,30 @@ static struct drm_xe_engine_class_instance *pick_compute(int fd, int gt) return NULL; } +static bool set_preempt_timeout_to_max(int fd, uint16_t engine_class, uint32_t *preempt_timeout) +{ + uint32_t preempt_timeout_max; + + if (!xe_sysfs_engine_class_get_property(fd, 0, engine_class, "preempt_timeout_max", + &preempt_timeout_max)) + return false; + + if (!xe_sysfs_engine_class_set_property(fd, 0, engine_class, "preempt_timeout_us", + preempt_timeout_max, preempt_timeout)) + return false; + + return true; +} + +static bool restore_preempt_timeout(int fd, uint16_t engine_class, uint32_t preempt_timeout) +{ + if (!xe_sysfs_engine_class_set_property(fd, 0, engine_class, "preempt_timeout_us", + preempt_timeout, NULL)) + return false; + + return true; +} + #define test_gt_render_or_compute(t, fd, __hwe) \ igt_subtest_with_dynamic(t) \ for (int gt = 0; (__hwe = pick_compute(fd, gt)); gt++) \ @@ -2212,6 +2237,8 @@ igt_main struct drm_xe_engine_class_instance *hwe; bool was_enabled; int fd; + uint16_t engine_class = 0xFFFF; + uint32_t preempt_timeout = 0xFFFFFFFF; igt_fixture { fd = drm_open_driver(DRIVER_XE); @@ -2247,8 +2274,22 @@ igt_main test_gt_render_or_compute("interrupt-other-debuggable", fd, hwe) test_interrupt_other(fd, hwe, SHADER_LOOP); - test_gt_render_or_compute("interrupt-other", fd, hwe) - test_interrupt_other(fd, hwe, SHADER_LOOP | DISABLE_DEBUG_MODE); + igt_subtest_group { + test_gt_render_or_compute("interrupt-other", fd, hwe) { + engine_class = hwe->engine_class; + + igt_skip_on(!set_preempt_timeout_to_max(fd, engine_class, + &preempt_timeout)); + + test_interrupt_other(fd, hwe, SHADER_LOOP | DISABLE_DEBUG_MODE); + } + + igt_fixture { + if ((uint16_t)~engine_class && ~preempt_timeout) + if (!restore_preempt_timeout(fd, engine_class, preempt_timeout)) + igt_warn("Cleanup of preempt_timeout failed!\n"); + } + } test_gt_render_or_compute("interrupt-all-set-breakpoint", fd, hwe) test_interrupt_all(fd, hwe, SHADER_LOOP | TRIGGER_RESUME_SET_BP); -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH v2 i-g-t 2/2] tests/xe_eudebug_online: Adjust interrupt-other test 2024-10-02 11:29 ` [PATCH v2 i-g-t 2/2] tests/xe_eudebug_online: Adjust interrupt-other test Dominik Karol Piątkowski @ 2024-10-03 13:49 ` Grzegorzek, Dominik 2024-10-04 6:01 ` Piatkowski, Dominik Karol 0 siblings, 1 reply; 13+ messages in thread From: Grzegorzek, Dominik @ 2024-10-03 13:49 UTC (permalink / raw) To: Piatkowski, Dominik Karol, igt-dev@lists.freedesktop.org Cc: Kempczynski, Zbigniew, Sikora, Pawel, Manszewski, Christoph, Cavitt, Jonathan Hi Dominik! On Wed, 2024-10-02 at 13:29 +0200, Dominik Karol Piątkowski wrote: > This test fails due to preemption interfering with it. > > In order to fix it, set the preempt_timeout_us for engine_class used in > this test to maximum for the duration of the test. > > It is set to maximum inside test_gt_render_or_compute. If set before, > we would lack engine_class info. If set inside the test function, we > would need to pass original preempt_timeout_us value from there, > unnecessarily complicating the declaration of test function. > > It is restored in subsequent igt_fixture. This way, a proper cleanup > can be assured. If restored inside the test function or even > test_gt_render_or_compute section, any failed assert preceding cleanup > inside test function would prevent cleanup from happening. We cannot > allow that. > > In order to underline that the subsequent igt_fixture is related to > this test, both test_gt_render_or_compute and igt_fixture sections > were put inside igt_subtest_group, hopefully increasing readability. > > Signed-off-by: Dominik Karol Piątkowski <dominik.karol.piatkowski@intel.com> > --- > tests/intel/xe_eudebug_online.c | 45 +++++++++++++++++++++++++++++++-- > 1 file changed, 43 insertions(+), 2 deletions(-) > > diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c > index 68d1b786f..84736192f 100644 > --- a/tests/intel/xe_eudebug_online.c > +++ b/tests/intel/xe_eudebug_online.c > @@ -16,6 +16,7 @@ > #include "xe/xe_ioctl.h" > #include "xe/xe_query.h" > #include "igt.h" > +#include "igt_sysfs.h" > #include "intel_pat.h" > #include "intel_mocs.h" > #include "gpgpu_shader.h" > @@ -2201,6 +2202,30 @@ static struct drm_xe_engine_class_instance *pick_compute(int fd, int gt) > return NULL; > } > > +static bool set_preempt_timeout_to_max(int fd, uint16_t engine_class, uint32_t *preempt_timeout) > +{ > + uint32_t preempt_timeout_max; > + > + if (!xe_sysfs_engine_class_get_property(fd, 0, engine_class, "preempt_timeout_max", > + &preempt_timeout_max)) > + return false; > + > + if (!xe_sysfs_engine_class_set_property(fd, 0, engine_class, "preempt_timeout_us", > + preempt_timeout_max, preempt_timeout)) > + return false; > + > + return true; Minor nit, you could ommit second if: return xe_sysfs_engine_class_set_property(fd, 0, engine_class, "preempt_timeout_us", + preempt_timeout_max, preempt_timeout)) > +} > + > +static bool restore_preempt_timeout(int fd, uint16_t engine_class, uint32_t preempt_timeout) > +{ > + if (!xe_sysfs_engine_class_set_property(fd, 0, engine_class, "preempt_timeout_us", > + preempt_timeout, NULL)) > + return false; > + > + return true; same as above. > +} > + > #define test_gt_render_or_compute(t, fd, __hwe) \ > igt_subtest_with_dynamic(t) \ > for (int gt = 0; (__hwe = pick_compute(fd, gt)); gt++) \ > @@ -2212,6 +2237,8 @@ igt_main > struct drm_xe_engine_class_instance *hwe; > bool was_enabled; > int fd; > + uint16_t engine_class = 0xFFFF; > + uint32_t preempt_timeout = 0xFFFFFFFF; > > igt_fixture { > fd = drm_open_driver(DRIVER_XE); > @@ -2247,8 +2274,22 @@ igt_main > test_gt_render_or_compute("interrupt-other-debuggable", fd, hwe) > test_interrupt_other(fd, hwe, SHADER_LOOP); > > - test_gt_render_or_compute("interrupt-other", fd, hwe) > - test_interrupt_other(fd, hwe, SHADER_LOOP | DISABLE_DEBUG_MODE); > + igt_subtest_group { > + test_gt_render_or_compute("interrupt-other", fd, hwe) { > + engine_class = hwe->engine_class; > + > + igt_skip_on(!set_preempt_timeout_to_max(fd, engine_class, > + &preempt_timeout)); > + > + test_interrupt_other(fd, hwe, SHADER_LOOP | DISABLE_DEBUG_MODE); > + } > + > + igt_fixture { > + if ((uint16_t)~engine_class && ~preempt_timeout) Maybe I'm not seeing sth but why do we need to cast it to uint16, isn't it already that type? Other than that it is: Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com> > + if (!restore_preempt_timeout(fd, engine_class, preempt_timeout)) > + igt_warn("Cleanup of preempt_timeout failed!\n"); > + } > + } > > test_gt_render_or_compute("interrupt-all-set-breakpoint", fd, hwe) > test_interrupt_all(fd, hwe, SHADER_LOOP | TRIGGER_RESUME_SET_BP); ^ permalink raw reply [flat|nested] 13+ messages in thread
* RE: [PATCH v2 i-g-t 2/2] tests/xe_eudebug_online: Adjust interrupt-other test 2024-10-03 13:49 ` Grzegorzek, Dominik @ 2024-10-04 6:01 ` Piatkowski, Dominik Karol 0 siblings, 0 replies; 13+ messages in thread From: Piatkowski, Dominik Karol @ 2024-10-04 6:01 UTC (permalink / raw) To: Grzegorzek, Dominik, igt-dev@lists.freedesktop.org Cc: Kempczynski, Zbigniew, Sikora, Pawel, Manszewski, Christoph, Cavitt, Jonathan Hi Dominik, > -----Original Message----- > From: Grzegorzek, Dominik <dominik.grzegorzek@intel.com> > Sent: Thursday, October 3, 2024 3:49 PM > To: Piatkowski, Dominik Karol <dominik.karol.piatkowski@intel.com>; igt- > dev@lists.freedesktop.org > Cc: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com>; Sikora, Pawel > <pawel.sikora@intel.com>; Manszewski, Christoph > <christoph.manszewski@intel.com>; Cavitt, Jonathan > <jonathan.cavitt@intel.com> > Subject: Re: [PATCH v2 i-g-t 2/2] tests/xe_eudebug_online: Adjust interrupt- > other test > > Hi Dominik! > > On Wed, 2024-10-02 at 13:29 +0200, Dominik Karol Piątkowski wrote: > > This test fails due to preemption interfering with it. > > > > In order to fix it, set the preempt_timeout_us for engine_class used > > in this test to maximum for the duration of the test. > > > > It is set to maximum inside test_gt_render_or_compute. If set before, > > we would lack engine_class info. If set inside the test function, we > > would need to pass original preempt_timeout_us value from there, > > unnecessarily complicating the declaration of test function. > > > > It is restored in subsequent igt_fixture. This way, a proper cleanup > > can be assured. If restored inside the test function or even > > test_gt_render_or_compute section, any failed assert preceding cleanup > > inside test function would prevent cleanup from happening. We cannot > > allow that. > > > > In order to underline that the subsequent igt_fixture is related to > > this test, both test_gt_render_or_compute and igt_fixture sections > > were put inside igt_subtest_group, hopefully increasing readability. > > > > Signed-off-by: Dominik Karol Piątkowski > > <dominik.karol.piatkowski@intel.com> > > --- > > tests/intel/xe_eudebug_online.c | 45 > > +++++++++++++++++++++++++++++++-- > > 1 file changed, 43 insertions(+), 2 deletions(-) > > > > diff --git a/tests/intel/xe_eudebug_online.c > > b/tests/intel/xe_eudebug_online.c index 68d1b786f..84736192f 100644 > > --- a/tests/intel/xe_eudebug_online.c > > +++ b/tests/intel/xe_eudebug_online.c > > @@ -16,6 +16,7 @@ > > #include "xe/xe_ioctl.h" > > #include "xe/xe_query.h" > > #include "igt.h" > > +#include "igt_sysfs.h" > > #include "intel_pat.h" > > #include "intel_mocs.h" > > #include "gpgpu_shader.h" > > @@ -2201,6 +2202,30 @@ static struct drm_xe_engine_class_instance > *pick_compute(int fd, int gt) > > return NULL; > > } > > > > +static bool set_preempt_timeout_to_max(int fd, uint16_t engine_class, > > +uint32_t *preempt_timeout) { > > + uint32_t preempt_timeout_max; > > + > > + if (!xe_sysfs_engine_class_get_property(fd, 0, engine_class, > "preempt_timeout_max", > > + &preempt_timeout_max)) > > + return false; > > + > > + if (!xe_sysfs_engine_class_set_property(fd, 0, engine_class, > "preempt_timeout_us", > > + preempt_timeout_max, > preempt_timeout)) > > + return false; > > + > > + return true; > Minor nit, you could ommit second if: > return xe_sysfs_engine_class_set_property(fd, 0, engine_class, > "preempt_timeout_us", > + preempt_timeout_max, > preempt_timeout)) Nice catch! > > +} > > + > > +static bool restore_preempt_timeout(int fd, uint16_t engine_class, > > +uint32_t preempt_timeout) { > > + if (!xe_sysfs_engine_class_set_property(fd, 0, engine_class, > "preempt_timeout_us", > > + preempt_timeout, NULL)) > > + return false; > > + > > + return true; > same as above. Thanks! > > +} > > + > > #define test_gt_render_or_compute(t, fd, __hwe) \ > > igt_subtest_with_dynamic(t) \ > > for (int gt = 0; (__hwe = pick_compute(fd, gt)); gt++) \ @@ - > 2212,6 > > +2237,8 @@ igt_main > > struct drm_xe_engine_class_instance *hwe; > > bool was_enabled; > > int fd; > > + uint16_t engine_class = 0xFFFF; > > + uint32_t preempt_timeout = 0xFFFFFFFF; > > > > igt_fixture { > > fd = drm_open_driver(DRIVER_XE); > > @@ -2247,8 +2274,22 @@ igt_main > > test_gt_render_or_compute("interrupt-other-debuggable", fd, hwe) > > test_interrupt_other(fd, hwe, SHADER_LOOP); > > > > - test_gt_render_or_compute("interrupt-other", fd, hwe) > > - test_interrupt_other(fd, hwe, SHADER_LOOP | > DISABLE_DEBUG_MODE); > > + igt_subtest_group { > > + test_gt_render_or_compute("interrupt-other", fd, hwe) { > > + engine_class = hwe->engine_class; > > + > > + igt_skip_on(!set_preempt_timeout_to_max(fd, > engine_class, > > + > &preempt_timeout)); > > + > > + test_interrupt_other(fd, hwe, SHADER_LOOP | > DISABLE_DEBUG_MODE); > > + } > > + > > + igt_fixture { > > + if ((uint16_t)~engine_class && ~preempt_timeout) > Maybe I'm not seeing sth but why do we need to cast it to uint16, isn't it > already that type? Considering the case of engine_class = 0xFFFF, when we do: if (~engine_class) ... it evaluates to: if (0xFFFF0000) ... hence the cast :) Thanks, Dominik Karol > > Other than that it is: > Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com> > > + if (!restore_preempt_timeout(fd, > engine_class, preempt_timeout)) > > + igt_warn("Cleanup of > preempt_timeout failed!\n"); > > + } > > + } > > > > test_gt_render_or_compute("interrupt-all-set-breakpoint", fd, hwe) > > test_interrupt_all(fd, hwe, SHADER_LOOP | > TRIGGER_RESUME_SET_BP); ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.xeBAT: success for Fix xe_eudebug_online@interrupt-other test (rev2) 2024-10-02 11:29 [PATCH v2 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski 2024-10-02 11:29 ` [PATCH v2 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers Dominik Karol Piątkowski 2024-10-02 11:29 ` [PATCH v2 i-g-t 2/2] tests/xe_eudebug_online: Adjust interrupt-other test Dominik Karol Piątkowski @ 2024-10-02 13:05 ` Patchwork 2024-10-02 13:13 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-10-02 13:05 UTC (permalink / raw) To: Dominik Karol Piątkowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2392 bytes --] == Series Details == Series: Fix xe_eudebug_online@interrupt-other test (rev2) URL : https://patchwork.freedesktop.org/series/139158/ State : success == Summary == CI Bug Log - changes from XEIGT_8048_BAT -> XEIGTPW_11855_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11855_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [DMESG-WARN][1] ([Intel XE#2871]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_psr@psr-cursor-plane-move: - bat-adlp-7: [SKIP][3] ([Intel XE#455]) -> [PASS][4] +3 other tests pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-primary-page-flip@edp-1: - bat-adlp-7: [DMESG-FAIL][5] ([Intel XE#2871]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html [Intel XE#2871]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2871 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8048 -> IGTPW_11855 * Linux: xe-2001-fcdbbdcd11d425434efc837037141c9dfb0fcdec -> xe-2003-ccd6d671492e28746e9ed8e88bd6d25b6f3295dd IGTPW_11855: 11855 IGT_8048: 4ade707fbd17f6300b8c444e2d86216005f199e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2001-fcdbbdcd11d425434efc837037141c9dfb0fcdec: fcdbbdcd11d425434efc837037141c9dfb0fcdec xe-2003-ccd6d671492e28746e9ed8e88bd6d25b6f3295dd: ccd6d671492e28746e9ed8e88bd6d25b6f3295dd == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/index.html [-- Attachment #2: Type: text/html, Size: 3104 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Fi.CI.BAT: success for Fix xe_eudebug_online@interrupt-other test (rev2) 2024-10-02 11:29 [PATCH v2 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski ` (2 preceding siblings ...) 2024-10-02 13:05 ` ✓ CI.xeBAT: success for Fix xe_eudebug_online@interrupt-other test (rev2) Patchwork @ 2024-10-02 13:13 ` Patchwork 2024-10-02 14:49 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-03 12:06 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-10-02 13:13 UTC (permalink / raw) To: Dominik Karol Piątkowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5920 bytes --] == Series Details == Series: Fix xe_eudebug_online@interrupt-other test (rev2) URL : https://patchwork.freedesktop.org/series/139158/ State : success == Summary == CI Bug Log - changes from IGT_8048 -> IGTPW_11855 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/index.html Participating hosts (42 -> 42) ------------------------------ Additional (1): bat-rpls-4 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11855 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-rpls-4: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-rpls-4/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-rpls-4: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-rpls-4/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - bat-rpls-4: NOTRUN -> [SKIP][3] ([i915#3282]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-rpls-4/igt@gem_tiled_pread_basic.html * igt@i915_selftest@live: - bat-mtlp-6: [PASS][4] -> [DMESG-FAIL][5] ([i915#10341]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8048/bat-mtlp-6/igt@i915_selftest@live.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-mtlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][6] -> [DMESG-FAIL][7] ([i915#12304]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8048/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-rpls-4: NOTRUN -> [SKIP][8] ([i915#4103]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-rpls-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-rpls-4: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#3840] / [i915#9886]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-rpls-4/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-rpls-4: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-rpls-4/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][11] -> [SKIP][12] ([i915#9197]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8048/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pm_backlight@basic-brightness: - bat-rpls-4: NOTRUN -> [SKIP][13] ([i915#5354]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-rpls-4/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - bat-rpls-4: NOTRUN -> [SKIP][14] ([i915#1072] / [i915#9732]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-rpls-4/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rpls-4: NOTRUN -> [SKIP][15] ([i915#3555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-rpls-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - bat-rpls-4: NOTRUN -> [SKIP][16] ([i915#3708]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-rpls-4/igt@prime_vgem@basic-read.html * igt@runner@aborted: - bat-dg2-14: NOTRUN -> [FAIL][17] ([i915#12292]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/bat-dg2-14/igt@runner@aborted.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#12292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12292 [i915#12304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12304 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8048 -> IGTPW_11855 * Linux: CI_DRM_15469 -> CI_DRM_15471 CI-20190529: 20190529 CI_DRM_15469: fcdbbdcd11d425434efc837037141c9dfb0fcdec @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15471: ccd6d671492e28746e9ed8e88bd6d25b6f3295dd @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11855: 11855 IGT_8048: 4ade707fbd17f6300b8c444e2d86216005f199e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/index.html [-- Attachment #2: Type: text/html, Size: 6953 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.xeFULL: failure for Fix xe_eudebug_online@interrupt-other test (rev2) 2024-10-02 11:29 [PATCH v2 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski ` (3 preceding siblings ...) 2024-10-02 13:13 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-10-02 14:49 ` Patchwork 2024-10-03 12:06 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-10-02 14:49 UTC (permalink / raw) To: Dominik Karol Piątkowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 67272 bytes --] == Series Details == Series: Fix xe_eudebug_online@interrupt-other test (rev2) URL : https://patchwork.freedesktop.org/series/139158/ State : failure == Summary == CI Bug Log - changes from XEIGT_8048_full -> XEIGTPW_11855_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11855_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11855_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_11855_full: ### IGT changes ### #### Possible regressions #### * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-dg2-set2: NOTRUN -> [SKIP][1] +9 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_flip@nonblocking-read: - shard-dg2-set2: [PASS][2] -> [SKIP][3] +4 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-435/igt@kms_flip@nonblocking-read.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_flip@nonblocking-read.html * igt@kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-7/igt@kms_joiner@basic-big-joiner.html * igt@kms_psr@fbc-psr2-cursor-blt@edp-1: - shard-lnl: [PASS][5] -> [FAIL][6] +5 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01: - shard-dg2-set2: NOTRUN -> [ABORT][7] +1 other test abort [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-435/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html * igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-imm: - shard-lnl: [PASS][8] -> [DMESG-WARN][9] +1 other test dmesg-warn [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-imm.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-imm.html #### Warnings #### * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][10] ([Intel XE#651]) -> [SKIP][11] +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][12] ([Intel XE#653]) -> [SKIP][13] +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2-set2: [SKIP][14] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][15] [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: [SKIP][16] ([Intel XE#1489]) -> [SKIP][17] [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-466/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr@pr-primary-page-flip: - shard-dg2-set2: [SKIP][18] ([Intel XE#2850]) -> [SKIP][19] +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-436/igt@kms_psr@pr-primary-page-flip.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_psr@pr-primary-page-flip.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][20] ([Intel XE#455]) -> [SKIP][21] +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-432/igt@kms_vrr@flip-dpms.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_vrr@flip-dpms.html * igt@xe_ccs@suspend-resume: - shard-lnl: [INCOMPLETE][22] ([Intel XE#2760]) -> [DMESG-WARN][23] [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@xe_ccs@suspend-resume.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@xe_ccs@suspend-resume.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs: - {shard-bmg}: [SKIP][24] ([Intel XE#2887]) -> [SKIP][25] [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html * igt@kms_cursor_crc@cursor-random-max-size: - {shard-bmg}: [SKIP][26] ([Intel XE#2320]) -> [SKIP][27] [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-5/igt@kms_cursor_crc@cursor-random-max-size.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3: - {shard-bmg}: [PASS][28] -> [INCOMPLETE][29] +4 other tests incomplete [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt: - {shard-bmg}: [FAIL][30] ([Intel XE#2333]) -> [SKIP][31] [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt: - {shard-bmg}: [SKIP][32] ([Intel XE#2311]) -> [SKIP][33] +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - {shard-bmg}: NOTRUN -> [SKIP][34] +8 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - {shard-bmg}: [SKIP][35] ([Intel XE#2313]) -> [SKIP][36] +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_joiner@basic-force-big-joiner@single: - {shard-bmg}: NOTRUN -> [FAIL][37] +2 other tests fail [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@kms_joiner@basic-force-big-joiner@single.html * igt@kms_plane_cursor@primary: - {shard-bmg}: [PASS][38] -> [FAIL][39] [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-6/igt@kms_plane_cursor@primary.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@kms_plane_cursor@primary.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - {shard-bmg}: [SKIP][40] ([Intel XE#2763]) -> [SKIP][41] [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - {shard-bmg}: [SKIP][42] ([Intel XE#1489]) -> [SKIP][43] [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-2/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr@pr-sprite-render: - {shard-bmg}: [SKIP][44] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][45] +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-4/igt@kms_psr@pr-sprite-render.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@kms_psr@pr-sprite-render.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - {shard-bmg}: [SKIP][46] ([Intel XE#2413]) -> [SKIP][47] [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_vrr@flip-dpms: - {shard-bmg}: [SKIP][48] ([Intel XE#1499]) -> [SKIP][49] [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-4/igt@kms_vrr@flip-dpms.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@kms_vrr@flip-dpms.html * igt@testdisplay: - {shard-bmg}: [PASS][50] -> [SKIP][51] +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-7/igt@testdisplay.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@testdisplay.html * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01: - {shard-bmg}: NOTRUN -> [ABORT][52] +1 other test abort [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-2/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html Known issues ------------ Here are the changes found in XEIGTPW_11855_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#801]) +23 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-435/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#1701]) +1 other test fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: [PASS][56] -> [SKIP][57] ([Intel XE#2351]) +8 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#316]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1407]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#619]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1124]) +9 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-463/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1467]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1124]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#2351]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#367]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2191]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#787]) +62 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2907]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#829]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][71] -> [INCOMPLETE][72] ([Intel XE#1195]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2887]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#314]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-463/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#306]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-433/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_edid@vga-edid-read: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#373]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#373]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#307]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-463/igt@kms_content_protection@dp-mst-type-0.html - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#307]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-1: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#599]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-7/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#308]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1413]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-4/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#309]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [PASS][84] -> [FAIL][85] ([Intel XE#1475]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1421]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@dpms-vs-vblank-race: - shard-lnl: [PASS][87] -> [SKIP][88] ([Intel XE#2423]) +10 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-6/igt@kms_flip@dpms-vs-vblank-race.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_flip@dpms-vs-vblank-race.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-lnl: [PASS][89] -> [FAIL][90] ([Intel XE#886]) +1 other test fail [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-8/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-1/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [PASS][91] -> [INCOMPLETE][92] ([Intel XE#2049] / [Intel XE#2597]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-lnl: [PASS][93] -> [INCOMPLETE][94] ([Intel XE#2049]) +1 other test incomplete [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@kms_flip@flip-vs-suspend-interruptible.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp4: - shard-dg2-set2: [PASS][95] -> [INCOMPLETE][96] ([Intel XE#2597]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1397] / [Intel XE#1745]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1397]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1401]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#651]) +25 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][102] -> [SKIP][103] ([Intel XE#783]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#651]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#656]) +11 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#653]) +26 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_plane@plane-position-covered@pipe-b-plane-4: - shard-lnl: [PASS][107] -> [DMESG-WARN][108] ([Intel XE#324]) +2 other tests dmesg-warn [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html * igt@kms_plane@plane-position-hole@pipe-a-plane-2: - shard-lnl: [PASS][109] -> [DMESG-FAIL][110] ([Intel XE#324]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@kms_plane@plane-position-hole@pipe-a-plane-2.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-a-plane-2.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [PASS][111] -> [FAIL][112] ([Intel XE#616]) +1 other test fail [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-466/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#2763]) +5 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2763]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-436/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-436/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#1122]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-434/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1129]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@universal-planes: - shard-lnl: [PASS][118] -> [INCOMPLETE][119] ([Intel XE#1620] / [Intel XE#2864]) +1 other test incomplete [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@kms_pm_rpm@universal-planes.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-1/igt@kms_pm_rpm@universal-planes.html * igt@kms_pm_rpm@universal-planes@plane-41: - shard-lnl: [PASS][120] -> [DMESG-FAIL][121] ([Intel XE#1620]) +1 other test dmesg-fail [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@kms_pm_rpm@universal-planes@plane-41.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-1/igt@kms_pm_rpm@universal-planes@plane-41.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2893]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1489]) +7 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1128]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-sprite-plane-move: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1406]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-3/igt@kms_psr@fbc-pr-sprite-plane-move.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2850]) +15 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-433/igt@kms_psr@psr-dpms.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#327]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1437]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-7/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1127]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1500]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#455]) +14 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-435/igt@kms_vrr@flipline.html - shard-lnl: NOTRUN -> [FAIL][132] ([Intel XE#2443]) +1 other test fail [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-3/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2168]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-436/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1499] / [Intel XE#599]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#756]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-432/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#1091] / [Intel XE#2849]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#1123]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_create@create-big-vram: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1062]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-4/igt@xe_create@create-big-vram.html * igt@xe_eudebug@multigpu-basic-client: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1130]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@xe_eudebug@multigpu-basic-client.html * igt@xe_eudebug_online@debugger-reopen: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#2905]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-4/igt@xe_eudebug_online@debugger-reopen.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2905]) +7 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-433/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#688]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1392]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#288]) +21 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-463/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [PASS][146] -> [TIMEOUT][147] ([Intel XE#2105]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-466/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: [PASS][148] -> [DMESG-FAIL][149] ([Intel XE#1620] / [Intel XE#1760]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@xe_gt_freq@freq_reset_multiple.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][150] ([Intel XE#1999]) +2 other tests fail [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#560]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-434/igt@xe_media_fill@media-fill.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [PASS][152] -> [FAIL][153] ([Intel XE#1204] / [Intel XE#2136]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-435/igt@xe_module_load@reload-no-display.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@xe_module_load@reload-no-display.html * igt@xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#2541]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-432/igt@xe_oa@whitelisted-registers-userspace-config.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#979]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#2284]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-432/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-435/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s2idle-multiple-execs: - shard-dg2-set2: NOTRUN -> [ABORT][158] ([Intel XE#1358]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-463/igt@xe_pm@s2idle-multiple-execs.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [PASS][159] -> [ABORT][160] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-1/igt@xe_pm@s4-basic-exec.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@xe_pm@s4-basic-exec.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#2284] / [Intel XE#366]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][162] -> [FAIL][163] ([Intel XE#958]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#944]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_vm@mmap-style-bind-userptr-one-partial: - shard-lnl: [PASS][165] -> [SKIP][166] ([Intel XE#1130]) +19 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-8/igt@xe_vm@mmap-style-bind-userptr-one-partial.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@xe_vm@mmap-style-bind-userptr-one-partial.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [FAIL][167] ([Intel XE#911]) -> [PASS][168] +3 other tests pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-lnl: [FAIL][169] ([Intel XE#1426]) -> [PASS][170] +1 other test pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-lnl: [FAIL][171] ([Intel XE#1659]) -> [PASS][172] +2 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][173] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - {shard-bmg}: [DMESG-WARN][175] ([Intel XE#2791] / [Intel XE#877]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [FAIL][177] -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][179] ([Intel XE#886]) -> [PASS][180] +10 other tests pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][181] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-432/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2-set2: [INCOMPLETE][183] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-463/igt@kms_flip@flip-vs-suspend@d-dp4.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-432/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_plane@plane-position-covered@pipe-b-plane-3: - shard-lnl: [DMESG-WARN][185] ([Intel XE#324]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-3.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@kms_plane@plane-position-covered@pipe-b-plane-3.html * igt@kms_plane@plane-position-hole@pipe-a-plane-4: - shard-lnl: [DMESG-FAIL][187] ([Intel XE#324]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-a-plane-4.html * igt@kms_plane_lowres@tiling-4: - shard-dg2-set2: [INCOMPLETE][189] ([Intel XE#1195]) -> [PASS][190] +2 other tests pass [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-466/igt@kms_plane_lowres@tiling-4.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-432/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-4@pipe-a-dp-2: - {shard-bmg}: [INCOMPLETE][191] -> [PASS][192] +3 other tests pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-2/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-6/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-lnl: [FAIL][193] -> [PASS][194] +1 other test pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-8/igt@kms_psr@psr2-cursor-plane-onoff.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-6/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system: - shard-lnl: [INCOMPLETE][195] ([Intel XE#2760]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-system-system.html * igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue: - shard-lnl: [FAIL][197] ([Intel XE#2667]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: [TIMEOUT][199] ([Intel XE#1473]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-435/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_exec_threads@threads-mixed-rebind: - shard-lnl: [TIMEOUT][201] -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@xe_exec_threads@threads-mixed-rebind.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-7/igt@xe_exec_threads@threads-mixed-rebind.html * igt@xe_live_ktest@xe_dma_buf: - shard-lnl: [SKIP][203] ([Intel XE#1192]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-2/igt@xe_live_ktest@xe_dma_buf.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-4/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_oa@oa-exponents: - shard-lnl: [FAIL][205] ([Intel XE#2723]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@xe_oa@oa-exponents.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-2/igt@xe_oa@oa-exponents.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-lnl: [ABORT][207] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-3/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_spin_batch@spin-batch: - {shard-bmg}: [DMESG-WARN][209] ([Intel XE#877]) -> [PASS][210] +6 other tests pass [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-1/igt@xe_spin_batch@spin-batch.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-7/igt@xe_spin_batch@spin-batch.html * igt@xe_waitfence@invalid-flag: - shard-lnl: [INCOMPLETE][211] -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@xe_waitfence@invalid-flag.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-7/igt@xe_waitfence@invalid-flag.html * igt@xe_wedged@wedged-at-any-timeout: - {shard-bmg}: [FAIL][213] ([Intel XE#2780]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-bmg-8/igt@xe_wedged@wedged-at-any-timeout.html - shard-lnl: [DMESG-WARN][215] ([Intel XE#1760]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@xe_wedged@wedged-at-any-timeout.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-3/igt@xe_wedged@wedged-at-any-timeout.html #### Warnings #### * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-lnl: [SKIP][217] ([Intel XE#1407]) -> [SKIP][218] ([Intel XE#2351]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][219] ([Intel XE#316]) -> [SKIP][220] ([Intel XE#829]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-464/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-lnl: [SKIP][221] ([Intel XE#1124]) -> [SKIP][222] ([Intel XE#2351]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][223] ([Intel XE#1124]) -> [SKIP][224] ([Intel XE#829]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@linear-tiling-3-displays-1920x1080p: - shard-lnl: [SKIP][225] ([Intel XE#367]) -> [SKIP][226] ([Intel XE#2423]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-3/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][227] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][228] ([Intel XE#829]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-464/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-lnl: [SKIP][229] ([Intel XE#2887]) -> [SKIP][230] ([Intel XE#2351]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-8/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][231] ([Intel XE#1195]) -> [INCOMPLETE][232] ([Intel XE#1195] / [Intel XE#1727]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-lnl: [SKIP][233] ([Intel XE#373]) -> [SKIP][234] ([Intel XE#2423]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@kms_chamelium_audio@hdmi-audio-edid.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_content_protection@uevent: - shard-lnl: [SKIP][235] ([Intel XE#599]) -> [SKIP][236] ([Intel XE#2423]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@kms_content_protection@uevent.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-lnl: [SKIP][237] ([Intel XE#1424]) -> [SKIP][238] ([Intel XE#2423]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-lnl: [SKIP][239] ([Intel XE#1421]) -> [SKIP][240] ([Intel XE#2423]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: [SKIP][241] ([Intel XE#1397] / [Intel XE#1745]) -> [SKIP][242] ([Intel XE#2351]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-lnl: [SKIP][243] ([Intel XE#651]) -> [SKIP][244] ([Intel XE#2351]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-suspend.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-lnl: [SKIP][245] ([Intel XE#656]) -> [SKIP][246] ([Intel XE#2351]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_plane_cursor@primary: - shard-dg2-set2: [FAIL][247] ([Intel XE#616]) -> [FAIL][248] ([Intel XE#581]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-dg2-436/igt@kms_plane_cursor@primary.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-dg2-464/igt@kms_plane_cursor@primary.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-lnl: [SKIP][249] ([Intel XE#1131]) -> [SKIP][250] ([Intel XE#2351]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-4/igt@kms_pm_dc@dc5-dpms-negative.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: [DMESG-FAIL][251] ([Intel XE#1620]) -> [FAIL][252] ([Intel XE#2029]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-7/igt@kms_pm_dc@deep-pkgc.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr@pr-no-drrs: - shard-lnl: [SKIP][253] ([Intel XE#1406]) -> [SKIP][254] ([Intel XE#2351]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-2/igt@kms_psr@pr-no-drrs.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr2-sprite-plane-move: - shard-lnl: [FAIL][255] ([Intel XE#1649]) -> [SKIP][256] ([Intel XE#2351]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-2/igt@kms_psr@psr2-sprite-plane-move.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@kms_psr@psr2-sprite-plane-move.html * igt@xe_eudebug_online@single-step-one: - shard-lnl: [SKIP][257] ([Intel XE#2905]) -> [SKIP][258] ([Intel XE#1130]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-8/igt@xe_eudebug_online@single-step-one.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@xe_eudebug_online@single-step-one.html * igt@xe_evict@evict-small: - shard-lnl: [SKIP][259] ([Intel XE#688]) -> [SKIP][260] ([Intel XE#1130]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-1/igt@xe_evict@evict-small.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@xe_evict@evict-small.html * igt@xe_pm@vram-d3cold-threshold: - shard-lnl: [SKIP][261] ([Intel XE#579]) -> [SKIP][262] ([Intel XE#1130]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8048/shard-lnl-1/igt@xe_pm@vram-d3cold-threshold.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/shard-lnl-8/igt@xe_pm@vram-d3cold-threshold.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [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#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [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#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [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#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [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#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [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#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [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#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [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#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [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#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329 [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#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667 [Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2760 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2780 [Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791 [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#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [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#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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#581]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/581 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [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#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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#801]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/801 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [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#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8048 -> IGTPW_11855 * Linux: xe-2001-fcdbbdcd11d425434efc837037141c9dfb0fcdec -> xe-2003-ccd6d671492e28746e9ed8e88bd6d25b6f3295dd IGTPW_11855: 11855 IGT_8048: 4ade707fbd17f6300b8c444e2d86216005f199e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2001-fcdbbdcd11d425434efc837037141c9dfb0fcdec: fcdbbdcd11d425434efc837037141c9dfb0fcdec xe-2003-ccd6d671492e28746e9ed8e88bd6d25b6f3295dd: ccd6d671492e28746e9ed8e88bd6d25b6f3295dd == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11855/index.html [-- Attachment #2: Type: text/html, Size: 76061 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Fi.CI.IGT: failure for Fix xe_eudebug_online@interrupt-other test (rev2) 2024-10-02 11:29 [PATCH v2 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski ` (4 preceding siblings ...) 2024-10-02 14:49 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-10-03 12:06 ` Patchwork 5 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2024-10-03 12:06 UTC (permalink / raw) To: Dominik Karol Piątkowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100269 bytes --] == Series Details == Series: Fix xe_eudebug_online@interrupt-other test (rev2) URL : https://patchwork.freedesktop.org/series/139158/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15471_full -> IGTPW_11855_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11855_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11855_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/index.html Participating hosts (8 -> 9) ------------------------------ Additional (2): shard-dg2-set2 shard-glk-0 Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11855_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_balancer@nop: - shard-mtlp: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-mtlp-8/igt@gem_exec_balancer@nop.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-4/igt@gem_exec_balancer@nop.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][3] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [PASS][4] -> [FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][6] +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-18/igt@kms_joiner@invalid-modeset-ultra-joiner.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_joiner@basic-big-joiner: - {shard-tglu-1}: NOTRUN -> [SKIP][9] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html Known issues ------------ Here are the changes found in IGTPW_11855_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#8411]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8411]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-1/igt@api_intel_bb@object-reloc-purge-cache.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-18/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][15] ([i915#7297]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_engines@invalid-engines: - shard-rkl: NOTRUN -> [FAIL][16] ([i915#12027]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@engines-cleanup: - shard-snb: NOTRUN -> [SKIP][17] ([i915#1099]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-snb4/igt@gem_ctx_persistence@engines-cleanup.html * igt@gem_ctx_persistence@hostile: - shard-mtlp: [PASS][18] -> [FAIL][19] ([i915#11980]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-mtlp-5/igt@gem_ctx_persistence@hostile.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-1/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-17/igt@gem_ctx_sseu@mmap-args.html - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][23] -> [ABORT][24] ([i915#7975] / [i915#8213]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg1-12/igt@gem_eio@hibernate.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-14/igt@gem_eio@hibernate.html - shard-rkl: NOTRUN -> [ABORT][25] ([i915#7975] / [i915#8213]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-5/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg1: NOTRUN -> [FAIL][26] ([i915#5784]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-13/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][27] -> [FAIL][28] ([i915#5784]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg1-19/igt@gem_eio@unwedge-stress.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#6334]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#6344]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-12/igt@gem_exec_fair@basic-none.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4473] / [i915#4771]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-2/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][33] ([i915#2842]) +1 other test fail [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][34] ([i915#2842]) +4 other tests fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@gem_exec_fair@basic-pace-solo.html - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-19/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-14/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4812]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-6/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +6 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-read: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +8 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-18/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +6 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_schedule@pi-common@vcs0: - shard-rkl: NOTRUN -> [FAIL][44] ([i915#12296]) +4 other tests fail [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-6/igt@gem_exec_schedule@pi-common@vcs0.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613] / [i915#7582]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-random: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-4/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-4/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic-short: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-2/igt@gem_mmap_gtt@basic-short.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4077]) +8 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) +6 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-12/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4083]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-6/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4083]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-14/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_pread@bench: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#3282]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@gem_pread@bench.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3282]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@gem_pread@snoop.html - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3282]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-5/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-17/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4270]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-6/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-2.html - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4270]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-off-2.html - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4270]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-1/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#5190] / [i915#8428]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_tiled_pread_basic: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4079]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-12/igt@gem_tiled_pread_basic.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4879]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-13/igt@gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4879]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-8/igt@gem_unfence_active_buffers.html - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4879]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-11/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3297]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-14/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#3297]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-2/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3297]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4958]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#4958]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#2527]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-2/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#2527] / [i915#2856]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-2/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#2527]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-13/igt@gen9_exec_parse@bb-secure.html * igt@i915_module_load@load: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#6227]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-9/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][79] -> [ABORT][80] ([i915#10887] / [i915#9820]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [PASS][81] -> [ABORT][82] ([i915#10131] / [i915#10887] / [i915#9820]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#8399]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#8399]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-2/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8437]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-7/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#7984]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-5/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#6245]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-18/igt@i915_query@hwconfig_table.html * igt@i915_selftest@mock: - shard-dg2: NOTRUN -> [DMESG-WARN][88] ([i915#1982] / [i915#9311]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@i915_selftest@mock.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][89] ([i915#9311]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@i915_selftest@mock@memory_region.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#7707]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-7/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#5190]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3826]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-mtlp: [PASS][93] -> [FAIL][94] ([i915#10991]) +1 other test fail [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-5/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#8709]) +7 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-9/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#8709]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#8709]) +7 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-16/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][98] ([i915#1769]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][99] ([i915#1769] / [i915#3555]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][100] ([i915#1769] / [i915#3555]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][101] ([i915#1769] / [i915#3555]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5286]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#5286]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: [PASS][104] -> [FAIL][105] ([i915#5138]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#5286]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][107] +7 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-7/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#3638]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][109] ([i915#3638]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-15/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5190]) +5 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#6095]) +54 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#10307] / [i915#6095]) +159 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#12313]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#12313]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-19/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#12313]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#6095]) +121 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#6095]) +78 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#6095]) +24 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#12313]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#12313]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#7213] / [i915#9010]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-2/igt@kms_cdclk@mode-transition.html - shard-dg2: NOTRUN -> [SKIP][124] ([i915#11616] / [i915#7213]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-1/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#7213]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#3742]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-6/igt@kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3742]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-15/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#7828]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#7828]) +7 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-1/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html - shard-dg1: NOTRUN -> [SKIP][130] ([i915#7828]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#7828]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#7828]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-2/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#3116] / [i915#3299]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-5/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#9424]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#9433]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-17/igt@kms_content_protection@mei-interface.html - shard-tglu: NOTRUN -> [SKIP][136] ([i915#6944] / [i915#9424]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-9/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#8814]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#3555]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#11453]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#3555]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-size-change: - shard-dg1: [PASS][141] -> [DMESG-WARN][142] ([i915#4423]) +4 other tests dmesg-warn [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg1-14/igt@kms_cursor_crc@cursor-size-change.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-13/igt@kms_cursor_crc@cursor-size-change.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#11453]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#9809]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#4103]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4103] / [i915#4213]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#4103] / [i915#4213]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#8588]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#8812]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#3840]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-4/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#3840]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3840]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3840]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][154] ([i915#3840]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3840]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#3840]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-3/igt@kms_dsc@dsc-with-formats.html - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#3840]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_dsc@dsc-with-formats.html - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#3840]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-13/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc: - shard-dg2: [PASS][159] -> [SKIP][160] ([i915#1849]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-1/igt@kms_fbcon_fbt@fbc.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_fbcon_fbt@fbc.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#1839]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#658]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-1/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#3637]) +7 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-9/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#9934]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-12/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#3637] / [i915#3966]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#8381]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-15/igt@kms_flip@2x-flip-vs-fences.html - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#8381]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][168] ([i915#8381]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-snb: [PASS][169] -> [FAIL][170] ([i915#2122]) +1 other test fail [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][171] +25 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@blocking-absolute-wf_vblank: - shard-dg2: [PASS][172] -> [SKIP][173] ([i915#5354]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-3/igt@kms_flip@blocking-absolute-wf_vblank.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_flip@blocking-absolute-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@c-hdmi-a1: - shard-tglu: [PASS][174] -> [FAIL][175] ([i915#2122]) +7 other tests fail [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-tglu-6/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-4/igt@kms_flip@blocking-wf_vblank@c-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-mtlp: [PASS][176] -> [FAIL][177] ([i915#2122]) +2 other tests fail [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-mtlp-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1: - shard-mtlp: [PASS][178] -> [FAIL][179] ([i915#11989]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-mtlp-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-dg2: [PASS][180] -> [FAIL][181] ([i915#2122]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-4/igt@kms_flip@plain-flip-ts-check-interruptible.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-rkl: NOTRUN -> [FAIL][182] ([i915#11989] / [i915#2122]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-dg1: [PASS][183] -> [FAIL][184] ([i915#11989] / [i915#2122]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg1-17/igt@kms_flip@plain-flip-ts-check-interruptible.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-19/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-dp3: - shard-dg2: NOTRUN -> [FAIL][185] ([i915#2122]) +2 other tests fail [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_flip@plain-flip-ts-check-interruptible@b-dp3.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1: - shard-rkl: NOTRUN -> [FAIL][186] ([i915#2122]) +1 other test fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a4: - shard-dg1: [PASS][187] -> [FAIL][188] ([i915#2122]) +1 other test fail [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg1-17/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a4.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-19/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2: [PASS][190] -> [SKIP][191] ([i915#3555]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8810]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672]) +3 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555]) +5 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#2672]) +5 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8813]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#3555]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#2672]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [PASS][201] -> [FAIL][202] ([i915#6880]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: [PASS][203] -> [SKIP][204] +8 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][205] ([i915#5439]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][206] +24 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-snb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#8708]) +14 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#5354]) +22 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][209] +22 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#8708]) +14 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3023]) +21 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#3458]) +10 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#1825]) +10 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8708]) +4 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#1825]) +31 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][216] +65 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#3458]) +8 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_hdr@bpc-switch: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle-dpms: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-2/igt@kms_hdr@static-toggle-dpms.html * igt@kms_lease@lease-revoke: - shard-dg2: [PASS][220] -> [SKIP][221] ([i915#9197]) +7 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-10/igt@kms_lease@lease-revoke.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_lease@lease-revoke.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][222] +12 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane@plane-panning-top-left: - shard-dg2: [PASS][223] -> [SKIP][224] ([i915#8825]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-5/igt@kms_plane@plane-panning-top-left.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_plane@plane-panning-top-left.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-dg2: [PASS][225] -> [SKIP][226] ([i915#7294]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-11/igt@kms_plane_alpha_blend@alpha-basic.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#12247]) +8 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2: [PASS][228] -> [SKIP][229] ([i915#3555] / [i915#8152] / [i915#9423]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d: - shard-dg2: [PASS][230] -> [SKIP][231] ([i915#8152]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#3555]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#12247]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-dg2: [PASS][234] -> [SKIP][235] ([i915#8152] / [i915#9423]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c: - shard-dg2: [PASS][236] -> [SKIP][237] ([i915#12247]) +5 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#12247] / [i915#6953]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#12247] / [i915#6953] / [i915#9423]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][240] ([i915#12247] / [i915#6953]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#12247] / [i915#6953]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#12247]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#12247]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#12247] / [i915#3555] / [i915#6953]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#12247]) +12 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#9812]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-9/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#5978]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][248] ([i915#3361]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#3361]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-19/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#10139]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-2/igt@kms_pm_dc@dc6-psr.html - shard-dg2: NOTRUN -> [SKIP][251] ([i915#9685]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-1/igt@kms_pm_dc@dc6-psr.html - shard-dg1: NOTRUN -> [SKIP][252] ([i915#9685]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-12/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][253] -> [SKIP][254] ([i915#4281]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg1: NOTRUN -> [DMESG-WARN][255] ([i915#4423]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-13/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][256] -> [SKIP][257] ([i915#9519]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][258] -> [SKIP][259] ([i915#9519]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#6524]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-5/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#12316]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#11520]) +5 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#11520]) +4 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#11520]) +5 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#11520]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-16/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#9683]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-basic: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#9688]) +11 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-6/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@fbc-pr-primary-render: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#1072] / [i915#9732]) +12 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_psr@fbc-pr-primary-render.html * igt@kms_psr@fbc-psr-cursor-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#9732]) +15 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-4/igt@kms_psr@fbc-psr-cursor-mmap-gtt.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#1072] / [i915#9732]) +16 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#1072] / [i915#9732]) +17 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-16/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#4077] / [i915#9688]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-7/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#5289]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#5289]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#5289]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][276] ([i915#5289]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#9197]) +5 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#3555]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-7/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-a-dp-3: - shard-dg2: [PASS][279] -> [FAIL][280] ([i915#5465]) +2 other tests fail [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-10/igt@kms_setmode@basic@pipe-a-dp-3.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_setmode@basic@pipe-a-dp-3.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#8623]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#8623]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#9906]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#9906]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#2437]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#2437] / [i915#9412]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#2436]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-1/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][288] ([i915#2436]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#3291] / [i915#3708]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-7/igt@prime_vgem@basic-fence-read.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#3708]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-16/igt@prime_vgem@basic-fence-read.html - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3708]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-4/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#3708]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#9917]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-tglu: NOTRUN -> [FAIL][294] ([i915#9781]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-3/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@fbdev@pan: - shard-dg2: [SKIP][295] ([i915#2582]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@fbdev@pan.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-3/igt@fbdev@pan.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][297] ([i915#7297]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_engines@invalid-engines: - shard-mtlp: [FAIL][299] ([i915#12027]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-mtlp-5/igt@gem_ctx_engines@invalid-engines.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-7/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@hostile: - shard-tglu: [FAIL][301] ([i915#11980]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-tglu-6/igt@gem_ctx_persistence@hostile.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-tglu-2/igt@gem_ctx_persistence@hostile.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg2: [INCOMPLETE][303] -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-1/igt@i915_pm_rpm@system-suspend-execbuf.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-11/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-snb: [FAIL][305] -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-snb6/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][307] ([i915#2122]) -> [PASS][308] +1 other test pass [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-snb2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-snb1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2: [SKIP][309] ([i915#3555]) -> [PASS][310] +2 other tests pass [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [FAIL][311] ([i915#6880]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: [SKIP][313] ([i915#5354]) -> [PASS][314] +16 other tests pass [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][315] ([i915#3555] / [i915#8228]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_plane@plane-position-hole: - shard-dg2: [SKIP][317] ([i915#8825]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_plane@plane-position-hole.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-3/igt@kms_plane@plane-position-hole.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d: - shard-dg2: [SKIP][319] ([i915#12247] / [i915#8152]) -> [PASS][320] +3 other tests pass [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers: - shard-dg2: [SKIP][321] ([i915#8152] / [i915#9423]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-dg2: [SKIP][323] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][324] +1 other test pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a: - shard-dg2: [SKIP][325] ([i915#12247]) -> [PASS][326] +17 other tests pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-dg2: [SKIP][327] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][328] +1 other test pass [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2: [SKIP][329] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d: - shard-dg2: [SKIP][331] ([i915#8152]) -> [PASS][332] +1 other test pass [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-dg2: [SKIP][333] ([i915#9293]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][335] ([i915#9340]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@cursor: - shard-dg2: [SKIP][337] ([i915#1849]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_pm_rpm@cursor.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][339] ([i915#9519]) -> [PASS][340] +1 other test pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_properties@crtc-properties-legacy: - shard-dg2: [SKIP][341] ([i915#11521]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_properties@crtc-properties-legacy.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-1/igt@kms_properties@crtc-properties-legacy.html * igt@kms_psr@psr2-dpms: - shard-mtlp: [FAIL][343] -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-mtlp-8/igt@kms_psr@psr2-dpms.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-7/igt@kms_psr@psr2-dpms.html * igt@kms_psr@psr2-dpms@edp-1: - shard-mtlp: [FAIL][345] ([i915#10105]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-mtlp-8/igt@kms_psr@psr2-dpms@edp-1.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-mtlp-7/igt@kms_psr@psr2-dpms@edp-1.html * igt@kms_vblank@ts-continuation-modeset: - shard-dg2: [SKIP][347] ([i915#9197]) -> [PASS][348] +30 other tests pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_vblank@ts-continuation-modeset.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_vblank@ts-continuation-modeset.html * igt@prime_mmap_kms@buffer-sharing: - shard-dg2: [SKIP][349] -> [PASS][350] +1 other test pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@prime_mmap_kms@buffer-sharing.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@prime_mmap_kms@buffer-sharing.html #### Warnings #### * igt@i915_selftest@mock: - shard-dg1: [DMESG-WARN][351] ([i915#1982] / [i915#9311]) -> [DMESG-WARN][352] ([i915#9311]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg1-15/igt@i915_selftest@mock.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-15/igt@i915_selftest@mock.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: [SKIP][353] ([i915#9197]) -> [SKIP][354] ([i915#1769] / [i915#3555]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: [SKIP][355] ([i915#9197]) -> [SKIP][356] +5 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-dg2: [SKIP][357] ([i915#4538] / [i915#5190]) -> [SKIP][358] ([i915#5190] / [i915#9197]) +5 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-5/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: [SKIP][359] ([i915#5190] / [i915#9197]) -> [SKIP][360] ([i915#4538] / [i915#5190]) +9 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-3/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2: [SKIP][361] ([i915#9197]) -> [SKIP][362] ([i915#12313]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-dg2: [SKIP][363] ([i915#9197]) -> [SKIP][364] ([i915#10307] / [i915#6095]) +8 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-dg2: [SKIP][365] ([i915#10307] / [i915#6095]) -> [SKIP][366] ([i915#9197]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: [SKIP][367] ([i915#9197]) -> [SKIP][368] ([i915#11616] / [i915#7213]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-11/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: [SKIP][369] ([i915#3299]) -> [SKIP][370] ([i915#9197]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-4/igt@kms_content_protection@dp-mst-lic-type-1.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: [SKIP][371] ([i915#9197]) -> [SKIP][372] ([i915#3299]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][373] ([i915#9197]) -> [SKIP][374] ([i915#7118] / [i915#7162] / [i915#9424]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_content_protection@type1.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_content_protection@type1.html - shard-snb: [INCOMPLETE][375] ([i915#8816]) -> [SKIP][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-snb1/igt@kms_content_protection@type1.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-snb2/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: [SKIP][377] ([i915#9197]) -> [SKIP][378] ([i915#3555]) +3 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: [SKIP][379] ([i915#9197]) -> [SKIP][380] ([i915#11453]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-512x170.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-dg2: [SKIP][381] ([i915#5354]) -> [SKIP][382] ([i915#9197]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: [SKIP][383] ([i915#9197]) -> [SKIP][384] ([i915#5354]) +2 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-1/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-dg1: [SKIP][385] -> [SKIP][386] ([i915#4423]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg1-14/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-19/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: [SKIP][387] ([i915#9197]) -> [SKIP][388] ([i915#4103] / [i915#4213]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: [SKIP][389] ([i915#9197]) -> [SKIP][390] ([i915#8588]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_display_modes@mst-extended-mode-negative.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [SKIP][391] ([i915#3555]) -> [SKIP][392] ([i915#9197]) +3 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: [SKIP][393] ([i915#9197]) -> [SKIP][394] ([i915#3840] / [i915#9688]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: [SKIP][395] ([i915#9197]) -> [SKIP][396] ([i915#3555] / [i915#3840]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_dsc@dsc-with-bpc.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-10/igt@kms_dsc@dsc-with-bpc.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2: [SKIP][397] ([i915#3555]) -> [SKIP][398] ([i915#2672] / [i915#3555]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: [SKIP][399] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][400] ([i915#3555] / [i915#5190]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2: [SKIP][401] ([i915#3555] / [i915#5190]) -> [SKIP][402] ([i915#2672] / [i915#3555] / [i915#5190]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2: [SKIP][403] ([i915#8708]) -> [SKIP][404] ([i915#5354]) +5 other tests skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: [SKIP][405] ([i915#3458]) -> [SKIP][406] ([i915#5354]) +4 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][407] ([i915#5354]) -> [SKIP][408] ([i915#3458]) +9 other tests skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: [SKIP][409] ([i915#5354]) -> [SKIP][410] ([i915#8708]) +9 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2: [SKIP][411] ([i915#3458]) -> [SKIP][412] ([i915#10433] / [i915#3458]) +1 other test skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-slowdraw.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: [SKIP][413] ([i915#9197]) -> [SKIP][414] ([i915#3555] / [i915#8228]) +1 other test skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_hdr@static-toggle-dpms.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@kms_hdr@static-toggle-dpms.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][415] ([i915#4070] / [i915#4816]) -> [SKIP][416] ([i915#4816]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: [SKIP][417] ([i915#9197]) -> [SKIP][418] ([i915#8821]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: [SKIP][419] ([i915#12247] / [i915#6953] / [i915#9423]) -> [SKIP][420] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d: - shard-dg2: [SKIP][421] ([i915#12247]) -> [SKIP][422] ([i915#12247] / [i915#8152]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: [SKIP][423] ([i915#5354]) -> [SKIP][424] ([i915#4423] / [i915#5354]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg1-15/igt@kms_pm_backlight@basic-brightness.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-17/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_rpm@pm-tiling: - shard-dg1: [SKIP][425] ([i915#4077] / [i915#4423]) -> [SKIP][426] ([i915#4077]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg1-15/igt@kms_pm_rpm@pm-tiling.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-19/igt@kms_pm_rpm@pm-tiling.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-dg1: [SKIP][427] ([i915#11520]) -> [SKIP][428] ([i915#11520] / [i915#4423]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg1-17/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-16/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr@fbc-psr-cursor-plane-onoff: - shard-dg1: [SKIP][429] ([i915#1072] / [i915#9732]) -> [SKIP][430] ([i915#1072] / [i915#4423] / [i915#9732]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg1-16/igt@kms_psr@fbc-psr-cursor-plane-onoff.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg1-19/igt@kms_psr@fbc-psr-cursor-plane-onoff.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: [SKIP][431] ([i915#5190] / [i915#9197]) -> [SKIP][432] ([i915#5190]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: [SKIP][433] ([i915#11131] / [i915#5190]) -> [SKIP][434] ([i915#5190] / [i915#9197]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: [SKIP][435] ([i915#9197]) -> [SKIP][436] ([i915#8623]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@max-min: - shard-dg2: [SKIP][437] ([i915#9197]) -> [SKIP][438] ([i915#9906]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15471/shard-dg2-2/igt@kms_vrr@max-min.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/shard-dg2-11/igt@kms_vrr@max-min.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10105]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10105 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10139 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991 [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/iss == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11855/index.html [-- Attachment #2: Type: text/html, Size: 112120 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-10-07 11:45 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-02 11:29 [PATCH v2 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski 2024-10-02 11:29 ` [PATCH v2 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers Dominik Karol Piątkowski 2024-10-03 13:58 ` Grzegorzek, Dominik 2024-10-07 4:03 ` Zbigniew Kempczyński 2024-10-07 8:15 ` Zbigniew Kempczyński 2024-10-07 11:45 ` Grzegorzek, Dominik 2024-10-02 11:29 ` [PATCH v2 i-g-t 2/2] tests/xe_eudebug_online: Adjust interrupt-other test Dominik Karol Piątkowski 2024-10-03 13:49 ` Grzegorzek, Dominik 2024-10-04 6:01 ` Piatkowski, Dominik Karol 2024-10-02 13:05 ` ✓ CI.xeBAT: success for Fix xe_eudebug_online@interrupt-other test (rev2) Patchwork 2024-10-02 13:13 ` ✓ Fi.CI.BAT: " Patchwork 2024-10-02 14:49 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-03 12:06 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox