* [PATCH v3 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test
@ 2024-10-07 10:27 Dominik Karol Piątkowski
2024-10-07 10:27 ` [PATCH v3 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers Dominik Karol Piątkowski
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Dominik Karol Piątkowski @ 2024-10-07 10:27 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
v3:
-Apply nits from Dominik Grzegorzek
(patch "tests/xe_eudebug_online: Adjust interrupt-other test")
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 | 39 ++++++++++++++-
3 files changed, 127 insertions(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH v3 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers 2024-10-07 10:27 [PATCH v3 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski @ 2024-10-07 10:27 ` Dominik Karol Piątkowski 2024-10-07 11:46 ` Grzegorzek, Dominik 2024-10-11 10:48 ` Kamil Konieczny 2024-10-07 10:27 ` [PATCH v3 i-g-t 2/2] tests/xe_eudebug_online: Adjust interrupt-other test Dominik Karol Piątkowski ` (4 subsequent siblings) 5 siblings, 2 replies; 9+ messages in thread From: Dominik Karol Piątkowski @ 2024-10-07 10:27 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 b7746a1ec..26a3aa31f 100644 --- a/lib/igt_sysfs.c +++ b/lib/igt_sysfs.c @@ -1414,3 +1414,88 @@ int xe_sysfs_driver_do(int xe_device, char pci_slot[], enum xe_sysfs_driver_acti return xe_device; } + +/** + * 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 0ee253826..852b95053 100644 --- a/lib/igt_sysfs.h +++ b/lib/igt_sysfs.h @@ -184,4 +184,9 @@ enum xe_sysfs_driver_action { int xe_sysfs_driver_do(int xe_device, char pci_slot[], enum xe_sysfs_driver_action action); +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] 9+ messages in thread
* Re: [PATCH v3 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers 2024-10-07 10:27 ` [PATCH v3 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers Dominik Karol Piątkowski @ 2024-10-07 11:46 ` Grzegorzek, Dominik 2024-10-11 10:48 ` Kamil Konieczny 1 sibling, 0 replies; 9+ messages in thread From: Grzegorzek, Dominik @ 2024-10-07 11:46 UTC (permalink / raw) To: Piatkowski, Dominik Karol, igt-dev@lists.freedesktop.org Cc: Kempczynski, Zbigniew, Sikora, Pawel, Manszewski, Christoph, Cavitt, Jonathan On Mon, 2024-10-07 at 12:27 +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 b7746a1ec..26a3aa31f 100644 > --- a/lib/igt_sysfs.c > +++ b/lib/igt_sysfs.c > @@ -1414,3 +1414,88 @@ int xe_sysfs_driver_do(int xe_device, char pci_slot[], enum xe_sysfs_driver_acti > > return xe_device; > } > + > +/** > + * 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 0ee253826..852b95053 100644 > --- a/lib/igt_sysfs.h > +++ b/lib/igt_sysfs.h > @@ -184,4 +184,9 @@ enum xe_sysfs_driver_action { > > int xe_sysfs_driver_do(int xe_device, char pci_slot[], enum xe_sysfs_driver_action action); > > +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__ */ I've commented previous patch, rb still applies. Regards, Dominik ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers 2024-10-07 10:27 ` [PATCH v3 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers Dominik Karol Piątkowski 2024-10-07 11:46 ` Grzegorzek, Dominik @ 2024-10-11 10:48 ` Kamil Konieczny 1 sibling, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2024-10-11 10:48 UTC (permalink / raw) To: igt-dev Cc: Dominik Karol Piątkowski, Zbigniew Kempczyński, Dominik Grzegorzek, Christoph Manszewski, Pawel Sikora, Jonathan Cavitt Hi Dominik, On 2024-10-07 at 12:27:33 +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. I have few nits, even if that was already merged. > > 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 b7746a1ec..26a3aa31f 100644 > --- a/lib/igt_sysfs.c > +++ b/lib/igt_sysfs.c > @@ -1414,3 +1414,88 @@ int xe_sysfs_driver_do(int xe_device, char pci_slot[], enum xe_sysfs_driver_acti > > return xe_device; > } > + > +/** > + * 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. s/given//g Also write about u32 type. > + * > + * 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) imho this should be named __xe_sysfs_engine_class_get_u32 > +{ > + 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. s/given//g Function combines getting and setting, it should be more accuratly described, also mention u32 type. > + * > + * 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) imho here also __xe_sysfs_engine_class_set_u32 but it looks more like get_and_set Regards, Kamil > +{ > + 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 0ee253826..852b95053 100644 > --- a/lib/igt_sysfs.h > +++ b/lib/igt_sysfs.h > @@ -184,4 +184,9 @@ enum xe_sysfs_driver_action { > > int xe_sysfs_driver_do(int xe_device, char pci_slot[], enum xe_sysfs_driver_action action); > > +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 [flat|nested] 9+ messages in thread
* [PATCH v3 i-g-t 2/2] tests/xe_eudebug_online: Adjust interrupt-other test 2024-10-07 10:27 [PATCH v3 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski 2024-10-07 10:27 ` [PATCH v3 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers Dominik Karol Piątkowski @ 2024-10-07 10:27 ` Dominik Karol Piątkowski 2024-10-07 18:50 ` ✓ Fi.CI.BAT: success for Fix xe_eudebug_online@interrupt-other test (rev3) Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Dominik Karol Piątkowski @ 2024-10-07 10:27 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> Reviewed-by: Dominik Grzegorzek <dominik.grzegorzek@intel.com> --- tests/intel/xe_eudebug_online.c | 39 +++++++++++++++++++++++++++++++-- 1 file changed, 37 insertions(+), 2 deletions(-) diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c index 68d1b786f..e5aaaea22 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,24 @@ 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; + + 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) +{ + return xe_sysfs_engine_class_set_property(fd, 0, engine_class, "preempt_timeout_us", + preempt_timeout, NULL); +} + #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 +2231,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 +2268,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] 9+ messages in thread
* ✓ Fi.CI.BAT: success for Fix xe_eudebug_online@interrupt-other test (rev3) 2024-10-07 10:27 [PATCH v3 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski 2024-10-07 10:27 ` [PATCH v3 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers Dominik Karol Piątkowski 2024-10-07 10:27 ` [PATCH v3 i-g-t 2/2] tests/xe_eudebug_online: Adjust interrupt-other test Dominik Karol Piątkowski @ 2024-10-07 18:50 ` Patchwork 2024-10-07 18:58 ` ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-07 18:50 UTC (permalink / raw) To: Dominik Karol Piątkowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1764 bytes --] == Series Details == Series: Fix xe_eudebug_online@interrupt-other test (rev3) URL : https://patchwork.freedesktop.org/series/139158/ State : success == Summary == CI Bug Log - changes from IGT_8054 -> IGTPW_11878 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/index.html Participating hosts (43 -> 42) ------------------------------ Missing (1): bat-dg1-6 Known issues ------------ Here are the changes found in IGTPW_11878 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-adlp-11: [PASS][1] -> [INCOMPLETE][2] ([i915#9413]) +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-adlp-11/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/bat-adlp-11/igt@i915_selftest@live@workarounds.html [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8054 -> IGTPW_11878 * Linux: CI_DRM_15484 -> CI_DRM_15485 CI-20190529: 20190529 CI_DRM_15484: 92d12099cc768f36cf676ee1b014442a5c5ba965 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15485: 39a016b276ce8adac629cc6c31892d0b7d2af634 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11878: 681a10e5c212d465305d5dd663b5e7c6d8ebfa52 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/index.html [-- Attachment #2: Type: text/html, Size: 2365 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for Fix xe_eudebug_online@interrupt-other test (rev3) 2024-10-07 10:27 [PATCH v3 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski ` (2 preceding siblings ...) 2024-10-07 18:50 ` ✓ Fi.CI.BAT: success for Fix xe_eudebug_online@interrupt-other test (rev3) Patchwork @ 2024-10-07 18:58 ` Patchwork 2024-10-08 7:58 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-08 17:32 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-07 18:58 UTC (permalink / raw) To: Dominik Karol Piątkowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2089 bytes --] == Series Details == Series: Fix xe_eudebug_online@interrupt-other test (rev3) URL : https://patchwork.freedesktop.org/series/139158/ State : success == Summary == CI Bug Log - changes from XEIGT_8054_BAT -> XEIGTPW_11878_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11878_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [FAIL][1] ([Intel XE#1861]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@xe_gt_freq@freq_range_idle: - bat-lnl-2: [DMESG-WARN][3] ([Intel XE#1620]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/bat-lnl-2/igt@xe_gt_freq@freq_range_idle.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/bat-lnl-2/igt@xe_gt_freq@freq_range_idle.html [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 Build changes ------------- * IGT: IGT_8054 -> IGTPW_11878 * Linux: xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965 -> xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634 IGTPW_11878: 681a10e5c212d465305d5dd663b5e7c6d8ebfa52 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965: 92d12099cc768f36cf676ee1b014442a5c5ba965 xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634: 39a016b276ce8adac629cc6c31892d0b7d2af634 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/index.html [-- Attachment #2: Type: text/html, Size: 2699 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ CI.xeFULL: failure for Fix xe_eudebug_online@interrupt-other test (rev3) 2024-10-07 10:27 [PATCH v3 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski ` (3 preceding siblings ...) 2024-10-07 18:58 ` ✓ CI.xeBAT: " Patchwork @ 2024-10-08 7:58 ` Patchwork 2024-10-08 17:32 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-08 7:58 UTC (permalink / raw) To: Dominik Karol Piątkowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 44507 bytes --] == Series Details == Series: Fix xe_eudebug_online@interrupt-other test (rev3) URL : https://patchwork.freedesktop.org/series/139158/ State : failure == Summary == CI Bug Log - changes from XEIGT_8054_full -> XEIGTPW_11878_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11878_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11878_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_11878_full: ### IGT changes ### #### Possible regressions #### * igt@kms_pm_rpm@legacy-planes-dpms@plane-41: - shard-lnl: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-41.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-4/igt@kms_pm_rpm@legacy-planes-dpms@plane-41.html * igt@xe_exec_sip@invalidinstr-thread-enabled: - shard-lnl: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-4/igt@xe_exec_sip@invalidinstr-thread-enabled.html #### Warnings #### * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-dg2-set2: [INCOMPLETE][4] ([Intel XE#1195]) -> [TIMEOUT][5] +1 other test timeout [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-435/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-432/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_eudebug: - shard-lnl: [SKIP][6] ([Intel XE#2833]) -> [SKIP][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-5/igt@xe_live_ktest@xe_eudebug.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - {shard-bmg}: NOTRUN -> [FAIL][8] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html Known issues ------------ Here are the changes found in XEIGTPW_11878_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1466]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#316]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-463/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: [PASS][11] -> [FAIL][12] ([Intel XE#1659]) +1 other test fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-3/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +8 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +13 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#367]) +7 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1512]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#787]) +83 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][20] ([Intel XE#616]) +8 other tests fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +9 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2907]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1152]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-463/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#373]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-8/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#306]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-8/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#306]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-432/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#373]) +10 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-434/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#307]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-466/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#599]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][30] ([Intel XE#1188]) +1 other test fail [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-433/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2321]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1424]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-dg2-set2: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#1195]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-433/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-463/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#309]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@single-bo@pipe-b: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][36] ([Intel XE#1195]) +1 other test incomplete [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-433/igt@kms_cursor_legacy@single-bo@pipe-b.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([i915#3804]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-466/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#776]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-436/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#703]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-463/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1138]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-435/igt@kms_feature_discovery@display-4x.html - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1138]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-4/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#301]) +3 other tests fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1421]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-7/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-lnl: NOTRUN -> [FAIL][44] ([Intel XE#886]) +3 other tests fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-suspend@c-edp1: - shard-lnl: NOTRUN -> [INCOMPLETE][45] ([Intel XE#2049]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-3/igt@kms_flip@flip-vs-suspend@c-edp1.html * igt@kms_flip@wf_vblank-ts-check@a-edp1: - shard-lnl: [PASS][46] -> [FAIL][47] ([Intel XE#886]) +2 other tests fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@a-edp1.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check@a-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1397]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#651]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#656]) +22 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#651]) +32 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#658]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#653]) +33 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1158]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-435/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1470] / [Intel XE#2853]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#356]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@plane-position-hole@pipe-a-plane-3: - shard-lnl: [PASS][58] -> [DMESG-FAIL][59] ([Intel XE#324]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-a-plane-3.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-4/igt@kms_plane@plane-position-hole@pipe-a-plane-3.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][60] ([Intel XE#361]) +1 other test fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2763]) +11 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1131]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-8/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_rpm@legacy-planes-dpms: - shard-lnl: [PASS][63] -> [DMESG-WARN][64] ([Intel XE#2932]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-8/igt@kms_pm_rpm@legacy-planes-dpms.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-4/igt@kms_pm_rpm@legacy-planes-dpms.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1489]) +8 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-432/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2893]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1128]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr2-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-436/igt@kms_psr@fbc-psr2-suspend.html * igt@kms_psr@pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1406]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-7/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@psr2-cursor-render@edp-1: - shard-lnl: NOTRUN -> [FAIL][70] ([Intel XE#2948]) +1 other test fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-8/igt@kms_psr@psr2-cursor-render@edp-1.html * igt@kms_psr@psr2-primary-page-flip: - shard-lnl: [PASS][71] -> [FAIL][72] ([Intel XE#2948]) +1 other test fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@kms_psr@psr2-primary-page-flip.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-7/igt@kms_psr@psr2-primary-page-flip.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#1127]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1437]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_vrr@flip-basic: - shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#2443]) +1 other test fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_vrr@flip-basic.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-6/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#455]) +18 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-436/igt@kms_vrr@flip-dpms.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#1091] / [Intel XE#2849]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_compute@ccs-mode-basic: - shard-dg2-set2: NOTRUN -> [FAIL][79] ([Intel XE#1050]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-464/igt@xe_compute@ccs-mode-basic.html * igt@xe_eudebug@read-metadata: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#2905]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-3/igt@xe_eudebug@read-metadata.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][81] ([Intel XE#1600]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-433/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][82] ([Intel XE#1473]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#688]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-5/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html * igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#288]) +24 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-434/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2905]) +7 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#2229]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-463/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_module_load@force-load: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#378]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-434/igt@xe_module_load@force-load.html * igt@xe_oa@invalid-oa-metric-set-id: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2541]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-466/igt@xe_oa@invalid-oa-metric-set-id.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#2248]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-5/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#977]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-433/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2838] / [Intel XE#979]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#979]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@read: - shard-dg2-set2: NOTRUN -> [FAIL][93] ([Intel XE#1173]) +1 other test fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-463/igt@xe_peer2peer@read.html * igt@xe_pm@d3hot-mocs: - shard-lnl: [PASS][94] -> [DMESG-FAIL][95] ([Intel XE#1620]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@xe_pm@d3hot-mocs.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-8/igt@xe_pm@d3hot-mocs.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-dg2-set2: NOTRUN -> [ABORT][96] ([Intel XE#1358]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-433/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s4-basic: - shard-lnl: [PASS][97] -> [ABORT][98] ([Intel XE#1358] / [Intel XE#1607]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@xe_pm@s4-basic.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-2/igt@xe_pm@s4-basic.html * igt@xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#944]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-436/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-mem-usage: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#944]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-3/igt@xe_query@multigpu-query-mem-usage.html #### Possible fixes #### * igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs: - shard-lnl: [FAIL][101] ([Intel XE#1701]) -> [PASS][102] +1 other test pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-2/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: [FAIL][103] ([Intel XE#1659]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - {shard-bmg}: [DMESG-WARN][105] ([Intel XE#877]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-lnl: [FAIL][107] ([Intel XE#1475]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - {shard-bmg}: [FAIL][109] ([Intel XE#301]) -> [PASS][110] +2 other tests pass [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][111] ([Intel XE#301]) -> [PASS][112] +1 other test pass [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-suspend@b-edp1: - shard-lnl: [INCOMPLETE][113] ([Intel XE#2049]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-2/igt@kms_flip@flip-vs-suspend@b-edp1.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-3/igt@kms_flip@flip-vs-suspend@b-edp1.html * igt@kms_flip@plain-flip-fb-recreate@b-edp1: - shard-lnl: [FAIL][115] ([Intel XE#886]) -> [PASS][116] +3 other tests pass [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html * igt@kms_plane@plane-position-covered@pipe-a-plane-3: - shard-lnl: [DMESG-FAIL][117] ([Intel XE#324]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-1/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3: - shard-lnl: [DMESG-WARN][119] ([Intel XE#324]) -> [PASS][120] +8 other tests pass [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-1/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][121] ([Intel XE#718]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][123] ([Intel XE#1430]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@legacy-planes: - shard-lnl: [INCOMPLETE][125] ([Intel XE#1620] / [Intel XE#2864]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_pm_rpm@legacy-planes.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-7/igt@kms_pm_rpm@legacy-planes.html * igt@kms_pm_rpm@legacy-planes@plane-41: - shard-lnl: [DMESG-FAIL][127] ([Intel XE#1620]) -> [PASS][128] +1 other test pass [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_pm_rpm@legacy-planes@plane-41.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-7/igt@kms_pm_rpm@legacy-planes@plane-41.html * igt@kms_psr@psr2-cursor-plane-move: - shard-lnl: [FAIL][129] ([Intel XE#2948]) -> [PASS][130] +3 other tests pass [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_psr@psr2-cursor-plane-move.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-6/igt@kms_psr@psr2-cursor-plane-move.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][131] ([Intel XE#899]) -> [PASS][132] +2 other tests pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vblank@accuracy-idle: - shard-lnl: [DMESG-WARN][133] -> [PASS][134] +2 other tests pass [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_vblank@accuracy-idle.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-2/igt@kms_vblank@accuracy-idle.html * igt@kms_vrr@flip-suspend@pipe-a-edp-1: - shard-lnl: [FAIL][135] ([Intel XE#2443]) -> [PASS][136] +1 other test pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-6/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - {shard-bmg}: [TIMEOUT][137] ([Intel XE#1473]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [TIMEOUT][139] ([Intel XE#2105]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-432/igt@xe_exec_reset@parallel-gt-reset.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_exec_threads@threads-hang-fd-userptr-rebind: - shard-lnl: [ABORT][141] -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-6/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-lnl: [INCOMPLETE][143] ([Intel XE#1358] / [Intel XE#1616]) -> [PASS][144] [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@xe_pm@s2idle-d3hot-basic-exec.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-2/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [ABORT][145] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-2/igt@xe_pm@s4-basic-exec.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-lnl-5/igt@xe_pm@s4-basic-exec.html #### Warnings #### * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][147] ([Intel XE#1500]) -> [SKIP][148] ([Intel XE#362]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.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#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [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#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [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#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656 [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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [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#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [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#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [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#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#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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [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#2931]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2931 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [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#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8054 -> IGTPW_11878 * Linux: xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965 -> xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634 IGTPW_11878: 681a10e5c212d465305d5dd663b5e7c6d8ebfa52 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965: 92d12099cc768f36cf676ee1b014442a5c5ba965 xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634: 39a016b276ce8adac629cc6c31892d0b7d2af634 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11878/index.html [-- Attachment #2: Type: text/html, Size: 46877 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for Fix xe_eudebug_online@interrupt-other test (rev3) 2024-10-07 10:27 [PATCH v3 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski ` (4 preceding siblings ...) 2024-10-08 7:58 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-10-08 17:32 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-10-08 17:32 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 (rev3) URL : https://patchwork.freedesktop.org/series/139158/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15485_full -> IGTPW_11878_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11878_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11878_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_11878/index.html Participating hosts (9 -> 8) ------------------------------ Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11878_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a4: - shard-dg1: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg1-19/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a4.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-18/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a4.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-mtlp: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html New tests --------- New tests have been introduced between CI_DRM_15485_full and IGTPW_11878_full: ### New IGT tests (3) ### * igt@kms_cursor_crc@cursor-size-hints@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.36] s * igt@kms_lease@lease-revoke@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.02] s * igt@kms_lease@lease-revoke@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.01] s Known issues ------------ Here are the changes found in IGTPW_11878_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#6230]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-5/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-13/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][7] ([i915#6230]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-3/igt@api_intel_bb@crc32.html * igt@drm_fdinfo@isolation: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +8 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-5/igt@drm_fdinfo@isolation.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-14/igt@drm_fdinfo@isolation@vecs0.html * igt@fbdev@read: - shard-dg2: [PASS][10] -> [SKIP][11] ([i915#2582]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-7/igt@fbdev@read.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@fbdev@read.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#3936]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-16/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#3936]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-18/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-9/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-6/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#8562]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@hostile: - shard-mtlp: [PASS][19] -> [FAIL][20] ([i915#11980]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-1/igt@gem_ctx_persistence@hostile.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_persistence@legacy-engines-hostile: - shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-snb4/igt@gem_ctx_persistence@legacy-engines-hostile.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#280]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-4/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][23] ([i915#280]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-9/igt@gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#6344]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fair@basic-none-rrul: - shard-tglu: NOTRUN -> [FAIL][27] ([i915#2842]) +1 other test fail [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-5/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-pace: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-16/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share: - shard-tglu: [PASS][29] -> [FAIL][30] ([i915#2842]) +1 other test fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-tglu-4/igt@gem_exec_fair@basic-pace-share.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-6/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_fair@basic-pace-solo: - shard-rkl: [PASS][31] -> [FAIL][32] ([i915#2842]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-1/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +4 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +9 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-range-active: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3281]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-5/igt@gem_exec_reloc@basic-range-active.html * igt@gem_exec_reloc@basic-write-read: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +6 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-14/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +11 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-4/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4537]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-7/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@pi-ringfull@vecs0: - shard-dg1: NOTRUN -> [FAIL][41] ([i915#12296]) +5 other tests fail [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-15/igt@gem_exec_schedule@pi-ringfull@vecs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#7276]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-12/igt@gem_exec_schedule@semaphore-power.html - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-8/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [PASS][46] -> [ABORT][47] ([i915#7975] / [i915#8213]) +1 other test abort [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-7/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#2190]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-2/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-1/igt@gem_lmem_swapping@verify-random.html - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-8/igt@gem_lmem_swapping@verify-random.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-4/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#284]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-5/igt@gem_media_vme.html * igt@gem_mmap@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@gem_mmap@pf-nonblock.html * igt@gem_mmap_gtt@basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +7 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-16/igt@gem_mmap_gtt@basic-small-copy-xy.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +11 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-1/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@hang-busy: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4077]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-1/igt@gem_mmap_gtt@hang-busy.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3282]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-19/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3282]) +7 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-11/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-1/igt@gem_pwrite@basic-self.html * igt@gem_pxp@create-regular-context-1: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4270]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-2/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-1/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#4270]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-6/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-19/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8428]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-2/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +10 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-5/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4079]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-18/igt@gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4079]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-3/igt@gem_set_tiling_vs_gtt.html - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-11/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4885]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4885]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-15/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4885]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-7/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-7/igt@gem_userptr_blits@create-destroy-unsync.html - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-19/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282] / [i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-3/igt@gem_userptr_blits@forbidden-operations.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3282] / [i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-13/igt@gem_userptr_blits@forbidden-operations.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3282] / [i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-1/igt@gem_userptr_blits@forbidden-operations.html - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3282] / [i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-1/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-7/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#2527]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-13/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-2/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#2856]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@gen9_exec_parse@unaligned-access.html - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-7/igt@gen9_exec_parse@unaligned-access.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4881]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-4/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#6227]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-4/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][95] -> [ABORT][96] ([i915#9820]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: NOTRUN -> [ABORT][97] ([i915#9820]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][98] -> [ABORT][99] ([i915#9820]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#6412]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-9/igt@i915_module_load@resize-bar.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#7091]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-8/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8436]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#8399]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-6/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#6590]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-6/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][105] ([i915#2681]) +1 other test warn [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [PASS][106] -> [FAIL][107] ([i915#3591]) +1 other test fail [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rps@thresholds: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#11681]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-18/igt@i915_pm_rps@thresholds.html * igt@i915_selftest@live@workarounds: - shard-mtlp: NOTRUN -> [ABORT][109] ([i915#12216]) +1 other test abort [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-5/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4212]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4215]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-13/igt@kms_addfb_basic@basic-y-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4215] / [i915#5190]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4212]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-15/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4212]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-7/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#8709]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#6228]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-6/igt@kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#6228]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-3/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-15/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#5286]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#5286]) +7 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][124] -> [FAIL][125] ([i915#5138]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3638]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#3638]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#5190]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [SKIP][129] +10 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5190]) +10 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#5190] / [i915#9197]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][132] +27 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#6095]) +57 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#12313]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6095]) +24 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-1/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#10307] / [i915#6095]) +149 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#12313]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#6095]) +59 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-4/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#12313]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#12313]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#6095]) +131 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#3742]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-2/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#4087]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-c-dp-3.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][146] +23 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +8 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-10/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#7828]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#7828]) +10 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#7828]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html - shard-dg1: NOTRUN -> [SKIP][151] ([i915#7828]) +5 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-14/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color@ctm-green-to-red: - shard-dg2: [PASS][152] -> [SKIP][153] ([i915#5354]) +7 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-8/igt@kms_color@ctm-green-to-red.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_color@ctm-green-to-red.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-4/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic@pipe-a-dp-3: - shard-dg2: NOTRUN -> [TIMEOUT][155] ([i915#7173]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-3.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#3299]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][157] ([i915#3116] / [i915#3299]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-9/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3299]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3116]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#3299]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#7118]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-11/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#7116]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-18/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#6944]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-6/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#7116] / [i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-16/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#6944] / [i915#9424]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [FAIL][166] ([i915#1339] / [i915#7173]) +1 other test fail [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-10/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#11453]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#11453]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8814]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-dg2: [PASS][170] -> [SKIP][171] ([i915#9197]) +25 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-11/igt@kms_cursor_crc@cursor-random-256x85.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#3555]) +7 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#3555]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#11453]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#11453]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#9809]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#9067]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#4103]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#4213]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg2: NOTRUN -> [SKIP][181] ([i915#4103] / [i915#4213]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#4103]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#9723]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#9197]) +15 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#1257]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-3/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#3840]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-16/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#3840] / [i915#9053]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [PASS][190] -> [SKIP][191] ([i915#1849]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-1/igt@kms_fbcon_fbt@fbc-suspend.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#1839]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-3/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#658]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-7/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#658]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-13/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][195] ([i915#658]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-8/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#3637] / [i915#3966]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-4/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3637]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][198] -> [FAIL][199] ([i915#2122]) +5 other tests fail [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#8381]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-panning: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#9934]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#3637]) +6 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-mtlp: [PASS][203] -> [INCOMPLETE][204] ([i915#2295]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-5/igt@kms_flip@absolute-wf_vblank-interruptible.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-3/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8381]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-1/igt@kms_flip@flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#8381]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-1/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg1: [PASS][207] -> [INCOMPLETE][208] ([i915#4839] / [i915#6113]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg1-14/igt@kms_flip@flip-vs-suspend-interruptible.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-12/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-snb: [PASS][209] -> [INCOMPLETE][210] ([i915#4839]) +1 other test incomplete [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-mtlp: [PASS][211] -> [INCOMPLETE][212] ([i915#6113]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3: - shard-dg1: NOTRUN -> [INCOMPLETE][213] ([i915#4839] / [i915#6113]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-12/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html * igt@kms_flip@flip-vs-suspend-interruptible@b-vga1: - shard-snb: [PASS][214] -> [DMESG-WARN][215] ([i915#11922]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html * igt@kms_flip@flip-vs-suspend-interruptible@d-edp1: - shard-mtlp: [PASS][216] -> [INCOMPLETE][217] ([i915#10056] / [i915#6113]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-4/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-8/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#2672]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#2587] / [i915#2672] / [i915#3555]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#2587] / [i915#2672]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html - shard-tglu: NOTRUN -> [SKIP][225] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#2672]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8813]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#8810]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#3555]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-dg2: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#8708]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][234] +101 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][235] +35 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#1825]) +35 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-snb: [PASS][237] -> [SKIP][238] +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#3458]) +14 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#10433] / [i915#3458]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#5354]) +36 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#3458]) +16 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#5439]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#8708]) +24 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#3023]) +20 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-snb: NOTRUN -> [SKIP][246] +91 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][247] ([i915#8708]) +23 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#1825]) +11 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#6118]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-7/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8228]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8228]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@bad-hsync-end: - shard-dg2: [PASS][252] -> [SKIP][253] ([i915#3555]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-7/igt@kms_invalid_mode@bad-hsync-end.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_invalid_mode@bad-hsync-end.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#10656]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-19/igt@kms_joiner@basic-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#10656]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-1/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][256] ([i915#10656]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-7/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#10656]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-4/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#10656]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#6301]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-8/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][260] ([i915#6301]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@plane-position-hole: - shard-dg2: [PASS][261] -> [SKIP][262] ([i915#8825]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-7/igt@kms_plane@plane-position-hole.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_plane@plane-position-hole.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#7294]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8821]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-1/igt@kms_plane_lowres@tiling-y.html - shard-dg2: NOTRUN -> [SKIP][265] ([i915#8821]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-1/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8821]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-5/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-tglu: NOTRUN -> [FAIL][267] ([i915#8292]) +1 other test fail [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][268] ([i915#8292]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers: - shard-dg2: [PASS][269] -> [SKIP][270] ([i915#8152] / [i915#9423]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d: - shard-dg2: [PASS][271] -> [SKIP][272] ([i915#8152]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - shard-dg2: [PASS][273] -> [SKIP][274] ([i915#12247] / [i915#8152] / [i915#9423]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg2: [PASS][275] -> [SKIP][276] ([i915#3555] / [i915#8152] / [i915#9423]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/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][277] ([i915#12247]) +8 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c: - shard-dg2: [PASS][278] -> [SKIP][279] ([i915#12247]) +8 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d: - shard-dg2: [PASS][280] -> [SKIP][281] ([i915#12247] / [i915#8152]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][283] ([i915#12247] / [i915#6953]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#12247] / [i915#6953]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][285] ([i915#12247] / [i915#6953]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#12247] / [i915#6953]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#12247]) +7 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#12247]) +8 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#12247]) +14 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#6953]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#3555] / [i915#9423]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#12247]) +7 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/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@pipe-d: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#8152]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#5354]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#5978]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][297] -> [SKIP][298] ([i915#9340]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#8430]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#9519]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][301] -> [SKIP][302] ([i915#9519]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-7/igt@kms_pm_rpm@dpms-non-lpsp.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-rkl: [PASS][303] -> [SKIP][304] ([i915#9519]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#9519]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#9519]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-dg2: NOTRUN -> [SKIP][307] ([i915#9519]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#9519]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg1: NOTRUN -> [ABORT][309] ([i915#10553] / [i915#4423]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-13/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#6524]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#6524]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-13/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][312] ([i915#6524] / [i915#6805]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#6524]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#11520]) +8 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html - shard-snb: NOTRUN -> [SKIP][315] ([i915#11520]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-snb7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#12316]) +4 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#9808]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#11520]) +6 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#11520]) +6 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-3/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][320] ([i915#11520]) +5 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-18/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#9683]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#9683]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-3/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][323] ([i915#1072] / [i915#9732]) +18 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-13/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#9688]) +13 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#1072] / [i915#9732]) +26 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-10/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#9732]) +24 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-3/igt@kms_psr@psr2-primary-render.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#1072] / [i915#9732]) +20 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-3/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][328] ([i915#9685]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-19/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#5289]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][330] ([i915#5289]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#5289]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#5289]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#11131]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-center: - shard-tglu: NOTRUN -> [SKIP][334] ([i915#3555]) +5 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][335] ([i915#12231]) +1 other test abort [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-7/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#3555]) +6 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][337] ([IGT#2]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-4/igt@kms_sysfs_edid_timing.html - shard-snb: [PASS][338] -> [FAIL][339] ([IGT#2] / [i915#6493]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb4/igt@kms_sysfs_edid_timing.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-snb6/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#8623]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#8623]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak: - shard-mtlp: [PASS][342] -> [FAIL][343] ([i915#9196]) +1 other test fail [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#3555] / [i915#9906]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-6/igt@kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][345] ([i915#3555] / [i915#9906]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-12/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#9906]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-5/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#9906]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#9906]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][349] ([i915#2437]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-17/igt@kms_writeback@writeback-invalid-parameters.html - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#2437]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-1/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][351] ([i915#2437]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-4/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#2437] / [i915#9412]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-5/igt@kms_writeback@writeback-pixel-formats.html - shard-dg2: NOTRUN -> [SKIP][353] ([i915#2437] / [i915#9412]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-1/igt@kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][354] ([i915#2437] / [i915#9412]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-14/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#7387]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-11/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][356] -> [FAIL][357] ([i915#4349]) +4 other tests fail [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html * igt@prime_mmap_kms@buffer-sharing: - shard-dg2: [PASS][358] -> [SKIP][359] [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-1/igt@prime_mmap_kms@buffer-sharing.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-2/igt@prime_mmap_kms@buffer-sharing.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#3708]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-3/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][361] ([i915#3708] / [i915#4077]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-16/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#3708] / [i915#4077]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#3708]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-16/igt@prime_vgem@fence-flip-hang.html - shard-mtlp: NOTRUN -> [SKIP][364] ([i915#3708]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-5/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#3708]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-5/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#9917]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-6/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][367] ([i915#9917]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-12/igt@sriov_basic@bind-unbind-vf.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-rkl: NOTRUN -> [FAIL][368] ([i915#9781]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-5/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg1: NOTRUN -> [FAIL][369] ([i915#9781]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-13/igt@syncobj_wait@invalid-wait-zero-handles.html #### Possible fixes #### * igt@gem_ctx_engines@invalid-engines: - shard-rkl: [FAIL][370] ([i915#12027]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-3/igt@gem_ctx_engines@invalid-engines.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-4/igt@gem_ctx_engines@invalid-engines.html - shard-mtlp: [FAIL][372] ([i915#12027]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-5/igt@gem_ctx_engines@invalid-engines.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-7/igt@gem_ctx_engines@invalid-engines.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][374] ([i915#5784]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg1-15/igt@gem_eio@reset-stress.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-14/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@nop: - shard-mtlp: [DMESG-WARN][376] -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-3/igt@gem_exec_balancer@nop.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-7/igt@gem_exec_balancer@nop.html * igt@gem_exec_big@single: - shard-tglu: [ABORT][378] ([i915#11713]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-tglu-5/igt@gem_exec_big@single.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-4/igt@gem_exec_big@single.html * igt@gem_exec_fair@basic-none@vecs0: - shard-rkl: [FAIL][380] ([i915#2842]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-5/igt@gem_exec_fair@basic-none@vecs0.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-2/igt@gem_exec_fair@basic-none@vecs0.html * igt@i915_module_load@reload-no-display: - shard-snb: [ABORT][382] ([i915#11703]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb5/igt@i915_module_load@reload-no-display.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-snb6/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rps@waitboost: - shard-dg2: [FAIL][384] -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-11/igt@i915_pm_rps@waitboost.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-5/igt@i915_pm_rps@waitboost.html * igt@kms_addfb_basic@bad-pitch-999: - shard-dg1: [INCOMPLETE][386] ([i915#2295]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg1-13/igt@kms_addfb_basic@bad-pitch-999.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-18/igt@kms_addfb_basic@bad-pitch-999.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][388] ([i915#5138]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: [DMESG-WARN][390] ([i915#4423]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg1-12/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-13/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-rkl: [ABORT][392] ([i915#10354]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-3/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs: - shard-dg2: [SKIP][394] ([i915#9197]) -> [PASS][395] +13 other tests pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html * igt@kms_cursor_legacy@forked-bo@pipe-a: - shard-dg1: [INCOMPLETE][396] -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg1-13/igt@kms_cursor_legacy@forked-bo@pipe-a.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-18/igt@kms_cursor_legacy@forked-bo@pipe-a.html * igt@kms_flip@2x-flip-vs-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][398] ([i915#2122]) -> [PASS][399] +3 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb5/igt@kms_flip@2x-flip-vs-wf_vblank@ab-vga1-hdmi-a1.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-snb4/igt@kms_flip@2x-flip-vs-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@blocking-wf_vblank: - shard-rkl: [FAIL][400] ([i915#11961] / [i915#2122]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-3/igt@kms_flip@blocking-wf_vblank.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-1/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-rkl: [FAIL][402] ([i915#2122]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1: - shard-tglu: [FAIL][404] ([i915#2122]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-tglu-6/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2: - shard-rkl: [FAIL][406] ([i915#11961]) -> [PASS][407] +2 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2.html * igt@kms_flip@modeset-vs-vblank-race@b-hdmi-a4: - shard-dg1: [FAIL][408] -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg1-19/igt@kms_flip@modeset-vs-vblank-race@b-hdmi-a4.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg1-18/igt@kms_flip@modeset-vs-vblank-race@b-hdmi-a4.html * igt@kms_flip@plain-flip-ts-check: - shard-dg2: [SKIP][410] ([i915#5354]) -> [PASS][411] +3 other tests pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_flip@plain-flip-ts-check.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-4/igt@kms_flip@plain-flip-ts-check.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-snb: [SKIP][412] -> [PASS][413] +5 other tests pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: [SKIP][414] ([i915#3555] / [i915#8228]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-8/igt@kms_hdr@bpc-switch-suspend.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_invalid_mode@bad-vtotal: - shard-dg2: [SKIP][416] ([i915#3555]) -> [PASS][417] +1 other test pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_invalid_mode@bad-vtotal.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-8/igt@kms_invalid_mode@bad-vtotal.html * igt@kms_plane@plane-panning-top-left: - shard-dg2: [SKIP][418] ([i915#8825]) -> [PASS][419] [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane@plane-panning-top-left.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-6/igt@kms_plane@plane-panning-top-left.html * igt@kms_plane_alpha_blend@constant-alpha-mid: - shard-dg2: [SKIP][420] ([i915#7294]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-mid.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-6/igt@kms_plane_alpha_blend@constant-alpha-mid.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-dg2: [SKIP][422] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b: - shard-dg2: [SKIP][424] ([i915#12247]) -> [PASS][425] +5 other tests pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d: - shard-dg2: [SKIP][426] ([i915#8152]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: - shard-dg2: [SKIP][428] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d: - shard-dg2: [SKIP][430] ([i915#12247] / [i915#8152]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][432] ([i915#4281]) -> [PASS][433] [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][434] ([i915#9519]) -> [PASS][435] +1 other test pass [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][436] ([i915#9519]) -> [PASS][437] [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_properties@plane-properties-atomic: - shard-dg2: [SKIP][438] ([i915#11521]) -> [PASS][439] +1 other test pass [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15485/shard-dg2-2/igt@kms_properties@plane-properties-atomic.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/shard-dg2-5/igt@kms_properties@plane-properties-atomic.html #### Warnings #### * igt@gem_ctx_engines@invalid-engines: - shar == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11878/index.html [-- Attachment #2: Type: text/html, Size: 109319 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-10-11 10:48 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-07 10:27 [PATCH v3 i-g-t 0/2] Fix xe_eudebug_online@interrupt-other test Dominik Karol Piątkowski 2024-10-07 10:27 ` [PATCH v3 i-g-t 1/2] lib/igt_sysfs: Introduce engine_class property helpers Dominik Karol Piątkowski 2024-10-07 11:46 ` Grzegorzek, Dominik 2024-10-11 10:48 ` Kamil Konieczny 2024-10-07 10:27 ` [PATCH v3 i-g-t 2/2] tests/xe_eudebug_online: Adjust interrupt-other test Dominik Karol Piątkowski 2024-10-07 18:50 ` ✓ Fi.CI.BAT: success for Fix xe_eudebug_online@interrupt-other test (rev3) Patchwork 2024-10-07 18:58 ` ✓ CI.xeBAT: " Patchwork 2024-10-08 7:58 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-08 17:32 ` ✗ 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