* [PATCH] lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER
@ 2026-02-19 18:52 Jim Cromie
2026-02-19 19:47 ` ✓ Xe.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Jim Cromie @ 2026-02-19 18:52 UTC (permalink / raw)
To: igt-dev; +Cc: Jim Cromie, Gemini CLI
IGT contains numerous hardcoded timing assertions and poll timeouts
(e.g., 150ms in kms_sysfs_edid_timing and 1s in prime_busy) that
appear to be tuned for bare-metal execution.
Specifically, DRM-CI testing of DRM_USE_DYNAMIC_DEBUG=y patchset
triggers spurious timeouts, because toggling the static-keys under
numerous drm_*dbg() callsites takes far longer than just changing the
single word under /sys/module/drm/parameters/debug.
So this patch introduces a "Time Dilator" system to globally scale the
suite's sensitivity, making it adjustable to varying environments. It
adds a global igt_timeout_multiplier, automatically initialized from
the IGT_TIMEOUT_MULTIPLIER environment variable via a library
constructor in lib/igt_poll.c.
The system scales timing in two directions:
1. Clock Dilation: igt_nsec_elapsed() is patched to divide actual
elapsed time by the multiplier. This makes internal test logic
perceive time as moving slower, allowing existing assertions to
pass even when wall-clock duration is longer.
2. Wait Scaling: Standard poll() and ppoll() calls are intercepted via
variadic macros and redirected to wrappers that multiply the
requested timeout duration.
I considered 2 different "dilations" for these, to allow separate
tailoring of the 2 timeout flavors, but had no strong basis to do so,
and it felt like "too many knobs". That said, it might be appropriate
to dilate *only* for drm.debug (/sys/module/drm/parameters/debug)
adjustments.
This should allow at least IGT tests to be adjusted for environmental
variations and kernel configurations, without requiring manual source
modifications for every hardcoded constant.
Assisted-by: Gemini CLI <gemini-cli@google.com>
Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
---
lib/igt_core.c | 7 +++++--
lib/igt_core.h | 8 ++++++++
lib/igt_poll.c | 50 +++++++++++++++++++++++++++++++++++++++++++++++++
lib/meson.build | 6 ++++--
4 files changed, 67 insertions(+), 4 deletions(-)
create mode 100644 lib/igt_poll.c
diff --git a/lib/igt_core.c b/lib/igt_core.c
index 3ee670a41..8a1a07ff6 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -748,6 +748,7 @@ error:
uint64_t igt_nsec_elapsed(struct timespec *start)
{
struct timespec now;
+ uint64_t elapsed;
igt_gettime(&now);
if ((start->tv_sec | start->tv_nsec) == 0) {
@@ -755,8 +756,10 @@ uint64_t igt_nsec_elapsed(struct timespec *start)
return 0;
}
- return ((now.tv_nsec - start->tv_nsec) +
- (uint64_t)NSEC_PER_SEC*(now.tv_sec - start->tv_sec));
+ elapsed = ((now.tv_nsec - start->tv_nsec) +
+ (uint64_t)NSEC_PER_SEC*(now.tv_sec - start->tv_sec));
+
+ return elapsed / igt_timeout_multiplier;
}
void __igt_assert_in_outer_scope(void)
diff --git a/lib/igt_core.h b/lib/igt_core.h
index 6845f853c..4538375ff 100644
--- a/lib/igt_core.h
+++ b/lib/igt_core.h
@@ -44,6 +44,7 @@
#include <stdarg.h>
#include <getopt.h>
#include <unistd.h>
+#include <poll.h>
#ifdef __FreeBSD__
#include "igt_freebsd.h"
@@ -53,6 +54,13 @@
#define IGT_LOG_DOMAIN (NULL)
#endif
+extern double igt_timeout_multiplier;
+int igt_poll(struct pollfd *fds, nfds_t nfds, int timeout);
+int igt_ppoll(struct pollfd *fds, nfds_t nfds,
+ const struct timespec *tmo_p, const sigset_t *sigmask);
+#define poll(...) igt_poll(__VA_ARGS__)
+#define ppoll(...) igt_ppoll(__VA_ARGS__)
+
#ifndef STATIC_ANALYSIS_BUILD
#if defined(__clang_analyzer__) || defined(__COVERITY__) || defined(__KLOCWORK__)
diff --git a/lib/igt_poll.c b/lib/igt_poll.c
new file mode 100644
index 000000000..d94fc902d
--- /dev/null
+++ b/lib/igt_poll.c
@@ -0,0 +1,50 @@
+#include <poll.h>
+#include <time.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include "igt_core.h"
+
+#undef poll
+#undef ppoll
+
+double igt_timeout_multiplier = 1.0;
+
+static void igt_timeout_multiplier_init(void) __attribute__((constructor));
+static void igt_timeout_multiplier_init(void)
+{
+ const char *env = getenv("IGT_TIMEOUT_MULTIPLIER");
+ if (env) {
+ igt_timeout_multiplier = atof(env);
+ if (igt_timeout_multiplier <= 0.0)
+ igt_timeout_multiplier = 1.0;
+ }
+}
+
+int igt_poll(struct pollfd *fds, nfds_t nfds, int timeout)
+{
+ int old_timeout = timeout;
+
+ if (timeout > 0)
+ timeout = (int)(timeout * igt_timeout_multiplier);
+
+ if (igt_timeout_multiplier != 1.0 && old_timeout > 0)
+ igt_debug("igt_poll: scaling timeout %dms -> %dms\n", old_timeout, timeout);
+
+ return poll(fds, nfds, timeout);
+}
+
+int igt_ppoll(struct pollfd *fds, nfds_t nfds,
+ const struct timespec *tmo_p, const sigset_t *sigmask)
+{
+ struct timespec scaled_tmo;
+
+ if (tmo_p) {
+ uint64_t nsec = (uint64_t)tmo_p->tv_sec * NSEC_PER_SEC + tmo_p->tv_nsec;
+ nsec *= igt_timeout_multiplier;
+ scaled_tmo.tv_sec = nsec / NSEC_PER_SEC;
+ scaled_tmo.tv_nsec = nsec % NSEC_PER_SEC;
+ tmo_p = &scaled_tmo;
+ }
+
+ return ppoll(fds, nfds, tmo_p, sigmask);
+}
diff --git a/lib/meson.build b/lib/meson.build
index ea721ecf7..fb7e83543 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -97,6 +97,7 @@ lib_sources = [
'igt_core.c',
'igt_dir.c',
'igt_draw.c',
+ 'igt_poll.c',
'igt_list.c',
'igt_map.c',
'igt_panel.c',
@@ -328,7 +329,7 @@ lib_igt_chipset = declare_dependency(link_with : lin_igt_chipset_build,
include_directories : inc)
lib_igt_perf_build = static_library('igt_perf',
- ['igt_perf.c'],
+ ['igt_perf.c', 'igt_poll.c'],
include_directories : inc)
lib_igt_perf = declare_dependency(link_with : lib_igt_perf_build,
@@ -347,6 +348,7 @@ lib_igt_device_scan_build = static_library('igt_device_scan',
'igt_tools_stub.c',
'intel_device_info.c',
'intel_cmds_info.c',
+ 'igt_poll.c',
],
dependencies : scan_dep,
include_directories : inc)
@@ -362,7 +364,7 @@ lib_igt_drm_clients = declare_dependency(link_with : lib_igt_drm_clients_build,
include_directories : inc)
lib_igt_drm_fdinfo_build = static_library('igt_drm_fdinfo',
- ['igt_drm_fdinfo.c'],
+ ['igt_drm_fdinfo.c', 'igt_poll.c'],
include_directories : inc)
lib_igt_drm_fdinfo = declare_dependency(link_with : lib_igt_drm_fdinfo_build,
--
2.53.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✓ Xe.CI.BAT: success for lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER 2026-02-19 18:52 [PATCH] lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER Jim Cromie @ 2026-02-19 19:47 ` Patchwork 2026-02-19 20:02 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-02-19 19:47 UTC (permalink / raw) To: Jim Cromie; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1293 bytes --] == Series Details == Series: lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER URL : https://patchwork.freedesktop.org/series/161850/ State : success == Summary == CI Bug Log - changes from XEIGT_8763_BAT -> XEIGTPW_14578_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14578_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_waitfence@reltime: - bat-dg2-oem2: [PASS][1] -> [FAIL][2] ([Intel XE#6520]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/bat-dg2-oem2/igt@xe_waitfence@reltime.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/bat-dg2-oem2/igt@xe_waitfence@reltime.html [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520 Build changes ------------- * IGT: IGT_8763 -> IGTPW_14578 IGTPW_14578: 14578 IGT_8763: 8763 xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c: cc2c646d39200973cc76d0fa0851d73c9636c27c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/index.html [-- Attachment #2: Type: text/html, Size: 1855 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER 2026-02-19 18:52 [PATCH] lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER Jim Cromie 2026-02-19 19:47 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-02-19 20:02 ` Patchwork 2026-02-19 21:48 ` ✗ Xe.CI.FULL: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-02-19 20:02 UTC (permalink / raw) To: Jim Cromie; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2514 bytes --] == Series Details == Series: lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER URL : https://patchwork.freedesktop.org/series/161850/ State : success == Summary == CI Bug Log - changes from IGT_8763 -> IGTPW_14578 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/index.html Participating hosts (43 -> 41) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14578 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] ([i915#13400]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/bat-mtlp-8/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-2: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/bat-arlh-2/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/bat-arlh-2/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8763 -> IGTPW_14578 CI-20190529: 20190529 CI_DRM_18007: cc2c646d39200973cc76d0fa0851d73c9636c27c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14578: 14578 IGT_8763: 8763 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/index.html [-- Attachment #2: Type: text/html, Size: 3325 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.FULL: failure for lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER 2026-02-19 18:52 [PATCH] lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER Jim Cromie 2026-02-19 19:47 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-02-19 20:02 ` ✓ i915.CI.BAT: " Patchwork @ 2026-02-19 21:48 ` Patchwork 2026-02-20 2:10 ` ✗ i915.CI.Full: " Patchwork 2026-03-16 19:17 ` [PATCH] " Kamil Konieczny 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-02-19 21:48 UTC (permalink / raw) To: Jim Cromie; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 45742 bytes --] == Series Details == Series: lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER URL : https://patchwork.freedesktop.org/series/161850/ State : failure == Summary == CI Bug Log - changes from XEIGT_8763_FULL -> XEIGTPW_14578_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14578_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14578_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_14578_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-bmg: [PASS][4] -> [ABORT][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html Known issues ------------ Here are the changes found in XEIGTPW_14578_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [PASS][6] -> [FAIL][7] ([Intel XE#4665]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-3/igt@intel_hwmon@hwmon-write.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-7/igt@intel_hwmon@hwmon-write.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear: - shard-lnl: [PASS][8] -> [FAIL][9] ([Intel XE#5993]) +3 other tests fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2370]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2327]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3658]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#7059]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#7059]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +11 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-7/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2328]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1477]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#367]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-4/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#367]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +7 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +10 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#3432]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#3432]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_cdclk@mode-transition: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2724]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-8/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2325]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-5/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-limited-range: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#306]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-4/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2252]) +5 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#373]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-dp-1: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#6969]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-dp-1.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-1: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#6969] / [Intel XE#7006]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-1.html * igt@kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#3278]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-4/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2390] / [Intel XE#6974]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@suspend-resume@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][36] ([Intel XE#1178] / [Intel XE#3304]) +3 other tests fail [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-4/igt@kms_content_protection@suspend-resume@pipe-a-dp-2.html * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1: - shard-bmg: NOTRUN -> [FAIL][37] ([Intel XE#6707]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2320]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1424]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2321]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2321]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#309]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [PASS][43] -> [DMESG-WARN][44] ([Intel XE#5354]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#4354]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-4/igt@kms_dp_link_training@non-uhbr-mst.html - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4354]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-4/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4331]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2244]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2244]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-8/igt@kms_dsc@dsc-with-bpc.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1421]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race@bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][51] ([Intel XE#3098]) +1 other test fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race@bd-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#301]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7178]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7178]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_force_connector_basic@force-edid: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#352]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-8/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#651]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#4141]) +11 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7061]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#6312]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#656]) +22 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2311]) +27 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#7061]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2313]) +32 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#1503]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-5/igt@kms_hdr@invalid-hdr.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-6/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1503]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#7086]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#6911]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#356]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#7283]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7283]) +6 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#599]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-2/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#5020]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#6886]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-2/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1406] / [Intel XE#2893]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#1489]) +6 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-8/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#1406] / [Intel XE#2387]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr-basic: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-3/igt@kms_psr@fbc-psr-basic.html * igt@kms_psr@fbc-psr2-sprite-plane-move@edp-1: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-move@edp-1.html * igt@kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1406]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-2/igt@kms_psr@pr-primary-blt.html * igt@kms_rotation_crc@primary-rotation-270: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#3414] / [Intel XE#3904]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-6/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2413]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_setmode@basic: - shard-bmg: [PASS][88] -> [FAIL][89] ([Intel XE#6361]) +6 other tests fail [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-4/igt@kms_setmode@basic.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-4/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#6361]) +2 other tests fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#1435]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sharpness_filter@invalid-filter-with-plane: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#6503]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-2/igt@kms_sharpness_filter@invalid-filter-with-plane.html * igt@kms_vrr@flip-dpms: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#1499]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-8/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#4227]) +1 other test fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-lnl-6/igt@kms_vrr@flipline.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-8/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2168]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-3/igt@kms_vrr@lobf.html * igt@xe_compute@eu-busy-10s: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#6599]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-7/igt@xe_compute@eu-busy-10s.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2504]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-5/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@basic-exec-queues: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#4837]) +7 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-7/igt@xe_eudebug@basic-exec-queues.html * igt@xe_eudebug@sysfs-toggle: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#4837]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-8/igt@xe_eudebug@sysfs-toggle.html * igt@xe_eudebug_online@pagefault-read-stress: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#6665]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-1/igt@xe_eudebug_online@pagefault-read-stress.html * igt@xe_eudebug_online@resume-one: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-4/igt@xe_eudebug_online@resume-one.html * igt@xe_eudebug_online@set-breakpoint-sigint-debugger: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#4837] / [Intel XE#6665]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-8/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html * igt@xe_eudebug_sriov@deny-eudebug: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#5793]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-7/igt@xe_eudebug_sriov@deny-eudebug.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1392]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2322]) +5 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-4/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@many-multi-queue-userptr-prefetch: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#7136]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-8/igt@xe_exec_fault_mode@many-multi-queue-userptr-prefetch.html * igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#7136]) +9 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-7/igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch.html * igt@xe_exec_multi_queue@many-execs-basic-smem: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#6874]) +22 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-4/igt@xe_exec_multi_queue@many-execs-basic-smem.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-priority: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#6874]) +12 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-6/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-priority.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma: - shard-lnl: [PASS][113] -> [FAIL][114] ([Intel XE#5625]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html * igt@xe_exec_threads@threads-multi-queue-cm-userptr: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#7138]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-cm-userptr.html * igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#7138]) +5 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate-race.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2229]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-5/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_multigpu_svm@mgpu-atomic-op-prefetch: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#6964]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-3/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html * igt@xe_pat@pat-index-xelp: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#977]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-2/igt@xe_pat@pat-index-xelp.html - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2245]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-9/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2236]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-9/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2284]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-9/igt@xe_pm@d3cold-multiple-execs.html - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-8/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm_residency@aspm_link_residency: - shard-bmg: [PASS][124] -> [SKIP][125] ([Intel XE#7258]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-7/igt@xe_pm_residency@aspm_link_residency.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-6/igt@xe_pm_residency@aspm_link_residency.html * igt@xe_pxp@pxp-stale-bo-exec-post-rpm: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#4733]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-1/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html * igt@xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#944]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-8/igt@xe_query@multigpu-query-engines.html * igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#7174]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-5/igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#3342]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-3/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets: - shard-bmg: NOTRUN -> [FAIL][130] ([Intel XE#5937]) +1 other test fail [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-1/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html #### Possible fixes #### * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-bmg: [INCOMPLETE][131] ([Intel XE#5643]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-3/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-4/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: [SKIP][133] ([Intel XE#367]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][135] ([Intel XE#7084]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/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][137] -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-lnl: [FAIL][139] ([Intel XE#301]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [INCOMPLETE][141] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][142] +1 other test pass [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-9/igt@kms_flip@flip-vs-suspend.html * igt@kms_hdr@bpc-switch@pipe-a-dp-2: - shard-bmg: [INCOMPLETE][143] ([Intel XE#6652]) -> [PASS][144] +1 other test pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-2/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-7/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][145] ([Intel XE#4459]) -> [PASS][146] +1 other test pass [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute: - shard-bmg: [ABORT][147] -> [PASS][148] +2 other tests pass [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-2/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-2/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html #### Warnings #### * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][149] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][150] ([Intel XE#3544]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][151] ([Intel XE#2509]) -> [SKIP][152] ([Intel XE#2426]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8763/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/shard-bmg-5/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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665 [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#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#5643]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5643 [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [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#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [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#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006 [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#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [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#7258]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7258 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 Build changes ------------- * IGT: IGT_8763 -> IGTPW_14578 IGTPW_14578: 14578 IGT_8763: 8763 xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c: cc2c646d39200973cc76d0fa0851d73c9636c27c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14578/index.html [-- Attachment #2: Type: text/html, Size: 51347 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER 2026-02-19 18:52 [PATCH] lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER Jim Cromie ` (2 preceding siblings ...) 2026-02-19 21:48 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-02-20 2:10 ` Patchwork 2026-03-16 19:17 ` [PATCH] " Kamil Konieczny 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-02-20 2:10 UTC (permalink / raw) To: Jim Cromie; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 144297 bytes --] == Series Details == Series: lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER URL : https://patchwork.freedesktop.org/series/161850/ State : failure == Summary == CI Bug Log - changes from IGT_8763_full -> IGTPW_14578_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14578_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14578_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_14578/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_14578_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@system-suspend-execbuf: - shard-tglu: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-tglu-9/igt@i915_pm_rpm@system-suspend-execbuf.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-4/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@kms_pm_dc@dc6-psr: - shard-mtlp: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-mtlp-4/igt@kms_pm_dc@dc6-psr.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu-1: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html New tests --------- New tests have been introduced between IGT_8763_full and IGTPW_14578_full: ### New IGT tests (8) ### * igt@i915_pm_rps@2x-plain-flip-fb-recreate-interruptible: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@basic-max-non-joiner: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@etime-multi-wait-all-for-submit-submitted: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@fbc-2p-rte: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@sync_multi_timeline_wait: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@x-tiled-32bpp-rotate-0: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_14578_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-13/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-3/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#6230]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][9] ([i915#6230]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-10/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#3281]) +4 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-3/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#13008]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#12392] / [i915#13356]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-stop.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-snb4/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-10/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-8/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4036]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-2/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#4525]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_capture@capture-invisible: - shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk9/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#6344]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg2: [PASS][33] -> [TIMEOUT][34] ([i915#3778] / [i915#7016]) +1 other test timeout [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-7/igt@gem_exec_endless@dispatch@bcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-11/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-8/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-5/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-13/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +7 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3281]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-18/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: [PASS][42] -> [INCOMPLETE][43] ([i915#13356]) +1 other test incomplete [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-5/igt@gem_exec_suspend@basic-s0@lmem0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-4/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_exec_suspend@basic-s4-devices: - shard-rkl: [PASS][44] -> [ABORT][45] ([i915#7975]) +1 other test abort [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-3/igt@gem_exec_suspend@basic-s4-devices.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-3/igt@gem_fence_thrash@bo-copy.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][47] ([i915#2190]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613] / [i915#7582]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][49] ([i915#4613]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk1/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#4613]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@gem_lmem_swapping@verify.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#284]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][54] ([i915#284]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-8/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4083]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-16/igt@gem_mmap@bad-object.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-8/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@ptrace: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-2/igt@gem_mmap_gtt@ptrace.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +11 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@gem_mmap_gtt@zero-extend.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-18/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-3/igt@gem_mmap_wc@close.html * igt@gem_partial_pwrite_pread@write-display: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3282]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-8/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][63] ([i915#2658]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-5/igt@gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][64] ([i915#2658]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk5/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +7 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][66] ([i915#14702] / [i915#2658]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-rkl: [PASS][67] -> [SKIP][68] ([i915#4270]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-2/igt@gem_pxp@create-regular-context-1.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-snb: NOTRUN -> [SKIP][70] +118 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-snb4/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-12/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#8428]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#5190] / [i915#8428]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-1/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#8411]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3282]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4885]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [PASS][77] -> [INCOMPLETE][78] ([i915#13809]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-5/igt@gem_softpin@noreloc-s3.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-3/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-9/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-8/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3281] / [i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@gem_userptr_blits@relocations.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: NOTRUN -> [ABORT][82] ([i915#15152]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-1/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@bb-start-param: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-1/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-4/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#2856]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-7/igt@gen9_exec_parse@valid-registers.html - shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#2527]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-17/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@busy-idle-check-all@ccs0: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#11527]) +7 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-1/igt@i915_drm_fdinfo@busy-idle-check-all@ccs0.html * igt@i915_drm_fdinfo@busy@rcs0: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#14073]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-14/igt@i915_drm_fdinfo@busy@rcs0.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-glk: NOTRUN -> [ABORT][91] ([i915#15342]) +1 other test abort [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk5/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#6590]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-3/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu: NOTRUN -> [SKIP][93] ([i915#6590]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-7/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [PASS][94] -> [FAIL][95] ([i915#12964]) +1 other test fail [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-5/igt@i915_pm_rc6_residency@rc6-accuracy.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-5/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#11681] / [i915#6621]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-8/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][97] -> [INCOMPLETE][98] ([i915#13729] / [i915#13821]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-snb4/igt@i915_pm_rps@reset.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-snb7/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#11681]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-7/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#6188]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@workarounds: - shard-dg2: [PASS][101] -> [DMESG-FAIL][102] ([i915#12061]) +1 other test dmesg-fail [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-5/igt@i915_selftest@live@workarounds.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-11/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg1: [PASS][103] -> [DMESG-WARN][104] ([i915#4391] / [i915#4423]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg1-13/igt@i915_suspend@basic-s2idle-without-i915.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-17/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: NOTRUN -> [INCOMPLETE][105] ([i915#4817]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][106] ([i915#4817]) +1 other test incomplete [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk1/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4212]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#12454] / [i915#12712]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk10: NOTRUN -> [INCOMPLETE][109] ([i915#12761]) +1 other test incomplete [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk10: NOTRUN -> [SKIP][110] ([i915#1769]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [PASS][112] -> [FAIL][113] ([i915#5956]) +1 other test fail [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#5286]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#5286]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/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][116] ([i915#5286]) +5 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-10/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-180-hflip: - shard-mtlp: [PASS][117] -> [FAIL][118] ([i915#5138]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#3828]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][120] +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5190]) +8 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#14544]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#12313]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][125] ([i915#12313]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#6095]) +180 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6095]) +9 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#12313]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-dp-3: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#6095]) +131 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-11/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-dp-3.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#14544] / [i915#6095]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#12313]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#6095]) +45 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#6095]) +77 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#12805]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#14098] / [i915#6095]) +50 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#12313]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/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-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#6095]) +64 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#6095]) +39 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#13784]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@hdmi-audio: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +7 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-3/igt@kms_chamelium_audio@hdmi-audio.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][143] +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-3/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +6 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#15330]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#15330] / [i915#3299]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#15330] / [i915#3116] / [i915#3299]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#15330]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][153] ([i915#15330]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-10/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#15330]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-12/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#9424]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-4/igt@kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [FAIL][156] ([i915#7173]) +2 other tests fail [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-11/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#6944]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#6944] / [i915#9424]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-3/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@uevent: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [PASS][160] -> [FAIL][161] ([i915#13566]) +1 other test fail [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#13049]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][163] ([i915#13049]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][164] ([i915#13566]) +3 other tests fail [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-tglu-1: NOTRUN -> [FAIL][165] ([i915#13566]) +1 other test fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#13049]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x512.html - shard-tglu: NOTRUN -> [SKIP][167] ([i915#13049]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-10/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3555]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-5/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#3555]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#13049]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2: - shard-rkl: [PASS][171] -> [INCOMPLETE][172] ([i915#12358] / [i915#14152]) +1 other test incomplete [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#9809]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#13046] / [i915#5354]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#9067]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#4103]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#4103]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#9723]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-17/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#9833]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#9833]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#1769] / [i915#3555] / [i915#3804]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-5/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][182] ([i915#3804]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-5/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][183] ([i915#3804]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [PASS][184] -> [SKIP][185] ([i915#3555]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#1257]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-4/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#13707]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#8812]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-13/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][194] ([i915#9878]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3955]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#2065] / [i915#4854]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#1839]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#1839]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-8/igt@kms_feature_discovery@display-4x.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#4881]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#9934]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-13/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3637] / [i915#9934]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-8/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#3637] / [i915#9934]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#9934]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#9934]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#9934]) +5 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html - shard-tglu: NOTRUN -> [SKIP][206] ([i915#3637] / [i915#9934]) +9 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-4/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#8381]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-7/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][208] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk5/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][209] ([i915#12314] / [i915#12745] / [i915#6113]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#15643]) +4 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#15643]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-rkl: NOTRUN -> [SKIP][212] ([i915#15643]) +4 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-dg1: NOTRUN -> [SKIP][213] ([i915#15643]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#15643]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-7/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-tglu-1: NOTRUN -> [SKIP][215] ([i915#15643]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/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][216] ([i915#14544] / [i915#15643]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#15643] / [i915#5190]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg1: [PASS][218] -> [DMESG-WARN][219] ([i915#4423]) +2 other tests dmesg-warn [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#5354]) +23 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#8708]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#5439]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#5439]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][224] ([i915#5439]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#15102]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#15102] / [i915#3458]) +13 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#8708]) +13 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][228] +17 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#1825]) +31 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#1825]) +9 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][231] +41 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#9766]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#15102]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/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_14578/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#15102]) +20 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#14544] / [i915#15102] / [i915#3023]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#15102] / [i915#3458]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#15102] / [i915#3023]) +20 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#8708]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][240] +64 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#15102]) +13 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#12713]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][243] ([i915#1187] / [i915#12713]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8228]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-7/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-dg2: [PASS][245] -> [SKIP][246] ([i915#3555] / [i915#8228]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-11/igt@kms_hdr@static-toggle.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-3/igt@kms_hdr@static-toggle.html - shard-rkl: [PASS][247] -> [SKIP][248] ([i915#3555] / [i915#8228]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_hdr@static-toggle.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-3/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#15460]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][251] ([i915#15460]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-14/igt@kms_joiner@basic-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][252] ([i915#15460]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-6/igt@kms_joiner@basic-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#15460]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-8/igt@kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][254] ([i915#15460]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-8/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#15459]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#15458]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#15638]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#6301]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#14712]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-13/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#15709]) +5 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-4/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#15709]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#15709]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#15709]) +2 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#15709]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#15608]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-8/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#15608]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-5/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#15709]) +5 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#15608]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: [PASS][269] -> [INCOMPLETE][270] ([i915#14412]) +1 other test incomplete [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk10: NOTRUN -> [FAIL][271] ([i915#10647] / [i915#12169]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][272] ([i915#10647]) +3 other tests fail [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk10/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk10: NOTRUN -> [FAIL][273] ([i915#10647] / [i915#12177]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#3555]) +8 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-6/igt@kms_plane_lowres@tiling-4.html - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-1/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#11614] / [i915#3582]) +3 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-1/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#8821]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#13958]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#13958]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-3/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#13958]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#14259]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#15329]) +4 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-glk10: NOTRUN -> [SKIP][283] +116 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - shard-rkl: NOTRUN -> [SKIP][284] ([i915#15329] / [i915#3555]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-glk: NOTRUN -> [SKIP][285] +393 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#15329]) +10 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#12343]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-11/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#5354]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-16/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#5354]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#9812]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#3828]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-6/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][292] -> [SKIP][293] ([i915#15073]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#15073]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-16/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][295] -> [SKIP][296] ([i915#15073]) +2 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#15073]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-6/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#15073]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: [PASS][299] -> [SKIP][300] ([i915#15073]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#15073]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#15073]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@package-g7: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#15403]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@kms_pm_rpm@package-g7.html - shard-rkl: NOTRUN -> [SKIP][304] ([i915#15403]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_pm_rpm@package-g7.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][305] ([i915#10553]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk6/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#6524]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#6524] / [i915#6805]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#11520]) +4 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][309] ([i915#11520]) +3 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-snb1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#9808]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#12316]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#11520]) +5 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][313] ([i915#11520]) +12 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk5/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#11520]) +5 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-glk10: NOTRUN -> [SKIP][315] ([i915#11520]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#11520]) +7 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][317] ([i915#11520]) +3 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-12/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#1072] / [i915#9732]) +17 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-3/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#9732]) +20 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-8/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#9688]) +5 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-4/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt@kms_psr@pr-cursor-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#1072] / [i915#9732]) +4 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-16/igt@kms_psr@pr-cursor-mmap-gtt.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#1072] / [i915#9732]) +17 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-11/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-primary-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#9732]) +13 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_psr@psr2-primary-mmap-cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#9685]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#9685]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk10: NOTRUN -> [INCOMPLETE][326] ([i915#15492]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk10/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk: NOTRUN -> [INCOMPLETE][327] ([i915#15492]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][328] ([i915#5289]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#5289]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#5190]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#5289]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#12755]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#14544] / [i915#3555]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@basic-clone-single-crtc: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#3555]) +2 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#3555]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-16/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#8623]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern.html - shard-glk: NOTRUN -> [FAIL][337] ([i915#10959]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk1/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][338] ([i915#8623]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][339] ([i915#12276]) +1 other test incomplete [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#15243] / [i915#3555]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@kms_vrr@flip-basic.html - shard-rkl: NOTRUN -> [SKIP][341] ([i915#15243] / [i915#3555]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_vrr@flip-basic.html - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#3555] / [i915#8808]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-4/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#9906]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#3555] / [i915#9906]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-7/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#9906]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#14544] / [i915#2436]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#7387]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-8/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@busy-accuracy-50@ccs0: - shard-mtlp: NOTRUN -> [FAIL][348] ([i915#4349]) +2 other tests fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-2/igt@perf_pmu@busy-accuracy-50@ccs0.html - shard-dg2: [PASS][349] -> [FAIL][350] ([i915#4349]) +1 other test fail [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-11/igt@perf_pmu@busy-accuracy-50@ccs0.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@perf_pmu@busy-accuracy-50@ccs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][351] ([i915#4349]) +4 other tests fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][352] ([i915#12549] / [i915#6806]) +1 other test fail [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-5/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-snb: NOTRUN -> [FAIL][353] ([i915#14433]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-snb7/igt@perf_pmu@module-unload.html - shard-dg2: NOTRUN -> [FAIL][354] ([i915#14433]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-3/igt@perf_pmu@module-unload.html - shard-rkl: NOTRUN -> [FAIL][355] ([i915#14433]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@perf_pmu@module-unload.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#3291] / [i915#3708]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][357] ([i915#3708]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-14/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#3708] / [i915#4077]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-4/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#9917]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@bind-unbind-vf@vf-1: - shard-tglu-1: NOTRUN -> [FAIL][360] ([i915#12910]) +18 other tests fail [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#9917]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][362] ([i915#12910]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][363] +20 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][364] ([i915#4818]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-16/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#4818]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-1/igt@tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][366] ([i915#4818]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-4/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][367] ([i915#13356]) -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@hibernate: - shard-dg2: [FAIL][369] -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-11/igt@gem_eio@hibernate.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-8/igt@gem_eio@hibernate.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: [ABORT][371] ([i915#15131]) -> [PASS][372] +1 other test pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-1/igt@gem_exec_suspend@basic-s3.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@gem_exec_suspend@basic-s3.html * igt@gem_lmem_swapping@smem-oom: - shard-dg1: [FAIL][373] -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg1-12/igt@gem_lmem_swapping@smem-oom.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-17/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [CRASH][375] -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_workarounds@suspend-resume-fd: - shard-snb: [ABORT][377] -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-snb7/igt@gem_workarounds@suspend-resume-fd.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-snb5/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_suspend@forcewake: - shard-rkl: [INCOMPLETE][379] ([i915#4817]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@i915_suspend@forcewake.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@i915_suspend@forcewake.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-dg1: [DMESG-WARN][381] ([i915#4423]) -> [PASS][382] +3 other tests pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg1-14/igt@kms_async_flips@alternate-sync-async-flip.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-12/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_atomic@crtc-invalid-params: - shard-snb: [INCOMPLETE][383] -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-snb5/igt@kms_atomic@crtc-invalid-params.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-snb7/igt@kms_atomic@crtc-invalid-params.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-mtlp: [FAIL][385] ([i915#5956]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][387] ([i915#13566]) -> [PASS][388] +2 other tests pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][389] ([i915#13566]) -> [PASS][390] +1 other test pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html * igt@kms_flip@wf_vblank-ts-check: - shard-snb: [FAIL][391] ([i915#14600]) -> [PASS][392] +1 other test pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-snb4/igt@kms_flip@wf_vblank-ts-check.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-snb1/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: [SKIP][393] ([i915#15672]) -> [PASS][394] +2 other tests pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [INCOMPLETE][395] ([i915#10056]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-suspend.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_hdmi_inject@inject-4k: - shard-mtlp: [SKIP][397] -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-7/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: [SKIP][399] ([i915#3555] / [i915#8228]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-1/igt@kms_hdr@static-toggle-dpms.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html - shard-rkl: [SKIP][401] ([i915#3555] / [i915#8228]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-7/igt@kms_hdr@static-toggle-dpms.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_lease@lease-revoke: - shard-dg1: [ABORT][403] ([i915#4423]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg1-12/igt@kms_lease@lease-revoke.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-18/igt@kms_lease@lease-revoke.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [SKIP][405] ([i915#6953]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg1: [SKIP][407] ([i915#15073]) -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_setmode@basic@pipe-b-hdmi-a-1: - shard-snb: [FAIL][409] ([i915#15106]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-snb5/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-snb6/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][411] ([i915#15420]) -> [PASS][412] +1 other test pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-mtlp-8/igt@kms_vrr@negative-basic.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-mtlp-5/igt@kms_vrr@negative-basic.html #### Warnings #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: [SKIP][413] ([i915#8411]) -> [SKIP][414] ([i915#14544] / [i915#8411]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-3/igt@api_intel_bb@blit-reloc-purge-cache.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: [SKIP][415] ([i915#11078] / [i915#14544]) -> [SKIP][416] ([i915#11078]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@device_reset@cold-reset-bound.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@device_reset@cold-reset-bound.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][417] ([i915#14544] / [i915#9323]) -> [SKIP][418] ([i915#9323]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: [SKIP][419] ([i915#14544] / [i915#6335]) -> [SKIP][420] ([i915#6335]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][421] ([i915#14544] / [i915#8562]) -> [SKIP][422] ([i915#8562]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@gem_create@create-ext-set-pat.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@gem_create@create-ext-set-pat.html * igt@gem_exec_reloc@basic-cpu-read: - shard-rkl: [SKIP][423] ([i915#14544] / [i915#3281]) -> [SKIP][424] ([i915#3281]) +6 other tests skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-read.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-rkl: [SKIP][425] ([i915#3281]) -> [SKIP][426] ([i915#14544] / [i915#3281]) +2 other tests skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-5/igt@gem_exec_reloc@basic-wc-gtt.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: [SKIP][427] ([i915#4613]) -> [SKIP][428] ([i915#14544] / [i915#4613]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-4/igt@gem_lmem_swapping@heavy-random.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: [SKIP][429] ([i915#14544] / [i915#4613]) -> [SKIP][430] ([i915#4613]) +3 other tests skip [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: [SKIP][431] ([i915#3282]) -> [SKIP][432] ([i915#14544] / [i915#3282]) +1 other test skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-5/igt@gem_pwrite@basic-exhaustion.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-rkl: [SKIP][433] ([i915#14544] / [i915#3282]) -> [SKIP][434] ([i915#3282]) +2 other tests skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: [SKIP][435] ([i915#15656]) -> [SKIP][436] ([i915#14544] / [i915#15656]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-8/igt@gem_tiled_pread_basic@basic.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: [SKIP][437] ([i915#14544] / [i915#3297]) -> [SKIP][438] ([i915#3297]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: [SKIP][439] ([i915#3297]) -> [SKIP][440] ([i915#14544] / [i915#3297]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen3_mixed_blits: - shard-rkl: [SKIP][441] -> [SKIP][442] ([i915#14544]) +1 other test skip [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-8/igt@gen3_mixed_blits.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@gen3_mixed_blits.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: [SKIP][443] ([i915#14544] / [i915#2527]) -> [SKIP][444] ([i915#2527]) +2 other tests skip [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@gen9_exec_parse@bb-start-far.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: [SKIP][445] ([i915#14544] / [i915#8399]) -> [SKIP][446] ([i915#8399]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@i915_pm_freq_api@freq-reset.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: [SKIP][447] ([i915#12454] / [i915#12712]) -> [SKIP][448] ([i915#12454] / [i915#12712] / [i915#14544]) [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: [SKIP][449] ([i915#14544] / [i915#5286]) -> [SKIP][450] ([i915#5286]) +3 other tests skip [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: [SKIP][451] ([i915#5286]) -> [SKIP][452] ([i915#14544] / [i915#5286]) +1 other test skip [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: [SKIP][453] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][454] ([i915#4538] / [i915#5286]) +1 other test skip [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-rkl: [SKIP][455] ([i915#14544] / [i915#3638]) -> [SKIP][456] ([i915#3638]) [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: [SKIP][457] ([i915#3638]) -> [SKIP][458] ([i915#14544] / [i915#3638]) [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-rkl: [SKIP][459] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][460] ([i915#14098] / [i915#6095]) +7 other tests skip [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: [SKIP][461] ([i915#12805] / [i915#14544]) -> [SKIP][462] ([i915#12805]) [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][463] ([i915#14544] / [i915#6095]) -> [SKIP][464] ([i915#6095]) +4 other tests skip [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][465] ([i915#14098] / [i915#6095]) -> [SKIP][466] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][467] ([i915#6095]) -> [SKIP][468] ([i915#14544] / [i915#6095]) +1 other test skip [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: [SKIP][469] ([i915#12313] / [i915#14544]) -> [SKIP][470] ([i915#12313]) +1 other test skip [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: [SKIP][471] ([i915#3742]) -> [SKIP][472] ([i915#14544] / [i915#3742]) [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-8/igt@kms_cdclk@plane-scaling.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-rkl: [SKIP][473] ([i915#14544]) -> [SKIP][474] +15 other tests skip [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_chamelium_color@ctm-red-to-blue.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-rkl: [SKIP][475] ([i915#11151] / [i915#7828]) -> [SKIP][476] ([i915#11151] / [i915#14544] / [i915#7828]) [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-3/igt@kms_chamelium_frames@hdmi-crc-multiple.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][477] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][478] ([i915#11151] / [i915#7828]) +3 other tests skip [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [FAIL][479] ([i915#7173]) -> [SKIP][480] ([i915#6944] / [i915#7118] / [i915#9424]) [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html - shard-rkl: [SKIP][481] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][482] ([i915#6944] / [i915#7118] / [i915#9424]) [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-rkl: [SKIP][483] ([i915#14544] / [i915#6944]) -> [SKIP][484] ([i915#6944]) [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_content_protection@atomic-dpms-hdcp14.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: [SKIP][485] ([i915#15330] / [i915#3116]) -> [SKIP][486] ([i915#14544] / [i915#15330] / [i915#3116]) [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-0.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-0: - shard-rkl: [SKIP][487] ([i915#6944] / [i915#9424]) -> [SKIP][488] ([i915#14544] / [i915#6944] / [i915#9424]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-8/igt@kms_content_protection@lic-type-0.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-dg2: [SKIP][489] ([i915#6944]) -> [FAIL][490] ([i915#7173]) [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-6/igt@kms_content_protection@lic-type-0-hdcp14.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-11/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][491] ([i915#9433]) -> [SKIP][492] ([i915#6944] / [i915#9424]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg1-13/igt@kms_content_protection@mei-interface.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-17/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-rkl: [SKIP][493] ([i915#14544] / [i915#3555]) -> [SKIP][494] ([i915#3555]) +1 other test skip [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: [SKIP][495] ([i915#14544] / [i915#4103]) -> [SKIP][496] ([i915#4103]) [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: [SKIP][497] ([i915#13691] / [i915#14544]) -> [SKIP][498] ([i915#13691]) [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: [SKIP][499] ([i915#13749]) -> [SKIP][500] ([i915#13749] / [i915#14544]) [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-4/igt@kms_dp_link_training@non-uhbr-mst.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: [SKIP][501] ([i915#13748] / [i915#14544]) -> [SKIP][502] ([i915#13748]) [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: [SKIP][503] ([i915#13707] / [i915#14544]) -> [SKIP][504] ([i915#13707]) [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_feature_discovery@psr2: - shard-rkl: [SKIP][505] ([i915#14544] / [i915#658]) -> [SKIP][506] ([i915#658]) [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_feature_discovery@psr2.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-plain-flip: - shard-rkl: [SKIP][507] ([i915#14544] / [i915#9934]) -> [SKIP][508] ([i915#9934]) +3 other tests skip [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_flip@2x-plain-flip.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_flip@2x-plain-flip.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-rkl: [SKIP][509] ([i915#14544] / [i915#15643]) -> [SKIP][510] ([i915#15643]) +1 other test skip [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-rkl: [SKIP][511] ([i915#15643]) -> [SKIP][512] ([i915#14544] / [i915#15643]) [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-rkl: [SKIP][513] ([i915#15102]) -> [SKIP][514] ([i915#14544] / [i915#15102]) [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][515] ([i915#15102] / [i915#3023]) -> [SKIP][516] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt: - shard-dg1: [SKIP][517] ([i915#15102] / [i915#3458]) -> [SKIP][518] ([i915#15102] / [i915#3458] / [i915#4423]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][519] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][520] ([i915#15102] / [i915#3458]) +1 other test skip [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: [SKIP][521] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][522] ([i915#15102] / [i915#3023]) +8 other tests skip [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][523] ([i915#4423]) -> [SKIP][524] +1 other test skip [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary: - shard-dg2: [SKIP][525] ([i915#15102] / [i915#3458]) -> [SKIP][526] ([i915#10433] / [i915#15102] / [i915#3458]) [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][527] ([i915#14544] / [i915#15102]) -> [SKIP][528] ([i915#15102]) +1 other test skip [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][529] ([i915#14544] / [i915#1825]) -> [SKIP][530] ([i915#1825]) +16 other tests skip [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: [SKIP][531] ([i915#1825]) -> [SKIP][532] ([i915#14544] / [i915#1825]) +9 other tests skip [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: [ABORT][533] ([i915#15132]) -> [SKIP][534] ([i915#3555] / [i915#8228]) [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-1/igt@kms_hdr@bpc-switch-suspend.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: [SKIP][535] ([i915#14544] / [i915#15458]) -> [SKIP][536] ([i915#15458]) +1 other test skip [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: [SKIP][537] ([i915#14712]) -> [SKIP][538] ([i915#14544] / [i915#14712]) [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-4/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: [SKIP][539] ([i915#14544] / [i915#14712]) -> [SKIP][540] ([i915#14712]) [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-rkl: [SKIP][541] ([i915#15709]) -> [SKIP][542] ([i915#14544] / [i915#15709]) [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: [SKIP][543] ([i915#14544] / [i915#15709]) -> [SKIP][544] ([i915#15709]) +1 other test skip [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-4/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: [SKIP][545] ([i915#14259]) -> [SKIP][546] ([i915#14259] / [i915#14544]) [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html * igt@kms_prime@d3hot: - shard-rkl: [SKIP][547] ([i915#14544] / [i915#6524]) -> [SKIP][548] ([i915#6524]) [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_prime@d3hot.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-rkl: [SKIP][549] ([i915#11520] / [i915#14544]) -> [SKIP][550] ([i915#11520]) +2 other tests skip [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][551] ([i915#11520]) -> [SKIP][552] ([i915#11520] / [i915#14544]) [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: [SKIP][553] ([i915#14544] / [i915#9683]) -> [SKIP][554] ([i915#9683]) [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: [SKIP][555] ([i915#9683]) -> [SKIP][556] ([i915#14544] / [i915#9683]) [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-2/igt@kms_psr2_su@page_flip-p010.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-rkl: [SKIP][557] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][558] ([i915#1072] / [i915#9732]) +11 other tests skip [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-8/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-sprite-mmap-cpu: - shard-rkl: [SKIP][559] ([i915#1072] / [i915#9732]) -> [SKIP][560] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-8/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: [SKIP][561] ([i915#4423] / [i915#5289]) -> [SKIP][562] ([i915#5289]) [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: [SKIP][563] ([i915#3555]) -> [SKIP][564] ([i915#14544] / [i915#3555]) +3 other tests skip [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-4/igt@kms_setmode@basic-clone-single-crtc.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: [SKIP][565] ([i915#2433]) -> [SKIP][566] ([i915#14544] / [i915#2433]) [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html * igt@prime_vgem@fence-write-hang: - shard-rkl: [SKIP][567] ([i915#14544] / [i915#3708]) -> [SKIP][568] ([i915#3708]) +1 other test skip [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@prime_vgem@fence-write-hang.html [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-2/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: [SKIP][569] ([i915#9917]) -> [SKIP][570] ([i915#14544] / [i915#9917]) +1 other test skip [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-7/igt@sriov_basic@bind-unbind-vf.html [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: [SKIP][571] ([i915#14544] / [i915#9917]) -> [SKIP][572] ([i915#9917]) [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8763/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [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#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [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#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [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#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420 [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#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [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#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [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#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [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#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [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#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [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#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [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#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [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#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [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#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [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#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [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#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [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#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [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#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [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#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [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#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [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_8763 -> IGTPW_14578 CI-20190529: 20190529 CI_DRM_18007: cc2c646d39200973cc76d0fa0851d73c9636c27c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14578: 14578 IGT_8763: 8763 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14578/index.html [-- Attachment #2: Type: text/html, Size: 192192 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER 2026-02-19 18:52 [PATCH] lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER Jim Cromie ` (3 preceding siblings ...) 2026-02-20 2:10 ` ✗ i915.CI.Full: " Patchwork @ 2026-03-16 19:17 ` Kamil Konieczny 4 siblings, 0 replies; 6+ messages in thread From: Kamil Konieczny @ 2026-03-16 19:17 UTC (permalink / raw) To: Jim Cromie; +Cc: igt-dev, Gemini CLI Hi Jim, On 2026-02-19 at 11:52:27 -0700, Jim Cromie wrote: > IGT contains numerous hardcoded timing assertions and poll timeouts > (e.g., 150ms in kms_sysfs_edid_timing and 1s in prime_busy) that > appear to be tuned for bare-metal execution. > > Specifically, DRM-CI testing of DRM_USE_DYNAMIC_DEBUG=y patchset > triggers spurious timeouts, because toggling the static-keys under > numerous drm_*dbg() callsites takes far longer than just changing the > single word under /sys/module/drm/parameters/debug. > > So this patch introduces a "Time Dilator" system to globally scale the > suite's sensitivity, making it adjustable to varying environments. It > adds a global igt_timeout_multiplier, automatically initialized from > the IGT_TIMEOUT_MULTIPLIER environment variable via a library > constructor in lib/igt_poll.c. > > The system scales timing in two directions: > > 1. Clock Dilation: igt_nsec_elapsed() is patched to divide actual > elapsed time by the multiplier. This makes internal test logic > perceive time as moving slower, allowing existing assertions to > pass even when wall-clock duration is longer. > > 2. Wait Scaling: Standard poll() and ppoll() calls are intercepted via > variadic macros and redirected to wrappers that multiply the > requested timeout duration. > > I considered 2 different "dilations" for these, to allow separate > tailoring of the 2 timeout flavors, but had no strong basis to do so, > and it felt like "too many knobs". That said, it might be appropriate > to dilate *only* for drm.debug (/sys/module/drm/parameters/debug) > adjustments. > > This should allow at least IGT tests to be adjusted for environmental > variations and kernel configurations, without requiring manual source > modifications for every hardcoded constant. +cc Ashutosh and Karthik Cc: Karthik B S <karthik.b.s@intel.com> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> Could you also give a link to a problem you trying to solve? > > Assisted-by: Gemini CLI <gemini-cli@google.com> > Signed-off-by: Jim Cromie <jim.cromie@gmail.com> > --- > lib/igt_core.c | 7 +++++-- > lib/igt_core.h | 8 ++++++++ > lib/igt_poll.c | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ > lib/meson.build | 6 ++++-- > 4 files changed, 67 insertions(+), 4 deletions(-) > create mode 100644 lib/igt_poll.c > > diff --git a/lib/igt_core.c b/lib/igt_core.c > index 3ee670a41..8a1a07ff6 100644 > --- a/lib/igt_core.c > +++ b/lib/igt_core.c > @@ -748,6 +748,7 @@ error: > uint64_t igt_nsec_elapsed(struct timespec *start) > { > struct timespec now; > + uint64_t elapsed; > > igt_gettime(&now); > if ((start->tv_sec | start->tv_nsec) == 0) { > @@ -755,8 +756,10 @@ uint64_t igt_nsec_elapsed(struct timespec *start) > return 0; > } > > - return ((now.tv_nsec - start->tv_nsec) + > - (uint64_t)NSEC_PER_SEC*(now.tv_sec - start->tv_sec)); > + elapsed = ((now.tv_nsec - start->tv_nsec) + > + (uint64_t)NSEC_PER_SEC*(now.tv_sec - start->tv_sec)); > + > + return elapsed / igt_timeout_multiplier; > } > > void __igt_assert_in_outer_scope(void) > diff --git a/lib/igt_core.h b/lib/igt_core.h > index 6845f853c..4538375ff 100644 > --- a/lib/igt_core.h > +++ b/lib/igt_core.h > @@ -44,6 +44,7 @@ > #include <stdarg.h> > #include <getopt.h> > #include <unistd.h> > +#include <poll.h> > > #ifdef __FreeBSD__ > #include "igt_freebsd.h" > @@ -53,6 +54,13 @@ > #define IGT_LOG_DOMAIN (NULL) > #endif > > +extern double igt_timeout_multiplier; > +int igt_poll(struct pollfd *fds, nfds_t nfds, int timeout); > +int igt_ppoll(struct pollfd *fds, nfds_t nfds, > + const struct timespec *tmo_p, const sigset_t *sigmask); Above look ok. > +#define poll(...) igt_poll(__VA_ARGS__) > +#define ppoll(...) igt_ppoll(__VA_ARGS__) Please avoid such defines, they are good for short-term or RFC but not in long term. This will mean there will be more changes in tests but imho that is better to have a clear view what is going on. > + Remove this empty line. Regards, Kamil > > #ifndef STATIC_ANALYSIS_BUILD > #if defined(__clang_analyzer__) || defined(__COVERITY__) || defined(__KLOCWORK__) > diff --git a/lib/igt_poll.c b/lib/igt_poll.c > new file mode 100644 > index 000000000..d94fc902d > --- /dev/null > +++ b/lib/igt_poll.c > @@ -0,0 +1,50 @@ > +#include <poll.h> > +#include <time.h> > +#include <stdint.h> > +#include <stdlib.h> > +#include "igt_core.h" > + > +#undef poll > +#undef ppoll > + > +double igt_timeout_multiplier = 1.0; > + > +static void igt_timeout_multiplier_init(void) __attribute__((constructor)); > +static void igt_timeout_multiplier_init(void) > +{ > + const char *env = getenv("IGT_TIMEOUT_MULTIPLIER"); > + if (env) { > + igt_timeout_multiplier = atof(env); > + if (igt_timeout_multiplier <= 0.0) > + igt_timeout_multiplier = 1.0; > + } > +} > + > +int igt_poll(struct pollfd *fds, nfds_t nfds, int timeout) > +{ > + int old_timeout = timeout; > + > + if (timeout > 0) > + timeout = (int)(timeout * igt_timeout_multiplier); > + > + if (igt_timeout_multiplier != 1.0 && old_timeout > 0) > + igt_debug("igt_poll: scaling timeout %dms -> %dms\n", old_timeout, timeout); > + > + return poll(fds, nfds, timeout); > +} > + > +int igt_ppoll(struct pollfd *fds, nfds_t nfds, > + const struct timespec *tmo_p, const sigset_t *sigmask) > +{ > + struct timespec scaled_tmo; > + > + if (tmo_p) { > + uint64_t nsec = (uint64_t)tmo_p->tv_sec * NSEC_PER_SEC + tmo_p->tv_nsec; > + nsec *= igt_timeout_multiplier; > + scaled_tmo.tv_sec = nsec / NSEC_PER_SEC; > + scaled_tmo.tv_nsec = nsec % NSEC_PER_SEC; > + tmo_p = &scaled_tmo; > + } > + > + return ppoll(fds, nfds, tmo_p, sigmask); > +} > diff --git a/lib/meson.build b/lib/meson.build > index ea721ecf7..fb7e83543 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -97,6 +97,7 @@ lib_sources = [ > 'igt_core.c', > 'igt_dir.c', > 'igt_draw.c', > + 'igt_poll.c', > 'igt_list.c', > 'igt_map.c', > 'igt_panel.c', > @@ -328,7 +329,7 @@ lib_igt_chipset = declare_dependency(link_with : lin_igt_chipset_build, > include_directories : inc) > > lib_igt_perf_build = static_library('igt_perf', > - ['igt_perf.c'], > + ['igt_perf.c', 'igt_poll.c'], > include_directories : inc) > > lib_igt_perf = declare_dependency(link_with : lib_igt_perf_build, > @@ -347,6 +348,7 @@ lib_igt_device_scan_build = static_library('igt_device_scan', > 'igt_tools_stub.c', > 'intel_device_info.c', > 'intel_cmds_info.c', > + 'igt_poll.c', > ], > dependencies : scan_dep, > include_directories : inc) > @@ -362,7 +364,7 @@ lib_igt_drm_clients = declare_dependency(link_with : lib_igt_drm_clients_build, > include_directories : inc) > > lib_igt_drm_fdinfo_build = static_library('igt_drm_fdinfo', > - ['igt_drm_fdinfo.c'], > + ['igt_drm_fdinfo.c', 'igt_poll.c'], > include_directories : inc) > > lib_igt_drm_fdinfo = declare_dependency(link_with : lib_igt_drm_fdinfo_build, > -- > 2.53.0 > ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-03-16 19:17 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-19 18:52 [PATCH] lib: implement systemic timeout scaling via IGT_TIMEOUT_MULTIPLIER Jim Cromie 2026-02-19 19:47 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-02-19 20:02 ` ✓ i915.CI.BAT: " Patchwork 2026-02-19 21:48 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-02-20 2:10 ` ✗ i915.CI.Full: " Patchwork 2026-03-16 19:17 ` [PATCH] " Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox