* [PATCH i-g-t] panthor: Enable compilation on big-endian arch
@ 2026-02-18 15:34 Kamil Konieczny
2026-02-18 16:16 ` Boris Brezillon
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Kamil Konieczny @ 2026-02-18 15:34 UTC (permalink / raw)
To: igt-dev; +Cc: Kamil Konieczny, Daniel Almeida, Boris Brezillon
Compilation of Panthor was broken on big-endian due to a guard in
pathor lib against such arch. Fix this and create and use a macro
for skipping all panthor tests on such machines.
Also while at it, init fd so it could be safely used at last
fixture.
Cc: Daniel Almeida <daniel.almeida@collabora.com>
Cc: Boris Brezillon <boris.brezillon@collabora.com>
Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/200
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/igt_panthor.c | 17 +++++++++++++++++
lib/igt_panthor.h | 6 ++----
tests/panthor/panthor_gem.c | 3 ++-
tests/panthor/panthor_group.c | 3 ++-
tests/panthor/panthor_query.c | 3 ++-
tests/panthor/panthor_vm.c | 3 ++-
6 files changed, 27 insertions(+), 8 deletions(-)
diff --git a/lib/igt_panthor.c b/lib/igt_panthor.c
index 49b427d4f..cf065352d 100644
--- a/lib/igt_panthor.c
+++ b/lib/igt_panthor.c
@@ -6,6 +6,23 @@
#include "ioctl_wrappers.h"
#include "panthor_drm.h"
+/**
+ * igt_panthor_skip_on_big_endian:
+ *
+ * Skip Panthor test on bing-endian machines.
+ */
+void igt_panthor_skip_on_big_endian(void)
+{
+#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
+ #define IGT_PANTHOR_ON_BIG_ENDIAN 1
+#else
+ #define IGT_PANTHOR_ON_BIG_ENDIAN 0
+#endif
+
+ igt_skip_on_f(IGT_PANTHOR_ON_BIG_ENDIAN, "Panthor is unsupported on big-endian arch\n");
+#undef IGT_PANTHOR_ON_BIG_ENDIAN
+}
+
/**
* igt_panthor_group_create:
* @fd: device file descriptor
diff --git a/lib/igt_panthor.h b/lib/igt_panthor.h
index 97a2b7497..be8490840 100644
--- a/lib/igt_panthor.h
+++ b/lib/igt_panthor.h
@@ -61,11 +61,9 @@ enum cs_flush_mode {
};
/* There's no plan to support big endian in the UMD, so keep
- * things simple and don't bother supporting it here either.
+ * things simple and don't bother supporting it.
*/
-#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
-#error "big endian not supported"
-#endif
+void igt_panthor_skip_on_big_endian(void);
struct cs_instr {
union {
diff --git a/tests/panthor/panthor_gem.c b/tests/panthor/panthor_gem.c
index 57ba4bc82..6388addb0 100644
--- a/tests/panthor/panthor_gem.c
+++ b/tests/panthor/panthor_gem.c
@@ -8,9 +8,10 @@
#include "igt_panthor.h"
int igt_main() {
- int fd;
+ int fd = -1;
igt_fixture() {
+ igt_panthor_skip_on_big_endian();
fd = drm_open_driver(DRIVER_PANTHOR);
}
diff --git a/tests/panthor/panthor_group.c b/tests/panthor/panthor_group.c
index 13636e60c..c79f8d629 100644
--- a/tests/panthor/panthor_group.c
+++ b/tests/panthor/panthor_group.c
@@ -41,9 +41,10 @@ issue_store_multiple(uint8_t *cs, uint64_t kernel_va, uint32_t constant)
}
int igt_main() {
- int fd;
+ int fd = -1;
igt_fixture() {
+ igt_panthor_skip_on_big_endian();
fd = drm_open_driver(DRIVER_PANTHOR);
}
diff --git a/tests/panthor/panthor_query.c b/tests/panthor/panthor_query.c
index fa4f8ef26..afd58a5bd 100644
--- a/tests/panthor/panthor_query.c
+++ b/tests/panthor/panthor_query.c
@@ -8,9 +8,10 @@
#include <stdint.h>
int igt_main() {
- int fd;
+ int fd = -1;
igt_fixture() {
+ igt_panthor_skip_on_big_endian();
fd = drm_open_driver(DRIVER_PANTHOR);
}
diff --git a/tests/panthor/panthor_vm.c b/tests/panthor/panthor_vm.c
index 76a669843..92b105b9e 100644
--- a/tests/panthor/panthor_vm.c
+++ b/tests/panthor/panthor_vm.c
@@ -7,9 +7,10 @@
#include "panthor_drm.h"
int igt_main() {
- int fd;
+ int fd = -1;
igt_fixture() {
+ igt_panthor_skip_on_big_endian();
fd = drm_open_driver(DRIVER_PANTHOR);
}
--
2.53.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [PATCH i-g-t] panthor: Enable compilation on big-endian arch 2026-02-18 15:34 [PATCH i-g-t] panthor: Enable compilation on big-endian arch Kamil Konieczny @ 2026-02-18 16:16 ` Boris Brezillon 2026-02-19 14:34 ` Kamil Konieczny 2026-02-18 17:31 ` ✓ Xe.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Boris Brezillon @ 2026-02-18 16:16 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev, Daniel Almeida On Wed, 18 Feb 2026 16:34:44 +0100 Kamil Konieczny <kamil.konieczny@linux.intel.com> wrote: > Compilation of Panthor was broken on big-endian due to a guard in > pathor lib against such arch. Fix this and create and use a macro > for skipping all panthor tests on such machines. > > Also while at it, init fd so it could be safely used at last > fixture. > > Cc: Daniel Almeida <daniel.almeida@collabora.com> > Cc: Boris Brezillon <boris.brezillon@collabora.com> > Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/200 > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > lib/igt_panthor.c | 17 +++++++++++++++++ > lib/igt_panthor.h | 6 ++---- > tests/panthor/panthor_gem.c | 3 ++- > tests/panthor/panthor_group.c | 3 ++- > tests/panthor/panthor_query.c | 3 ++- > tests/panthor/panthor_vm.c | 3 ++- > 6 files changed, 27 insertions(+), 8 deletions(-) > > diff --git a/lib/igt_panthor.c b/lib/igt_panthor.c > index 49b427d4f..cf065352d 100644 > --- a/lib/igt_panthor.c > +++ b/lib/igt_panthor.c > @@ -6,6 +6,23 @@ > #include "ioctl_wrappers.h" > #include "panthor_drm.h" > > +/** > + * igt_panthor_skip_on_big_endian: > + * > + * Skip Panthor test on bing-endian machines. ^ big-endian > + */ > +void igt_panthor_skip_on_big_endian(void) > +{ > +#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ > + #define IGT_PANTHOR_ON_BIG_ENDIAN 1 > +#else > + #define IGT_PANTHOR_ON_BIG_ENDIAN 0 > +#endif > + > + igt_skip_on_f(IGT_PANTHOR_ON_BIG_ENDIAN, "Panthor is unsupported on big-endian arch\n"); > +#undef IGT_PANTHOR_ON_BIG_ENDIAN Can't we just go with igt_skip_on_f(__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__, "Panthor is unsupported on big-endian arch\n"); and drop the IGT_PANTHOR_ON_BIG_ENDIAN definition? > +} The rest looks good to me. Regards, Boris ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t] panthor: Enable compilation on big-endian arch 2026-02-18 16:16 ` Boris Brezillon @ 2026-02-19 14:34 ` Kamil Konieczny 0 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2026-02-19 14:34 UTC (permalink / raw) To: Boris Brezillon; +Cc: igt-dev, Daniel Almeida Hi Boris, On 2026-02-18 at 17:16:57 +0100, Boris Brezillon wrote: > On Wed, 18 Feb 2026 16:34:44 +0100 > Kamil Konieczny <kamil.konieczny@linux.intel.com> wrote: > > > Compilation of Panthor was broken on big-endian due to a guard in > > pathor lib against such arch. Fix this and create and use a macro > > for skipping all panthor tests on such machines. > > > > Also while at it, init fd so it could be safely used at last > > fixture. > > > > Cc: Daniel Almeida <daniel.almeida@collabora.com> > > Cc: Boris Brezillon <boris.brezillon@collabora.com> > > Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/200 > > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > --- > > lib/igt_panthor.c | 17 +++++++++++++++++ > > lib/igt_panthor.h | 6 ++---- > > tests/panthor/panthor_gem.c | 3 ++- > > tests/panthor/panthor_group.c | 3 ++- > > tests/panthor/panthor_query.c | 3 ++- > > tests/panthor/panthor_vm.c | 3 ++- > > 6 files changed, 27 insertions(+), 8 deletions(-) > > > > diff --git a/lib/igt_panthor.c b/lib/igt_panthor.c > > index 49b427d4f..cf065352d 100644 > > --- a/lib/igt_panthor.c > > +++ b/lib/igt_panthor.c > > @@ -6,6 +6,23 @@ > > #include "ioctl_wrappers.h" > > #include "panthor_drm.h" > > > > +/** > > + * igt_panthor_skip_on_big_endian: > > + * > > + * Skip Panthor test on bing-endian machines. > > ^ big-endian > > > + */ > > +void igt_panthor_skip_on_big_endian(void) > > +{ > > +#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ > > + #define IGT_PANTHOR_ON_BIG_ENDIAN 1 > > +#else > > + #define IGT_PANTHOR_ON_BIG_ENDIAN 0 > > +#endif > > + > > + igt_skip_on_f(IGT_PANTHOR_ON_BIG_ENDIAN, "Panthor is unsupported on big-endian arch\n"); > > +#undef IGT_PANTHOR_ON_BIG_ENDIAN > > Can't we just go with > > igt_skip_on_f(__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__, > "Panthor is unsupported on big-endian arch\n"); > > and drop the IGT_PANTHOR_ON_BIG_ENDIAN definition? > Yes, it is much simpler, thank you for spotting this. I will send v2 soon. Regards, Kamil > > +} > > The rest looks good to me. > > Regards, > > Boris ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for panthor: Enable compilation on big-endian arch 2026-02-18 15:34 [PATCH i-g-t] panthor: Enable compilation on big-endian arch Kamil Konieczny 2026-02-18 16:16 ` Boris Brezillon @ 2026-02-18 17:31 ` Patchwork 2026-02-18 17:45 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-02-18 17:31 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1517 bytes --] == Series Details == Series: panthor: Enable compilation on big-endian arch URL : https://patchwork.freedesktop.org/series/161768/ State : success == Summary == CI Bug Log - changes from XEIGT_8760_BAT -> XEIGTPW_14569_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 13) ------------------------------ Missing (1): bat-bmg-3 Known issues ------------ Here are the changes found in XEIGTPW_14569_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_pat@pat-index-xe2@render: - bat-ptl-vm: [DMESG-WARN][1] ([Intel XE#7110]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/bat-ptl-vm/igt@xe_pat@pat-index-xe2@render.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/bat-ptl-vm/igt@xe_pat@pat-index-xe2@render.html [Intel XE#7110]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7110 Build changes ------------- * IGT: IGT_8760 -> IGTPW_14569 * Linux: xe-4572-fc9512d31fa2c190f58c85dbdf7313d2d0ad4b0d -> xe-4573-7ee0795cb4f30c9ccc2b8a580faebcefbdf150c5 IGTPW_14569: 14569 IGT_8760: 8760 xe-4572-fc9512d31fa2c190f58c85dbdf7313d2d0ad4b0d: fc9512d31fa2c190f58c85dbdf7313d2d0ad4b0d xe-4573-7ee0795cb4f30c9ccc2b8a580faebcefbdf150c5: 7ee0795cb4f30c9ccc2b8a580faebcefbdf150c5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/index.html [-- Attachment #2: Type: text/html, Size: 2093 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for panthor: Enable compilation on big-endian arch 2026-02-18 15:34 [PATCH i-g-t] panthor: Enable compilation on big-endian arch Kamil Konieczny 2026-02-18 16:16 ` Boris Brezillon 2026-02-18 17:31 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-02-18 17:45 ` Patchwork 2026-02-18 19:08 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-02-18 19:43 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-02-18 17:45 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4684 bytes --] == Series Details == Series: panthor: Enable compilation on big-endian arch URL : https://patchwork.freedesktop.org/series/161768/ State : success == Summary == CI Bug Log - changes from IGT_8760 -> IGTPW_14569 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/index.html Participating hosts (42 -> 40) ------------------------------ Additional (1): bat-jsl-1 Missing (3): bat-dg2-13 fi-snb-2520m fi-pnv-d510 Known issues ------------ Here are the changes found in IGTPW_14569 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests@dma_fence_chain: - bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#15249]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/bat-jsl-1/igt@dmabuf@all-tests@dma_fence_chain.html * igt@gem_huc_copy@huc-copy: - bat-jsl-1: NOTRUN -> [SKIP][2] ([i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/bat-jsl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][4] -> [DMESG-FAIL][5] ([i915#12061]) +1 other test dmesg-fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8760/bat-mtlp-8/igt@i915_selftest@live.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-dg2-9: [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8760/bat-dg2-9/igt@i915_selftest@live@workarounds.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/bat-dg2-9/igt@i915_selftest@live@workarounds.html * igt@intel_hwmon@hwmon-read: - bat-jsl-1: NOTRUN -> [SKIP][8] ([i915#7707]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/bat-jsl-1/igt@intel_hwmon@hwmon-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][9] ([i915#4103]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-jsl-1: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9886]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-jsl-1: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_setmode@basic-clone-single-crtc: - bat-jsl-1: NOTRUN -> [SKIP][12] ([i915#3555]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-mtlp-9: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] +1 other test pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8760/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#15249]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15249 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8760 -> IGTPW_14569 * Linux: CI_DRM_18003 -> CI_DRM_18004 CI-20190529: 20190529 CI_DRM_18003: fc9512d31fa2c190f58c85dbdf7313d2d0ad4b0d @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18004: 7ee0795cb4f30c9ccc2b8a580faebcefbdf150c5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14569: 14569 IGT_8760: 8760 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/index.html [-- Attachment #2: Type: text/html, Size: 5797 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for panthor: Enable compilation on big-endian arch 2026-02-18 15:34 [PATCH i-g-t] panthor: Enable compilation on big-endian arch Kamil Konieczny ` (2 preceding siblings ...) 2026-02-18 17:45 ` ✓ i915.CI.BAT: " Patchwork @ 2026-02-18 19:08 ` Patchwork 2026-02-19 14:36 ` Kamil Konieczny 2026-02-18 19:43 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2026-02-18 19:08 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 48880 bytes --] == Series Details == Series: panthor: Enable compilation on big-endian arch URL : https://patchwork.freedesktop.org/series/161768/ State : failure == Summary == CI Bug Log - changes from XEIGT_8760_FULL -> XEIGTPW_14569_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14569_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14569_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14569_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][1] +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-lnl: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html Known issues ------------ Here are the changes found in XEIGTPW_14569_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#3279]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#3658]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#7059]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-9/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +9 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2328]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#607]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1477]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#610]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2191]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#367]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-3/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1512]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-8/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#367]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-9/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +10 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#3432]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +4 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2325]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-max: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#306]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#373]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-2/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252]) +7 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-10/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-c-edp-1: - shard-lnl: NOTRUN -> [FAIL][26] ([Intel XE#6968]) +7 other tests fail [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-8/igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-c-edp-1.html * igt@kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][27] ([Intel XE#1178] / [Intel XE#3304]) +3 other tests fail [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#3304]) +1 other test fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-4/igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#307] / [Intel XE#6974]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-1/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2390] / [Intel XE#6974]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#6974]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#6974]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2321]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1424]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2320]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#309]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#323]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2286]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1508]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1340]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#4354]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-8/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#4294]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#2244]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-5/igt@kms_dsc@dsc-basic.html - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2244]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@kms_dsc@dsc-basic.html * igt@kms_fbcon_fbt@psr: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#776]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-6/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#702]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-8/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#703]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-2/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [PASS][48] -> [INCOMPLETE][49] ([Intel XE#2049] / [Intel XE#2597]) +3 other tests incomplete [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-10/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1421]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-1/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#7178]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7178]) +5 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1397] / [Intel XE#1745]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1397]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7179]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-10/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#656]) +20 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#4141]) +11 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#6312]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2311]) +15 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7061]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#651]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2350]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-10/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2313]) +25 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_joiner@basic-force-big-joiner: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#7086]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_plane_lowres@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#599]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-4/igt@kms_plane_lowres@tiling-yf.html - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2393]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#6886]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2938]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2391]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-8/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#3309]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2893]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr2-no-drrs@edp-1: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-3/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html * igt@kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1406]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-2/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@psr2-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-3/igt@kms_psr@psr2-primary-page-flip.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [PASS][79] -> [FAIL][80] ([Intel XE#6361]) +2 other tests fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-6/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1435]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#6503]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-1/igt@kms_sharpness_filter@filter-basic.html * igt@kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#1499]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-6/igt@kms_vrr@flipline.html * igt@xe_compute@eu-busy-10s: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#6599]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-1/igt@xe_compute@eu-busy-10s.html * igt@xe_eudebug@basic-vm-access-parameters-userptr-faultable: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#4837]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-5/igt@xe_eudebug@basic-vm-access-parameters-userptr-faultable.html * igt@xe_eudebug@multigpu-basic-client: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#4837]) +6 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-10/igt@xe_eudebug@multigpu-basic-client.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_eudebug_online@pagefault-one-of-many: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#6665]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-8/igt@xe_eudebug_online@pagefault-one-of-many.html * igt@xe_eudebug_online@stopped-thread: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#4837] / [Intel XE#6665]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@xe_eudebug_online@stopped-thread.html * igt@xe_eudebug_sriov@deny-sriov: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#5793]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@xe_eudebug_sriov@deny-sriov.html * igt@xe_evict@evict-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#688]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@xe_evict@evict-cm-threads-small.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][92] -> [INCOMPLETE][93] ([Intel XE#6321]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-small-external-multi-queue: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#7140]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-3/igt@xe_evict@evict-small-external-multi-queue.html * igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-bmg: [PASS][95] -> [INCOMPLETE][96] ([Intel XE#2594]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-5/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-rebind.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-4/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1392]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt@xe_exec_basic@multigpu-once-basic-defer-bind: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2322]) +6 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-2/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html * igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7136]) +12 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-4/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html * igt@xe_exec_fault_mode@twice-multi-queue-rebind-prefetch: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#7136]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@xe_exec_fault_mode@twice-multi-queue-rebind-prefetch.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#6874]) +33 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-2/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#6874]) +13 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-1/igt@xe_exec_multi_queue@two-queues-preempt-mode-userptr-invalidate.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][103] ([Intel XE#7098]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-5/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_threads@threads-many-queues: - shard-lnl: NOTRUN -> [FAIL][104] ([Intel XE#7166]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-1/igt@xe_exec_threads@threads-many-queues.html - shard-bmg: NOTRUN -> [FAIL][105] ([Intel XE#7166]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-2/igt@xe_exec_threads@threads-many-queues.html * igt@xe_exec_threads@threads-multi-queue-cm-basic: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#7138]) +7 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-2/igt@xe_exec_threads@threads-multi-queue-cm-basic.html * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#7138]) +9 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html * igt@xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#2833]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-4/igt@xe_live_ktest@xe_eudebug.html * igt@xe_mmap@pci-membarrier-bad-object: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#5100]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-1/igt@xe_mmap@pci-membarrier-bad-object.html * igt@xe_module_load@load: - shard-bmg: ([PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134]) -> ([PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [SKIP][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160]) ([Intel XE#2457]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-5/igt@xe_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-8/igt@xe_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-8/igt@xe_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-3/igt@xe_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-3/igt@xe_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-6/igt@xe_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-7/igt@xe_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-10/igt@xe_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-10/igt@xe_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-10/igt@xe_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-3/igt@xe_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-9/igt@xe_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-9/igt@xe_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-2/igt@xe_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-5/igt@xe_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-2/igt@xe_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-6/igt@xe_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-6/igt@xe_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-1/igt@xe_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-7/igt@xe_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-1/igt@xe_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-4/igt@xe_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-4/igt@xe_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-4/igt@xe_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-1/igt@xe_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-10/igt@xe_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-10/igt@xe_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-3/igt@xe_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-5/igt@xe_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-4/igt@xe_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-4/igt@xe_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-4/igt@xe_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-1/igt@xe_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-1/igt@xe_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-5/igt@xe_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-2/igt@xe_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-2/igt@xe_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-2/igt@xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-6/igt@xe_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-6/igt@xe_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-8/igt@xe_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-3/igt@xe_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-8/igt@xe_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-8/igt@xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-10/igt@xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-4/igt@xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-9/igt@xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-9/igt@xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-7/igt@xe_module_load@load.html * igt@xe_multigpu_svm@mgpu-coherency-prefetch: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#6964]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-8/igt@xe_multigpu_svm@mgpu-coherency-prefetch.html * igt@xe_pm_residency@aspm_link_residency: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#7271]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-8/igt@xe_pm_residency@aspm_link_residency.html * igt@xe_pmu@all-fn-engine-activity-load: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#4650]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-1/igt@xe_pmu@all-fn-engine-activity-load.html * igt@xe_pxp@pxp-termination-key-update-post-suspend: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#4733]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-1/igt@xe_pxp@pxp-termination-key-update-post-suspend.html * igt@xe_query@multigpu-query-hwconfig: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#944]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-5/igt@xe_query@multigpu-query-hwconfig.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#944]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_sriov_admin@exec-quantum-write-readback-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#7174]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-6/igt@xe_sriov_admin@exec-quantum-write-readback-vfs-disabled.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#4130]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-1/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html * igt@xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#3342]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-7/igt@xe_sriov_flr@flr-each-isolation.html - shard-bmg: NOTRUN -> [FAIL][170] ([Intel XE#6569]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-10/igt@xe_sriov_flr@flr-each-isolation.html #### Possible fixes #### * igt@kms_atomic_transition@plane-all-transition-nonblocking: - shard-bmg: [INCOMPLETE][171] ([Intel XE#5457] / [Intel XE#6819]) -> [PASS][172] +1 other test pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition-nonblocking.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-4/igt@kms_atomic_transition@plane-all-transition-nonblocking.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][173] ([Intel XE#7084]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2: - shard-bmg: [INCOMPLETE][175] -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][177] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][178] +1 other test pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma: - shard-lnl: [FAIL][179] ([Intel XE#5625]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early: - shard-bmg: [ABORT][181] -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early.html #### Warnings #### * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][183] ([Intel XE#2426]) -> [SKIP][184] ([Intel XE#2509]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8760/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5457 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166 [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7271]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7271 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8760 -> IGTPW_14569 * Linux: xe-4572-fc9512d31fa2c190f58c85dbdf7313d2d0ad4b0d -> xe-4573-7ee0795cb4f30c9ccc2b8a580faebcefbdf150c5 IGTPW_14569: 14569 IGT_8760: 8760 xe-4572-fc9512d31fa2c190f58c85dbdf7313d2d0ad4b0d: fc9512d31fa2c190f58c85dbdf7313d2d0ad4b0d xe-4573-7ee0795cb4f30c9ccc2b8a580faebcefbdf150c5: 7ee0795cb4f30c9ccc2b8a580faebcefbdf150c5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/index.html [-- Attachment #2: Type: text/html, Size: 54646 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ Xe.CI.FULL: failure for panthor: Enable compilation on big-endian arch 2026-02-18 19:08 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-02-19 14:36 ` Kamil Konieczny 0 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2026-02-19 14:36 UTC (permalink / raw) To: igt-dev; +Cc: I915-ci-infra Hi igt-dev, On 2026-02-18 at 19:08:07 -0000, Patchwork wrote: > == Series Details == > > Series: panthor: Enable compilation on big-endian arch > URL : https://patchwork.freedesktop.org/series/161768/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8760_FULL -> XEIGTPW_14569_FULL > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_14569_FULL absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_14569_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 (2 -> 2) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in XEIGTPW_14569_FULL: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping: > - shard-bmg: NOTRUN -> [SKIP][1] +4 other tests skip > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html > > * igt@kms_plane@pixel-format-yf-tiled-modifier: > - shard-lnl: NOTRUN -> [SKIP][2] > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html > Unrelated to Panthor change (non-Intel HW). Regards, Kamil > > Known issues > ------------ > > Here are the changes found in XEIGTPW_14569_FULL that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: > - shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#3279]) > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14569/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html > ...cut... ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for panthor: Enable compilation on big-endian arch 2026-02-18 15:34 [PATCH i-g-t] panthor: Enable compilation on big-endian arch Kamil Konieczny ` (3 preceding siblings ...) 2026-02-18 19:08 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-02-18 19:43 ` Patchwork 2026-02-19 14:37 ` Kamil Konieczny 4 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2026-02-18 19:43 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 133891 bytes --] == Series Details == Series: panthor: Enable compilation on big-endian arch URL : https://patchwork.freedesktop.org/series/161768/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18004_full -> IGTPW_14569_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14569_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14569_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_14569/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14569_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg2: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-5/igt@i915_pm_rpm@system-suspend-execbuf.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-6/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [PASS][3] -> [ABORT][4] +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_flip@flip-vs-suspend.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier: - shard-mtlp: NOTRUN -> [SKIP][5] +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][6] +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html - shard-dg1: NOTRUN -> [SKIP][8] +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-13/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][9] +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: NOTRUN -> [SKIP][10] +4 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [FAIL][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html #### Warnings #### * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-rkl: [SKIP][12] ([i915#14544]) -> [SKIP][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [SKIP][14] ([i915#15128]) -> [FAIL][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html New tests --------- New tests have been introduced between CI_DRM_18004_full and IGTPW_14569_full: ### New IGT tests (2) ### * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [3.48] s * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-d-dp-3: - Statuses : 1 pass(s) - Exec time: [3.34] s Known issues ------------ Here are the changes found in IGTPW_14569_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-3/igt@device_reset@cold-reset-bound.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-7/igt@gem_ccs@block-copy-compressed.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-10/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-snb6/igt@gem_ctx_persistence@engines-queued.html * igt@gem_eio@reset-stress@blt: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#15314]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-5/igt@gem_eio@reset-stress@blt.html * igt@gem_eio@reset-stress@bsd: - shard-snb: NOTRUN -> [FAIL][22] ([i915#8898]) +1 other test fail [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-snb1/igt@gem_eio@reset-stress@bsd.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-18/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#4525]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-7/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#14544] / [i915#4525]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#6334]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-7/igt@gem_exec_capture@capture-invisible.html - shard-rkl: NOTRUN -> [SKIP][27] ([i915#6334]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@gem_exec_capture@capture-invisible.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#6334]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-18/igt@gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-2/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-7/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#6344]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][32] ([i915#11965]) +4 other tests fail [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-3/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-14/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#14544] / [i915#3281]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt-active: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3281]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-3/igt@gem_exec_reloc@basic-wc-gtt-active.html * igt@gem_exec_reloc@basic-write-read: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-13/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-3/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +10 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][41] -> [INCOMPLETE][42] ([i915#13356]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-7/igt@gem_exec_suspend@basic-s0@smem.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_lmem_swapping@heavy-multi: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4613]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-6/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-glk: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@massive: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#14544] / [i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-random: - shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#4613]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +6 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-7/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4083]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-3/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4083]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-1/igt@gem_mmap_wc@pf-nonblock.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4083]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-16/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3282]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-16/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@write-display: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3282]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-5/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3282]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#3282]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#14544] / [i915#3282]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][59] ([i915#14702] / [i915#2658]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@fail-invalid-protected-context: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-4/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4270]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-14/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@yf-tiled-ccs-to-linear: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8428]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-4/igt@gem_render_copy@yf-tiled-ccs-to-linear.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#5190] / [i915#8428]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4079]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4079]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-rkl: NOTRUN -> [SKIP][66] ([i915#8411]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [PASS][67] -> [INCOMPLETE][68] ([i915#13809]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-8/igt@gem_softpin@noreloc-s3.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_pread_basic@basic: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#15657]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-5/igt@gem_tiled_pread_basic@basic.html - shard-rkl: NOTRUN -> [SKIP][70] ([i915#15656]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3297] / [i915#3323]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282] / [i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282] / [i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-2/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-7/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#2856]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-6/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#2527]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-14/igt@gen9_exec_parse@bb-start-cmd.html - shard-tglu: NOTRUN -> [SKIP][79] ([i915#2527] / [i915#2856]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-3/igt@gen9_exec_parse@bb-start-cmd.html - shard-dg2: NOTRUN -> [SKIP][80] ([i915#2856]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-1/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#2527]) +5 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@gen9_exec_parse@unaligned-access.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#14073]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-8/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_drm_fdinfo@virtual-busy-hang-all: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#14118]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy-hang-all.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#8399]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#6590]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-8/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: NOTRUN -> [FAIL][86] ([i915#12964]) +1 other test fail [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#7984]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#6245]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-4/igt@i915_query@hwconfig_table.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu-1: NOTRUN -> [INCOMPLETE][89] ([i915#4817] / [i915#7443]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#6645]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-glk10: NOTRUN -> [INCOMPLETE][91] ([i915#4817]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk10/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-untiled: - shard-glk: [PASS][92] -> [INCOMPLETE][93] ([i915#4817]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-glk9/igt@i915_suspend@fence-restore-untiled.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk5/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@sysfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][94] ([i915#4817]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk1/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4212]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-8/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#12454] / [i915#12712]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][97] ([i915#12761]) +1 other test incomplete [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-b-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#1769] / [i915#3555]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [PASS][99] -> [FAIL][100] ([i915#5956]) +1 other test fail [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#4538] / [i915#5286]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#5286]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#5286]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#5286]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: [PASS][105] -> [FAIL][106] ([i915#5138]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#3828]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#3828]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#3828]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][110] +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-5/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#3638]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#6187]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5190]) +6 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-18/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#14544]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][116] +7 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-4/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][118] ([i915#12313]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#14544] / [i915#6095]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#6095]) +58 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#12313]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#12313]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][124] ([i915#12313]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-14/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#6095]) +103 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#6095]) +62 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-glk: NOTRUN -> [SKIP][127] +215 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-glk10: NOTRUN -> [SKIP][128] +172 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#12313]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#6095]) +14 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#6095]) +24 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-9/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#14098] / [i915#6095]) +43 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6095]) +39 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#6095]) +199 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#11151] / [i915#7828]) +6 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-8/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#11151] / [i915#7828]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#11151] / [i915#7828]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-7/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#11151] / [i915#14544] / [i915#7828]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd.html - shard-dg1: NOTRUN -> [SKIP][139] ([i915#11151] / [i915#7828]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#11151] / [i915#7828]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-6/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#11151] / [i915#7828]) +7 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color_pipeline@plane-ctm3x4@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [FAIL][142] ([i915#15522]) +9 other tests fail [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-6/igt@kms_color_pipeline@plane-ctm3x4@pipe-a-edp-1.html * igt@kms_content_protection@atomic-dpms: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6944] / [i915#9424]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#14544] / [i915#6944] / [i915#9424]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#15330]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][146] ([i915#15330]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-13/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#15330]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-dg2: NOTRUN -> [SKIP][148] ([i915#15330]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#15330] / [i915#3116] / [i915#3299]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-9/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#15330]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-2/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#9424]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#6944] / [i915#7118]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-4/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#7118] / [i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][154] ([i915#7173]) +1 other test fail [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-11/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-3.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#8814]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#13049]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][157] -> [FAIL][158] ([i915#13566]) +2 other tests fail [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][159] ([i915#13566]) +2 other tests fail [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3555]) +5 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#13049]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-tglu: [PASS][162] -> [FAIL][163] ([i915#13566]) +1 other test fail [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-tglu-9/igt@kms_cursor_crc@cursor-random-64x21.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-10/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-snb: NOTRUN -> [SKIP][164] +105 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-snb5/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#8814]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#13049]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#13049]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#4103]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic: - shard-dg1: [PASS][169] -> [DMESG-WARN][170] ([i915#4423]) +1 other test dmesg-warn [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg1-17/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-16/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][171] +26 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#9809]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#13046] / [i915#5354]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][174] ([i915#15588] / [i915#2346]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#9833]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#13691]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-16/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#1769] / [i915#3555] / [i915#3804]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#3804]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3804]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#1257]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-4/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#13707]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#13707]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-dg1: NOTRUN -> [SKIP][183] ([i915#13707]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-12/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-tglu: NOTRUN -> [SKIP][184] ([i915#13707]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#13707]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3840] / [i915#9688]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3840]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3840]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-17/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-7/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][193] ([i915#9878]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk5/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3469]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-4/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#2065] / [i915#4854]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-2/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#1839]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#9337]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#3637] / [i915#9934]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#9934]) +6 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-4/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#14544] / [i915#9934]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][201] ([i915#4839]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk6/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3637] / [i915#9934]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-3/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#9934]) +5 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#9934]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-16/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3637] / [i915#9934]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][206] ([i915#12745] / [i915#4839]) +1 other test incomplete [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk6/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-rkl: [PASS][207] -> [INCOMPLETE][208] ([i915#6113]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-8/igt@kms_flip@flip-vs-suspend-interruptible.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2: - shard-rkl: NOTRUN -> [INCOMPLETE][209] ([i915#6113]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][210] ([i915#12745]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#15643]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#15643]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#15643]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#15643]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#15643]) +5 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#15643] / [i915#5190]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_force_connector_basic@force-connector-state: - shard-mtlp: [PASS][217] -> [SKIP][218] ([i915#15672]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-mtlp-6/igt@kms_force_connector_basic@force-connector-state.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#8708]) +4 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#1825]) +18 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [PASS][221] -> [INCOMPLETE][222] ([i915#10056]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-suspend.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#8708]) +5 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][224] +19 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#1825]) +35 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#14544] / [i915#1825]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#8708]) +5 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][228] +11 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][229] +31 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#15102]) +13 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#9766]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#15102]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#15104]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#15104]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#15102]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html - shard-rkl: NOTRUN -> [SKIP][236] ([i915#14544] / [i915#15102]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#15102] / [i915#3458]) +5 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#15102] / [i915#3023]) +18 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#15102]) +8 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#5354]) +15 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#15102] / [i915#3458]) +8 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-2/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle: - shard-rkl: [PASS][243] -> [SKIP][244] ([i915#3555] / [i915#8228]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_hdr@static-toggle.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#8228]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#15459]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-12/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#13688]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-10/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#15460]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#15460]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#15459]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#15459]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#15458]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#6301]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-12/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#6301]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-7/igt@kms_panel_fitting@legacy.html - shard-dg2: NOTRUN -> [SKIP][255] ([i915#6301]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-7/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][256] ([i915#12756] / [i915#13409] / [i915#13476]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][257] ([i915#13409] / [i915#13476]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#14712]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-14/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#15608]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-5.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk10: NOTRUN -> [FAIL][260] ([i915#10647] / [i915#12169]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][261] ([i915#10647]) +1 other test fail [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#13958] / [i915#14544]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#14259]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][264] ([i915#14259]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-18/igt@kms_plane_multiple@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][265] ([i915#14259]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-10/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][266] ([i915#14259]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-4/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-tglu: NOTRUN -> [SKIP][267] ([i915#15329]) +4 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#15329]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#15329]) +4 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#15329] / [i915#3555] / [i915#6953]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#15329]) +3 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#5354]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-14/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#5354]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#14544] / [i915#9685]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#8430]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-7/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#15073]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#4077]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-14/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][278] -> [SKIP][279] ([i915#15073]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][280] -> [SKIP][281] ([i915#15073]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#15073]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@package-g7: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#15403]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-2/igt@kms_pm_rpm@package-g7.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#6524]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_prime@d3hot.html - shard-dg2: NOTRUN -> [SKIP][285] ([i915#6524] / [i915#6805]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][286] ([i915#11520]) +3 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk9/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#11520]) +4 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#11520]) +5 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#11520]) +7 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][290] ([i915#11520]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-snb6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][291] ([i915#11520]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-14/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#12316]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk10: NOTRUN -> [SKIP][293] ([i915#11520]) +4 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#11520]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#11520] / [i915#14544]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#9683]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#9732]) +5 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_psr@fbc-pr-cursor-mmap-cpu.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +10 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-12/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#9732]) +18 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-7/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#1072] / [i915#9732]) +14 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-3/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#1072] / [i915#14544] / [i915#9732]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#9688]) +14 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#1072] / [i915#9732]) +17 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#4077] / [i915#9688]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-8/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#9685]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk10: NOTRUN -> [INCOMPLETE][306] ([i915#15500]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#5289]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#5289]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#12755]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#12755]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#3555]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html - shard-dg2: NOTRUN -> [SKIP][312] ([i915#3555]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html - shard-dg1: NOTRUN -> [SKIP][313] ([i915#3555]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-12/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-glk10: NOTRUN -> [ABORT][314] ([i915#13179]) +1 other test abort [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk10/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_setmode@basic: - shard-tglu: [PASS][315] -> [FAIL][316] ([i915#15106]) +2 other tests fail [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-tglu-6/igt@kms_setmode@basic.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-7/igt@kms_setmode@basic.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#3555]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#8623]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][319] ([i915#8623]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][320] ([i915#8623]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#8623]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][322] ([i915#8623]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: [PASS][323] -> [INCOMPLETE][324] ([i915#12276]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-glk1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#3555] / [i915#8808]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-3/igt@kms_vrr@flip-suspend.html - shard-rkl: NOTRUN -> [SKIP][326] ([i915#15243] / [i915#3555]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#14544] / [i915#9906]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#7387]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-2/igt@perf@global-sseu-config.html - shard-dg2: NOTRUN -> [SKIP][329] ([i915#7387]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-5/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#2434]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-2/igt@perf@mi-rpc.html * igt@perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#2433]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-17/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][332] -> [FAIL][333] ([i915#4349]) +4 other tests fail [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@busy-idle-check-all@bcs0: - shard-mtlp: [PASS][334] -> [FAIL][335] ([i915#4349]) +2 other tests fail [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@bcs0.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-4/igt@perf_pmu@busy-idle-check-all@bcs0.html * igt@perf_pmu@rc6-suspend: - shard-rkl: [PASS][336] -> [INCOMPLETE][337] ([i915#13520]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-7/igt@perf_pmu@rc6-suspend.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#8516]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#3708]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-3/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@coherency-gtt: - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#3708] / [i915#4077]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-6/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#3708]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-1/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#9917]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-7/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#9917]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_eio@in-flight-contexts-1us: - shard-dg2: [DMESG-WARN][344] -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-6/igt@gem_eio@in-flight-contexts-1us.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-6/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_eio@kms: - shard-dg1: [DMESG-WARN][346] ([i915#4423]) -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg1-17/igt@gem_eio@kms.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-17/igt@gem_eio@kms.html * igt@gem_exec_big@single: - shard-tglu: [ABORT][348] ([i915#11713]) -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-tglu-6/igt@gem_exec_big@single.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-7/igt@gem_exec_big@single.html * igt@gem_exec_suspend@basic-s0@smem: - shard-rkl: [ABORT][350] ([i915#15131]) -> [PASS][351] +1 other test pass [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-1/igt@gem_exec_suspend@basic-s0@smem.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: [INCOMPLETE][352] ([i915#13356]) -> [PASS][353] +1 other test pass [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@gem_exec_suspend@basic-s3.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@gem_exec_suspend@basic-s3.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: [SKIP][354] ([i915#4270]) -> [PASS][355] [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [INCOMPLETE][356] ([i915#4817]) -> [PASS][357] +1 other test pass [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-rkl: [INCOMPLETE][358] ([i915#15582]) -> [PASS][359] [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_color@deep-color: - shard-dg2: [SKIP][360] ([i915#12655] / [i915#3555]) -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-4/igt@kms_color@deep-color.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-11/igt@kms_color@deep-color.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [FAIL][362] ([i915#13566]) -> [PASS][363] +3 other tests pass [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: [FAIL][364] ([i915#13566]) -> [PASS][365] +1 other test pass [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-128x42.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-suspend: - shard-rkl: [INCOMPLETE][366] ([i915#12358] / [i915#14152]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][368] ([i915#1257]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-5/igt@kms_dp_aux_dev.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-11/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: [SKIP][370] ([i915#13749]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-3/igt@kms_dp_link_training@non-uhbr-sst.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_draw_crc@draw-method-render: - shard-snb: [INCOMPLETE][372] -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-snb4/igt@kms_draw_crc@draw-method-render.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-snb1/igt@kms_draw_crc@draw-method-render.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: [TIMEOUT][374] ([i915#14033]) -> [PASS][375] +1 other test pass [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render: - shard-dg2: [FAIL][376] ([i915#15389] / [i915#6880]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-mtlp: [ABORT][378] ([i915#13562]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html * igt@kms_hdmi_inject@inject-4k: - shard-mtlp: [SKIP][380] -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-5/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdr@static-swap: - shard-dg2: [SKIP][382] ([i915#3555] / [i915#8228]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-3/igt@kms_hdr@static-swap.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-11/igt@kms_hdr@static-swap.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [SKIP][384] ([i915#9340]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][386] ([i915#15073]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][388] ([i915#15073]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html #### Warnings #### * igt@device_reset@cold-reset-bound: - shard-rkl: [SKIP][390] ([i915#11078]) -> [SKIP][391] ([i915#11078] / [i915#14544]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-7/igt@device_reset@cold-reset-bound.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@device_reset@cold-reset-bound.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: [SKIP][392] ([i915#14544] / [i915#6335]) -> [SKIP][393] ([i915#6335]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: [SKIP][394] ([i915#4525]) -> [SKIP][395] ([i915#14544] / [i915#4525]) +2 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: [SKIP][396] ([i915#14544] / [i915#4525]) -> [SKIP][397] ([i915#4525]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: [SKIP][398] ([i915#14544] / [i915#3281]) -> [SKIP][399] ([i915#3281]) +5 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-read: - shard-rkl: [SKIP][400] ([i915#3281]) -> [SKIP][401] ([i915#14544] / [i915#3281]) +2 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-read.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_huc_copy@huc-copy: - shard-rkl: [SKIP][402] ([i915#2190]) -> [SKIP][403] ([i915#14544] / [i915#2190]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-3/igt@gem_huc_copy@huc-copy.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: [SKIP][404] ([i915#14544] / [i915#4613]) -> [SKIP][405] ([i915#4613]) +1 other test skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@verify: - shard-rkl: [SKIP][406] ([i915#4613]) -> [SKIP][407] ([i915#14544] / [i915#4613]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-7/igt@gem_lmem_swapping@verify.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@gem_lmem_swapping@verify.html * igt@gem_pread@exhaustion: - shard-rkl: [SKIP][408] ([i915#14544] / [i915#3282]) -> [SKIP][409] ([i915#3282]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@gem_pread@exhaustion.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@gem_pread@exhaustion.html * igt@gem_readwrite@write-bad-handle: - shard-rkl: [SKIP][410] ([i915#3282]) -> [SKIP][411] ([i915#14544] / [i915#3282]) +1 other test skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-5/igt@gem_readwrite@write-bad-handle.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@gem_readwrite@write-bad-handle.html * igt@gem_userptr_blits@access-control: - shard-rkl: [SKIP][412] ([i915#14544] / [i915#3297]) -> [SKIP][413] ([i915#3297]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@gem_userptr_blits@access-control.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: [SKIP][414] ([i915#3297]) -> [SKIP][415] ([i915#14544] / [i915#3297]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-after-close.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@bb-large: - shard-rkl: [SKIP][416] ([i915#2527]) -> [SKIP][417] ([i915#14544] / [i915#2527]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-5/igt@gen9_exec_parse@bb-large.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@gen9_exec_parse@bb-large.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: [SKIP][418] ([i915#14544] / [i915#8399]) -> [SKIP][419] ([i915#8399]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-4/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: [SKIP][420] ([i915#14498]) -> [SKIP][421] ([i915#14498] / [i915#14544]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-rkl: [SKIP][422] ([i915#5286]) -> [SKIP][423] ([i915#14544] / [i915#5286]) +1 other test skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: [SKIP][424] ([i915#14544] / [i915#5286]) -> [SKIP][425] ([i915#5286]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: [SKIP][426] ([i915#3828]) -> [SKIP][427] ([i915#3828] / [i915#4423]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg1-12/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-16/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: [SKIP][428] -> [SKIP][429] ([i915#14544]) +6 other tests skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][430] ([i915#14544] / [i915#6095]) -> [SKIP][431] ([i915#6095]) +7 other tests skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][432] ([i915#6095]) -> [SKIP][433] ([i915#14544] / [i915#6095]) +3 other tests skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][434] ([i915#14098] / [i915#6095]) -> [SKIP][435] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-rkl: [SKIP][436] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][437] ([i915#14098] / [i915#6095]) +8 other tests skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: [SKIP][438] ([i915#12805]) -> [SKIP][439] ([i915#12805] / [i915#14544]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][440] ([i915#12313] / [i915#14544]) -> [SKIP][441] ([i915#12313]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-rkl: [SKIP][442] ([i915#14544] / [i915#3742]) -> [SKIP][443] ([i915#3742]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_cdclk@mode-transition.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_audio@hdmi-audio: - shard-rkl: [SKIP][444] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][445] ([i915#11151] / [i915#7828]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_chamelium_audio@hdmi-audio.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_chamelium_audio@hdmi-audio.html * igt@kms_content_protection@atomic-hdcp14: - shard-rkl: [SKIP][446] ([i915#14544] / [i915#6944]) -> [SKIP][447] ([i915#6944]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_content_protection@atomic-hdcp14.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: [SKIP][448] ([i915#15330] / [i915#3116]) -> [SKIP][449] ([i915#14544] / [i915#15330] / [i915#3116]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-rkl: [SKIP][450] ([i915#14544] / [i915#6944] / [i915#9424]) -> [SKIP][451] ([i915#6944] / [i915#9424]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_content_protection@mei-interface.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_content_protection@mei-interface.html - shard-dg1: [SKIP][452] ([i915#9433]) -> [SKIP][453] ([i915#6944] / [i915#9424]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg1-13/igt@kms_content_protection@mei-interface.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-16/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: [SKIP][454] ([i915#6944] / [i915#7118]) -> [FAIL][455] ([i915#7173]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-6/igt@kms_content_protection@srm.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-11/igt@kms_content_protection@srm.html * igt@kms_content_protection@suspend-resume: - shard-rkl: [SKIP][456] ([i915#6944]) -> [SKIP][457] ([i915#14544] / [i915#6944]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-3/igt@kms_content_protection@suspend-resume.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_content_protection@suspend-resume.html * igt@kms_content_protection@uevent: - shard-dg2: [FAIL][458] ([i915#1339] / [i915#7173]) -> [SKIP][459] ([i915#6944] / [i915#7118] / [i915#9424]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-11/igt@kms_content_protection@uevent.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-8/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent-hdcp14: - shard-dg2: [SKIP][460] ([i915#6944]) -> [FAIL][461] ([i915#7173]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-3/igt@kms_content_protection@uevent-hdcp14.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-11/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg1: [SKIP][462] -> [SKIP][463] ([i915#4423]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg1-16/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-13/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][464] ([i915#14544] / [i915#4103]) -> [SKIP][465] ([i915#4103]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: [SKIP][466] ([i915#14544] / [i915#9067]) -> [SKIP][467] ([i915#9067]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: [SKIP][468] ([i915#4103]) -> [SKIP][469] ([i915#14544] / [i915#4103]) +1 other test skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: [SKIP][470] ([i915#13748]) -> [SKIP][471] ([i915#13748] / [i915#14544]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-3/igt@kms_dp_link_training@uhbr-sst.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_feature_discovery@display-2x: - shard-rkl: [SKIP][472] ([i915#14544] / [i915#1839]) -> [SKIP][473] ([i915#1839]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_feature_discovery@display-2x.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: [SKIP][474] ([i915#9337]) -> [SKIP][475] ([i915#14544] / [i915#9337]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-rkl: [SKIP][476] ([i915#14544] / [i915#9934]) -> [SKIP][477] ([i915#9934]) +3 other tests skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_flip@2x-flip-vs-expired-vblank.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: [SKIP][478] ([i915#9934]) -> [SKIP][479] ([i915#14544] / [i915#9934]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: [SKIP][480] ([i915#14544] / [i915#15643]) -> [SKIP][481] ([i915#15643]) +1 other test skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: [SKIP][482] ([i915#15643]) -> [SKIP][483] ([i915#14544] / [i915#15643]) +2 other tests skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: [SKIP][484] ([i915#14544] / [i915#15102]) -> [SKIP][485] ([i915#15102]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][486] ([i915#15102]) -> [SKIP][487] ([i915#14544] / [i915#15102]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [SKIP][488] ([i915#15102] / [i915#3458]) -> [SKIP][489] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#1825]) -> [SKIP][491] ([i915#1825]) +12 other tests skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: [SKIP][492] ([i915#15102] / [i915#3023]) -> [SKIP][493] ([i915#14544] / [i915#15102] / [i915#3023]) +11 other tests skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-rkl: [SKIP][494] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][495] ([i915#15102] / [i915#3023]) +4 other tests skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][496] ([i915#1825]) -> [SKIP][497] ([i915#14544] / [i915#1825]) +7 other tests skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: - shard-dg2: [SKIP][498] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][499] ([i915#15102] / [i915#3458]) +1 other test skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-dg1: [SKIP][500] ([i915#15102] / [i915#3458] / [i915#4423]) -> [SKIP][501] ([i915#15102] / [i915#3458]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][502] ([i915#14544] / [i915#15458]) -> [SKIP][503] ([i915#15458]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-rkl: [SKIP][504] ([i915#14544] / [i915#15329]) -> [SKIP][505] ([i915#15329]) +3 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: [SKIP][506] ([i915#3828]) -> [SKIP][507] ([i915#9340]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][508] ([i915#11520]) -> [SKIP][509] ([i915#11520] / [i915#14544]) +2 other tests skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][510] ([i915#11520] / [i915#14544]) -> [SKIP][511] ([i915#11520]) +4 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: [SKIP][512] ([i915#14544] / [i915#9683]) -> [SKIP][513] ([i915#9683]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: [SKIP][514] ([i915#1072] / [i915#9732]) -> [SKIP][515] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-1/igt@kms_psr@fbc-psr2-primary-blt.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-rkl: [SKIP][516] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][517] ([i915#1072] / [i915#9732]) +7 other tests skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_psr@psr-cursor-mmap-cpu.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: [SKIP][518] ([i915#1072] / [i915#9732]) -> [SKIP][519] ([i915#1072] / [i915#4423] / [i915#9732]) +1 other test skip [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg1-17/igt@kms_psr@psr-sprite-mmap-cpu.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-17/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-rkl: [SKIP][520] ([i915#9685]) -> [SKIP][521] ([i915#14544] / [i915#9685]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: [SKIP][522] ([i915#14544] / [i915#5289]) -> [SKIP][523] ([i915#5289]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: [SKIP][524] ([i915#8623]) -> [SKIP][525] ([i915#14544] / [i915#8623]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][526] ([i915#2436]) -> [SKIP][527] ([i915#14544] / [i915#2436]) [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@event-wait: - shard-rkl: [SKIP][528] ([i915#14544]) -> [SKIP][529] +6 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@perf_pmu@event-wait.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@perf_pmu@event-wait.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15522 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15588 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6645 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8760 -> IGTPW_14569 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18004: 7ee0795cb4f30c9ccc2b8a580faebcefbdf150c5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14569: 14569 IGT_8760: 8760 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/index.html [-- Attachment #2: Type: text/html, Size: 177842 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ i915.CI.Full: failure for panthor: Enable compilation on big-endian arch 2026-02-18 19:43 ` ✗ i915.CI.Full: " Patchwork @ 2026-02-19 14:37 ` Kamil Konieczny 0 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2026-02-19 14:37 UTC (permalink / raw) To: igt-dev; +Cc: I915-ci-infra Hi igt-dev, On 2026-02-18 at 19:43:05 -0000, Patchwork wrote: > == Series Details == > > Series: panthor: Enable compilation on big-endian arch > URL : https://patchwork.freedesktop.org/series/161768/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_18004_full -> IGTPW_14569_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_14569_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_14569_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_14569/index.html > > Participating hosts (9 -> 9) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_14569_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_pm_rpm@system-suspend-execbuf: > - shard-dg2: [PASS][1] -> [ABORT][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-dg2-5/igt@i915_pm_rpm@system-suspend-execbuf.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-6/igt@i915_pm_rpm@system-suspend-execbuf.html > > * igt@kms_flip@flip-vs-suspend: > - shard-rkl: [PASS][3] -> [ABORT][4] +1 other test abort > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-5/igt@kms_flip@flip-vs-suspend.html > > * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier: > - shard-mtlp: NOTRUN -> [SKIP][5] +3 other tests skip > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html > > * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: > - shard-tglu: NOTRUN -> [SKIP][6] +2 other tests skip > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html > > * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier: > - shard-tglu-1: NOTRUN -> [SKIP][7] > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html > - shard-dg1: NOTRUN -> [SKIP][8] +2 other tests skip > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg1-13/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html > > * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: > - shard-dg2: NOTRUN -> [SKIP][9] +2 other tests skip > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html > > * igt@kms_plane@pixel-format-yf-tiled-modifier: > - shard-rkl: NOTRUN -> [SKIP][10] +4 other tests skip > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html > > * igt@kms_pm_dc@dc6-dpms: > - shard-rkl: NOTRUN -> [FAIL][11] > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html > > > #### Warnings #### > > * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: > - shard-rkl: [SKIP][12] ([i915#14544]) -> [SKIP][13] > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html > > * igt@kms_pm_dc@dc6-dpms: > - shard-tglu: [SKIP][14] ([i915#15128]) -> [FAIL][15] > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18004/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html > Unrelated. Regards, Kamil > > New tests > --------- > > New tests have been introduced between CI_DRM_18004_full and IGTPW_14569_full: > > ### New IGT tests (2) ### > > * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-dp-3: > - Statuses : 1 pass(s) > - Exec time: [3.48] s > > * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-d-dp-3: > - Statuses : 1 pass(s) > - Exec time: [3.34] s > > > > Known issues > ------------ > > Here are the changes found in IGTPW_14569_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@device_reset@cold-reset-bound: > - shard-dg2: NOTRUN -> [SKIP][16] ([i915#11078]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14569/shard-dg2-3/igt@device_reset@cold-reset-bound.html > ...cut... ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-02-19 14:37 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-18 15:34 [PATCH i-g-t] panthor: Enable compilation on big-endian arch Kamil Konieczny 2026-02-18 16:16 ` Boris Brezillon 2026-02-19 14:34 ` Kamil Konieczny 2026-02-18 17:31 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-02-18 17:45 ` ✓ i915.CI.BAT: " Patchwork 2026-02-18 19:08 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-02-19 14:36 ` Kamil Konieczny 2026-02-18 19:43 ` ✗ i915.CI.Full: " Patchwork 2026-02-19 14:37 ` Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox