* [PATCH i-g-t] lib/igt_sysfs: Remove redundant variable assignment
@ 2025-07-16 13:27 Pranay Samala
2025-07-16 15:00 ` Dixit, Ashutosh
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Pranay Samala @ 2025-07-16 13:27 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala
Eliminate redundant assignment in debug mask setup.
Simplified the logic by directly using the input
parameter for logging and sysfs operations.
Fixes: 835f38b71973 ("lib/igt_sysfs: Update new debug mask requested by user")
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
---
lib/igt_sysfs.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
index aec157b5b..96ca57ed9 100644
--- a/lib/igt_sysfs.c
+++ b/lib/igt_sysfs.c
@@ -506,7 +506,6 @@ void igt_drm_debug_mask_reset_exit_handler(int sig)
*/
void igt_drm_debug_mask_update(unsigned int mask_to_set)
{
- unsigned int new_debug_mask;
static bool debug_mask_read_once = true;
char buf[20];
int dir;
@@ -525,8 +524,8 @@ void igt_drm_debug_mask_update(unsigned int mask_to_set)
}
}
- igt_debug("Setting DRM debug mask to %d\n", new_debug_mask);
- snprintf(buf, sizeof(buf), "%d", new_debug_mask);
+ igt_debug("Setting DRM debug mask to %d\n", mask_to_set);
+ snprintf(buf, sizeof(buf), "%d", mask_to_set);
igt_assert(igt_sysfs_set(dir, "debug", buf));
close(dir);
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH i-g-t] lib/igt_sysfs: Remove redundant variable assignment 2025-07-16 13:27 [PATCH i-g-t] lib/igt_sysfs: Remove redundant variable assignment Pranay Samala @ 2025-07-16 15:00 ` Dixit, Ashutosh 2025-07-16 17:40 ` ✓ i915.CI.BAT: success for " Patchwork ` (5 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Dixit, Ashutosh @ 2025-07-16 15:00 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev, karthik.b.s, sameer.lattannavar On Wed, 16 Jul 2025 06:27:52 -0700, Pranay Samala wrote: > > Eliminate redundant assignment in debug mask setup. > Simplified the logic by directly using the input > parameter for logging and sysfs operations. There is no redundant assignment, new_debug_mask was not even assigned a value. Strange this code went through code review and was merged :/ Anyway, looks correct now: Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > > Fixes: 835f38b71973 ("lib/igt_sysfs: Update new debug mask requested by user") > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > lib/igt_sysfs.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c > index aec157b5b..96ca57ed9 100644 > --- a/lib/igt_sysfs.c > +++ b/lib/igt_sysfs.c > @@ -506,7 +506,6 @@ void igt_drm_debug_mask_reset_exit_handler(int sig) > */ > void igt_drm_debug_mask_update(unsigned int mask_to_set) > { > - unsigned int new_debug_mask; > static bool debug_mask_read_once = true; > char buf[20]; > int dir; > @@ -525,8 +524,8 @@ void igt_drm_debug_mask_update(unsigned int mask_to_set) > } > } > > - igt_debug("Setting DRM debug mask to %d\n", new_debug_mask); > - snprintf(buf, sizeof(buf), "%d", new_debug_mask); > + igt_debug("Setting DRM debug mask to %d\n", mask_to_set); > + snprintf(buf, sizeof(buf), "%d", mask_to_set); > igt_assert(igt_sysfs_set(dir, "debug", buf)); > > close(dir); > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for lib/igt_sysfs: Remove redundant variable assignment 2025-07-16 13:27 [PATCH i-g-t] lib/igt_sysfs: Remove redundant variable assignment Pranay Samala 2025-07-16 15:00 ` Dixit, Ashutosh @ 2025-07-16 17:40 ` Patchwork 2025-07-16 18:45 ` ✓ Xe.CI.BAT: " Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-07-16 17:40 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6967 bytes --] == Series Details == Series: lib/igt_sysfs: Remove redundant variable assignment URL : https://patchwork.freedesktop.org/series/151708/ State : success == Summary == CI Bug Log - changes from IGT_8462 -> IGTPW_13484 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/index.html Participating hosts (44 -> 44) ------------------------------ Additional (1): bat-twl-2 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_13484 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@basic: - bat-twl-2: NOTRUN -> [SKIP][1] ([i915#10213] / [i915#11671]) +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-twl-2/igt@gem_lmem_swapping@basic.html * igt@gem_tiled_pread_basic: - bat-twl-2: NOTRUN -> [SKIP][2] ([i915#11031]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-twl-2/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-twl-2: NOTRUN -> [SKIP][3] ([i915#10209] / [i915#11681]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-twl-2/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live: - bat-jsl-1: [PASS][4] -> [DMESG-WARN][5] ([i915#13827]) +1 other test dmesg-warn [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/bat-jsl-1/igt@i915_selftest@live.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-jsl-1/igt@i915_selftest@live.html * igt@intel_hwmon@hwmon-write: - bat-twl-2: NOTRUN -> [SKIP][6] ([i915#7707]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-twl-2/igt@intel_hwmon@hwmon-write.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-twl-2: NOTRUN -> [SKIP][7] ([i915#11030] / [i915#11731]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-twl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dsc@dsc-basic: - bat-twl-2: NOTRUN -> [SKIP][8] ([i915#9886]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-twl-2/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-twl-2: NOTRUN -> [SKIP][9] ([i915#11032]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-twl-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_setmode@basic-clone-single-crtc: - bat-twl-2: NOTRUN -> [SKIP][10] ([i915#8809]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-twl-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-twl-2: NOTRUN -> [SKIP][11] ([i915#10212] / [i915#3708]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-twl-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - bat-twl-2: NOTRUN -> [SKIP][12] ([i915#10214] / [i915#3708]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-twl-2/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-twl-2: NOTRUN -> [SKIP][13] ([i915#10216] / [i915#3708]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-twl-2/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@active: - bat-dg2-14: [ABORT][14] ([i915#14201]) -> [PASS][15] +1 other test pass [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/bat-dg2-14/igt@i915_selftest@live@active.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-dg2-14/igt@i915_selftest@live@active.html * igt@i915_selftest@live@workarounds: - bat-dg2-9: [DMESG-FAIL][16] ([i915#12061]) -> [PASS][17] +1 other test pass [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/bat-dg2-9/igt@i915_selftest@live@workarounds.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-dg2-9/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-atsm-1: [DMESG-FAIL][18] ([i915#12061] / [i915#14204]) -> [DMESG-FAIL][19] ([i915#12061] / [i915#13929]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/bat-atsm-1/igt@i915_selftest@live.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-atsm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@mman: - bat-atsm-1: [DMESG-FAIL][20] ([i915#14204]) -> [DMESG-FAIL][21] ([i915#13929]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/bat-atsm-1/igt@i915_selftest@live@mman.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/bat-atsm-1/igt@i915_selftest@live@mman.html [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11030 [i915#11031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11031 [i915#11032]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11032 [i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11731]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11731 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13827]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13827 [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929 [i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201 [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8462 -> IGTPW_13484 CI-20190529: 20190529 CI_DRM_16877: 5c81898a2e97ccaed5067b1476f6a77321d057f9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13484: f3006f66bae5b05c30e0b3a49ac5b9928a9e6ff8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8462: f33a311145a889757f45313d2ff4bf58f7ef01d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/index.html [-- Attachment #2: Type: text/html, Size: 8395 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for lib/igt_sysfs: Remove redundant variable assignment 2025-07-16 13:27 [PATCH i-g-t] lib/igt_sysfs: Remove redundant variable assignment Pranay Samala 2025-07-16 15:00 ` Dixit, Ashutosh 2025-07-16 17:40 ` ✓ i915.CI.BAT: success for " Patchwork @ 2025-07-16 18:45 ` Patchwork 2025-07-17 10:36 ` ✗ i915.CI.Full: failure " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-07-16 18:45 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 960 bytes --] == Series Details == Series: lib/igt_sysfs: Remove redundant variable assignment URL : https://patchwork.freedesktop.org/series/151708/ State : success == Summary == CI Bug Log - changes from XEIGT_8462_BAT -> XEIGTPW_13484_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8462 -> IGTPW_13484 IGTPW_13484: f3006f66bae5b05c30e0b3a49ac5b9928a9e6ff8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8462: f33a311145a889757f45313d2ff4bf58f7ef01d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3423-3b965bd54a93adbf5520b143254ecb10b9a11776: 3b965bd54a93adbf5520b143254ecb10b9a11776 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/index.html [-- Attachment #2: Type: text/html, Size: 1505 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for lib/igt_sysfs: Remove redundant variable assignment 2025-07-16 13:27 [PATCH i-g-t] lib/igt_sysfs: Remove redundant variable assignment Pranay Samala ` (2 preceding siblings ...) 2025-07-16 18:45 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-07-17 10:36 ` Patchwork 2025-07-17 10:44 ` [PATCH i-g-t] " Kamil Konieczny ` (2 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-07-17 10:36 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 154371 bytes --] == Series Details == Series: lib/igt_sysfs: Remove redundant variable assignment URL : https://patchwork.freedesktop.org/series/151708/ State : failure == Summary == CI Bug Log - changes from IGT_8462_full -> IGTPW_13484_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_13484_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_13484_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_13484/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk10 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_13484_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html Known issues ------------ Here are the changes found in IGTPW_13484_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#6230]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2-9: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#7697]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-5/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#7697]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2-9: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_compute@compute-square: - shard-dg2: NOTRUN -> [FAIL][12] ([i915#13665]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@gem_compute@compute-square.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8562]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@gem_create@create-ext-set-pat.html - shard-tglu-1: NOTRUN -> [SKIP][14] ([i915#8562]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg1: NOTRUN -> [SKIP][15] +4 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-16/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@process: - shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-snb5/igt@gem_ctx_persistence@process.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#5882]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@engines: - shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#280]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@kms: - shard-dg2: [PASS][22] -> [FAIL][23] ([i915#5784]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-4/igt@gem_eio@kms.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@gem_exec_balancer@bonded-true-hang.html - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4812]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-7/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_capture@capture-invisible: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#6334]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-19/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#5107]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +11 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-concurrent16: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_exec_reloc@basic-concurrent16.html * igt@gem_exec_reloc@basic-cpu: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#14544] / [i915#3281]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_exec_reloc@basic-cpu.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2-9: NOTRUN -> [SKIP][36] ([i915#3281]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-range-active: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3281]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-5/igt@gem_exec_reloc@basic-range-active.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-14/igt@gem_exec_reloc@basic-range-active.html * igt@gem_exec_schedule@fairslice: - shard-rkl: [PASS][39] -> [DMESG-WARN][40] ([i915#12964]) +20 other tests dmesg-warn [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@gem_exec_schedule@fairslice.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_exec_schedule@fairslice.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4812]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-12/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613] / [i915#7582]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-6/igt@gem_lmem_evict@dontneed-evict-race.html - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@massive-random: - shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#284]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@gem_media_vme.html - shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#284]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_media_vme.html * igt@gem_mmap@pf-nonblock: - shard-dg2-9: NOTRUN -> [SKIP][51] ([i915#4083]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_mmap@pf-nonblock.html * igt@gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-19/igt@gem_mmap_gtt@basic-small-copy-odd.html * igt@gem_mmap_gtt@basic-write-gtt: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-5/igt@gem_mmap_gtt@basic-write-gtt.html * igt@gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +13 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2-9: NOTRUN -> [SKIP][56] ([i915#3282]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3282]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][58] ([i915#2658]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_pwrite_snooped.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][60] ([i915#12964]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#13398]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-mtlp: [PASS][62] -> [SKIP][63] ([i915#13398]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-6/igt@gem_pxp@hw-rejects-pxp-context.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-3/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#4270]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: [PASS][65] -> [TIMEOUT][66] ([i915#12917] / [i915#12964]) +1 other test timeout [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-6/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html - shard-dg2: NOTRUN -> [SKIP][69] ([i915#5190] / [i915#8428]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2-9: NOTRUN -> [SKIP][70] ([i915#5190] / [i915#8428]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4885]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_blits@basic: - shard-dg2-9: NOTRUN -> [SKIP][72] ([i915#4077]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_tiled_blits@basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-7/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2-9: NOTRUN -> [SKIP][76] ([i915#3282] / [i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg2-9: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_workarounds@suspend-resume: - shard-rkl: [PASS][79] -> [INCOMPLETE][80] ([i915#13356]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_workarounds@suspend-resume.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@gem_workarounds@suspend-resume.html * igt@gen3_render_tiledx_blits: - shard-dg2-9: NOTRUN -> [SKIP][81] +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@basic-offset: - shard-mtlp: NOTRUN -> [SKIP][82] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-7/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@basic-rejected: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#14544] / [i915#2527]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-large: - shard-dg2-9: NOTRUN -> [SKIP][85] ([i915#2856]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#2856]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-5/igt@gen9_exec_parse@unaligned-jump.html - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#2856]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-2/igt@gen9_exec_parse@unaligned-jump.html - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@gen9_exec_parse@unaligned-jump.html - shard-dg1: NOTRUN -> [SKIP][90] ([i915#2527]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#14073]) +7 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_drm_fdinfo@virtual-busy-hang: - shard-dg2-9: NOTRUN -> [SKIP][92] ([i915#14118]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@i915_drm_fdinfo@virtual-busy-hang.html * igt@i915_drm_fdinfo@virtual-busy-idle: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#14118]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@i915_drm_fdinfo@virtual-busy-idle.html * igt@i915_module_load@reload-no-display: - shard-dg2: [PASS][94] -> [DMESG-WARN][95] ([i915#13029] / [i915#14545]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-10/igt@i915_module_load@reload-no-display.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#8399]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#8399]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-4/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][98] -> [INCOMPLETE][99] ([i915#12455] / [i915#13820]) +1 other test incomplete [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][100] ([i915#13790] / [i915#2681]) +1 other test warn [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg2-9: NOTRUN -> [ABORT][101] ([i915#14191] / [i915#14334]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@i915_pm_rpm@system-suspend-execbuf.html - shard-glk11: NOTRUN -> [INCOMPLETE][102] ([i915#12797]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk11/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#11681] / [i915#6621]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_sseu@full-enable: - shard-dg2-9: NOTRUN -> [SKIP][104] ([i915#4387]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#6245]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#6188]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live: - shard-rkl: [PASS][107] -> [DMESG-FAIL][108] ([i915#12964] / [i915#13550]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@i915_selftest@live.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [PASS][109] -> [DMESG-FAIL][110] ([i915#13550]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@i915_selftest@live@gt_pm.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@debugfs-reader: - shard-glk11: NOTRUN -> [INCOMPLETE][111] ([i915#4817]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk11/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-snb: [PASS][112] -> [DMESG-WARN][113] ([i915#13899]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-snb2/igt@i915_suspend@fence-restore-tiled2untiled.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-snb1/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][114] ([i915#4817]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk3/igt@i915_suspend@forcewake.html * igt@i915_suspend@sysfs-reader: - shard-rkl: [PASS][115] -> [INCOMPLETE][116] ([i915#4817]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@i915_suspend@sysfs-reader.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2-9: NOTRUN -> [SKIP][117] ([i915#4212]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4212]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2-9: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][120] ([i915#1769]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind: - shard-rkl: [PASS][121] -> [SKIP][122] ([i915#14544]) +38 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5286]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#5286]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5286]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#5286]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2-9: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5190]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-9: NOTRUN -> [SKIP][128] ([i915#5190]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6187]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5190]) +5 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][131] +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#6095]) +34 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#6095]) +34 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][134] +230 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#6095]) +118 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6095]) +14 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#14098] / [i915#6095]) +31 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#6095]) +23 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: NOTRUN -> [INCOMPLETE][139] ([i915#12796]) +1 other test incomplete [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#12313]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#12313]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#6095]) +36 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-dg2-9: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#6095]) +44 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#6095]) +131 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#3742]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][146] +18 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +6 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +6 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2-9: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@legacy-gamma: - shard-rkl: [PASS][154] -> [SKIP][155] ([i915#12655] / [i915#14544]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_color@legacy-gamma.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_color@legacy-gamma.html * igt@kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#9424]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3116]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3299]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-dg2-9: NOTRUN -> [SKIP][159] ([i915#7118]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#13049]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-rkl: [PASS][161] -> [FAIL][162] ([i915#13566]) +1 other test fail [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#13049]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#13049]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][165] ([i915#13566]) +1 other test fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#3555]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: [PASS][167] -> [FAIL][168] ([i915#13566]) +5 other tests fail [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-128x42.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][169] ([i915#12964]) +7 other tests dmesg-warn [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-dg2-9: NOTRUN -> [SKIP][170] ([i915#3555]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#13046] / [i915#5354]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#4103]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#4103]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - shard-rkl: [PASS][174] -> [SKIP][175] ([i915#11190] / [i915#14544]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2-9: NOTRUN -> [SKIP][176] ([i915#13046] / [i915#5354]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#9833]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3804]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-dg2: [PASS][180] -> [SKIP][181] ([i915#1257]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-11/igt@kms_dp_aux_dev.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_dp_aux_dev.html - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#1257]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#13707]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#13707]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-dg2-9: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_dsc@dsc-basic.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-4/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#3840]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc: - shard-rkl: [PASS][190] -> [SKIP][191] ([i915#14544] / [i915#14561]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_fbcon_fbt@fbc.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3469]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3469]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#2065] / [i915#4854]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#1839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@kms_feature_discovery@display-2x.html - shard-rkl: NOTRUN -> [SKIP][196] ([i915#14544] / [i915#1839]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#9934]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#9934]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-14/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#8381]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#9934]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][201] ([i915#9934]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#3637] / [i915#9934]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-8/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3637] / [i915#9934]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [PASS][204] -> [SKIP][205] ([i915#14544] / [i915#3637]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_flip@absolute-wf_vblank-interruptible.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@basic-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#14544] / [i915#3637]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][207] ([i915#12745] / [i915#4839]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][208] ([i915#12745]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a2: - shard-rkl: NOTRUN -> [INCOMPLETE][209] ([i915#6113]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555] / [i915#5190]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][212] ([i915#2672]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#2672]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-rkl: [PASS][216] -> [SKIP][217] ([i915#14544] / [i915#3555]) +4 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-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-tglu-1: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#2587] / [i915#2672]) +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555] / [i915#5190]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#2672]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2-9: NOTRUN -> [SKIP][223] ([i915#5354]) +12 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#1825]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg2: [PASS][225] -> [FAIL][226] ([i915#6880]) +2 other tests fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#8708]) +4 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - shard-rkl: [PASS][228] -> [SKIP][229] ([i915#14544] / [i915#1849] / [i915#5354]) +12 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [PASS][230] -> [INCOMPLETE][231] ([i915#10056]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-suspend.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#3458]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#10433] / [i915#3458]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][234] ([i915#8708]) +10 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#14544] / [i915#1849] / [i915#5354]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#8708]) +18 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#5354]) +30 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite: - shard-dg2-9: NOTRUN -> [SKIP][238] ([i915#3458]) +7 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#9766]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#3458]) +17 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html - shard-rkl: NOTRUN -> [SKIP][241] ([i915#3023]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#8708]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#1825]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][244] +41 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][245] +57 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-2/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#12713]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2-9: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: [PASS][250] -> [SKIP][251] ([i915#3555] / [i915#8228]) +2 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-10/igt@kms_hdr@static-toggle.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8228]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@int-max-clock: - shard-rkl: [PASS][253] -> [SKIP][254] ([i915#14544] / [i915#3555] / [i915#8826]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_invalid_mode@int-max-clock.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_invalid_mode@int-max-clock.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#12388]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#12339]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][257] ([i915#12339]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-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_13484/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - shard-glk11: NOTRUN -> [SKIP][259] ([i915#11190]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-rkl: [PASS][260] -> [SKIP][261] ([i915#14544] / [i915#7294]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_plane_alpha_blend@constant-alpha-max.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#8821]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2-9: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8821]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#13958]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#13958]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#13958]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-5/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#14259]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#14259]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@invalid-parameters: - shard-rkl: [PASS][269] -> [SKIP][270] ([i915#14544] / [i915#8152]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_plane_scaling@invalid-parameters.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#12247] / [i915#9423]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#12247]) +4 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b: - shard-glk11: NOTRUN -> [SKIP][273] +151 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk11/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#12247] / [i915#14544]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-rkl: [PASS][276] -> [SKIP][277] ([i915#14544] / [i915#3555] / [i915#8152]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#12247] / [i915#6953]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-dg2: NOTRUN -> [SKIP][279] ([i915#12247] / [i915#6953] / [i915#9423]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][280] ([i915#12247] / [i915#6953]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#12247] / [i915#6953]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#12247]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#12247]) +7 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#12247]) +3 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#12247]) +3 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-rkl: [PASS][286] -> [SKIP][287] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b: - shard-rkl: [PASS][288] -> [SKIP][289] ([i915#12247] / [i915#14544] / [i915#8152]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a: - shard-rkl: [PASS][290] -> [SKIP][291] ([i915#12247] / [i915#14544]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#9812]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-9: NOTRUN -> [SKIP][293] ([i915#12343]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#9812]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#9685]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#9685]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [PASS][297] -> [SKIP][298] ([i915#3361]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#3828]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-8/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg1: [PASS][300] -> [DMESG-WARN][301] ([i915#4423]) +7 other tests dmesg-warn [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-16/igt@kms_pm_rpm@i2c.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-19/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#9519]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][303] -> [SKIP][304] ([i915#9519]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#6524]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_properties@plane-properties-legacy: - shard-rkl: [PASS][306] -> [SKIP][307] ([i915#11521] / [i915#14544]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_properties@plane-properties-legacy.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_properties@plane-properties-legacy.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#11520] / [i915#14544]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2-9: NOTRUN -> [SKIP][309] ([i915#11520]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#11520]) +5 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#11520]) +6 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#11520]) +4 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-glk11: NOTRUN -> [SKIP][313] ([i915#11520]) +4 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][314] ([i915#11520]) +7 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#9683]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#9683]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-3/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#1072] / [i915#9732]) +19 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][318] ([i915#9732]) +11 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-7/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#9732]) +13 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-snb: NOTRUN -> [SKIP][320] +24 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-snb7/igt@kms_psr@fbc-psr2-cursor-plane-move.html - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#9688]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-7/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_psr@pr-sprite-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][323] ([i915#1072] / [i915#9732]) +4 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-12/igt@kms_psr@pr-sprite-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][324] ([i915#1072] / [i915#9732]) +10 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#1072] / [i915#9732]) +3 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#9685]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#5190]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-9: NOTRUN -> [SKIP][328] ([i915#12755] / [i915#5190]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-tglu: NOTRUN -> [SKIP][329] ([i915#5289]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-center: - shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#3555]) +4 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][331] ([i915#13179]) +1 other test abort [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk9/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-snb: [PASS][332] -> [FAIL][333] ([i915#5465]) +2 other tests fail [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-snb2/igt@kms_setmode@basic.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-snb1/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#3555]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vrr@flip-basic: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#3555]) +3 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2-9: NOTRUN -> [SKIP][336] ([i915#9906]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#11920]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#3555] / [i915#9906]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#9906]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#9906]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][341] ([i915#14544]) +4 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#2437]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][343] ([i915#2437]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk5/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-9: NOTRUN -> [SKIP][344] ([i915#2437] / [i915#9412]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf_pmu@busy-double-start@ccs0: - shard-dg2: [PASS][345] -> [FAIL][346] ([i915#4349]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-7/igt@perf_pmu@busy-double-start@ccs0.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@perf_pmu@busy-double-start@ccs0.html * igt@perf_pmu@busy-double-start@vcs0: - shard-mtlp: [PASS][347] -> [FAIL][348] ([i915#4349]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-4/igt@perf_pmu@busy-double-start@vcs0.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs0.html * igt@perf_pmu@busy-double-start@vecs0: - shard-dg1: [PASS][349] -> [FAIL][350] ([i915#4349]) +3 other tests fail [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-18/igt@perf_pmu@busy-double-start@vecs0.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-14/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][351] ([i915#12549] / [i915#6806]) +1 other test fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-rkl: NOTRUN -> [FAIL][352] ([i915#14433]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@perf_pmu@module-unload.html * igt@prime_vgem@coherency-gtt: - shard-dg2-9: NOTRUN -> [SKIP][353] ([i915#3708] / [i915#4077]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@prime_vgem@coherency-gtt.html * igt@runner@aborted: - shard-mtlp: NOTRUN -> ([FAIL][354], [FAIL][355]) ([i915#14489]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-3/igt@runner@aborted.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-3/igt@runner@aborted.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][356] ([i915#12910]) +9 other tests fail [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#9917]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@sriov_basic@enable-vfs-autoprobe-on.html #### Possible fixes #### * igt@fbdev@nullptr: - shard-rkl: [SKIP][358] ([i915#14544] / [i915#2582]) -> [PASS][359] +1 other test pass [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@fbdev@nullptr.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@fbdev@nullptr.html * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][360] ([i915#13356]) -> [PASS][361] +1 other test pass [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-4/igt@gem_ccs@suspend-resume.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@gem_ccs@suspend-resume.html * igt@gem_eio@in-flight-external: - shard-mtlp: [DMESG-WARN][362] -> [PASS][363] [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-6/igt@gem_eio@in-flight-external.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-3/igt@gem_eio@in-flight-external.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][364] ([i915#5784]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-17/igt@gem_eio@unwedge-stress.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_exec_endless@dispatch@vcs0: - shard-dg2: [TIMEOUT][366] ([i915#3778] / [i915#7016]) -> [PASS][367] +1 other test pass [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-8/igt@gem_exec_endless@dispatch@vcs0.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@gem_exec_endless@dispatch@vcs0.html * igt@gem_exec_gttfill@basic: - shard-rkl: [DMESG-WARN][368] ([i915#12917] / [i915#12964]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_exec_gttfill@basic.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@gem_exec_gttfill@basic.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][370] ([i915#5493]) -> [PASS][371] +1 other test pass [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_wc@set-cache-level: - shard-rkl: [SKIP][372] ([i915#14544] / [i915#1850]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_mmap_wc@set-cache-level.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_mmap_wc@set-cache-level.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: [TIMEOUT][374] ([i915#12917] / [i915#12964]) -> [PASS][375] +1 other test pass [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_workarounds@suspend-resume: - shard-dg2: [ABORT][376] ([i915#8213]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-10/igt@gem_workarounds@suspend-resume.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@gem_workarounds@suspend-resume.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [FAIL][378] ([i915#12942]) -> [PASS][379] +1 other test pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-accuracy.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [INCOMPLETE][380] ([i915#4817]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@i915_suspend@debugfs-reader.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@i915_suspend@debugfs-reader.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-rkl: [SKIP][382] ([i915#14544]) -> [PASS][383] +23 other tests pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][384] ([i915#13566]) -> [PASS][385] +5 other tests pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-rkl: [FAIL][386] ([i915#13566]) -> [PASS][387] +1 other test pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: [SKIP][388] ([i915#13749]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-7/igt@kms_dp_link_training@non-uhbr-sst.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-rkl: [SKIP][390] ([i915#14544] / [i915#3637]) -> [PASS][391] +4 other tests pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip@flip-vs-panning-interruptible.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a4: - shard-dg1: [DMESG-WARN][392] ([i915#4423]) -> [PASS][393] +7 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-18/igt@kms_flip@flip-vs-suspend@d-hdmi-a4.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-17/igt@kms_flip@flip-vs-suspend@d-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-rkl: [SKIP][394] ([i915#14544] / [i915#3555]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_force_connector_basic@force-connector-state: - shard-dg1: [ABORT][396] ([i915#4423]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-12/igt@kms_force_connector_basic@force-connector-state.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-12/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][398] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][399] +5 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-dg2: [FAIL][400] ([i915#6880]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt@kms_hdmi_inject@inject-audio: - shard-snb: [SKIP][402] -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-snb7/igt@kms_hdmi_inject@inject-audio.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-snb1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_invalid_mode@bad-vsync-start: - shard-rkl: [SKIP][404] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-start.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_invalid_mode@bad-vsync-start.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - shard-rkl: [SKIP][406] ([i915#11190] / [i915#14544]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_plane@plane-position-hole-dpms: - shard-rkl: [SKIP][408] ([i915#14544] / [i915#8825]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane@plane-position-hole-dpms.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-rkl: [SKIP][410] ([i915#14544] / [i915#7294]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-7efc.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_plane_alpha_blend@alpha-7efc.html * igt@kms_plane_scaling@invalid-num-scalers: - shard-rkl: [SKIP][412] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-rkl: [SKIP][414] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][415] +4 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-rkl: [SKIP][416] ([i915#14544] / [i915#8152]) -> [PASS][417] +1 other test pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a: - shard-rkl: [SKIP][418] ([i915#12247] / [i915#14544]) -> [PASS][419] +3 other tests pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-rkl: [SKIP][420] ([i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-rkl: [SKIP][422] ([i915#13441] / [i915#14544]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_pm_dc@dc5-dpms-negative.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [FAIL][424] ([i915#9295]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@basic-rte: - shard-rkl: [DMESG-FAIL][426] ([i915#12964]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_pm_rpm@basic-rte.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][428] ([i915#9519]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-vgem: - shard-rkl: [SKIP][430] ([i915#14544] / [i915#6524]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_prime@basic-crc-vgem.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_prime@basic-crc-vgem.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][432] ([i915#10393]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-5/igt@kms_vrr@negative-basic.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-5/igt@kms_vrr@negative-basic.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][434] ([i915#4349]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-8/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@busy-double-start@vecs0: - shard-rkl: [DMESG-WARN][436] ([i915#12964]) -> [PASS][437] +41 other tests pass [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@perf_pmu@busy-double-start@vecs0.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-mtlp: [FAIL][438] ([i915#11943]) -> [PASS][439] +1 other test pass [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-5/igt@perf_pmu@most-busy-idle-check-all@rcs0.html #### Warnings #### * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: [SKIP][440] ([i915#3555] / [i915#9323]) -> [SKIP][441] ([i915#14544] / [i915#3555] / [i915#9323]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_ccs@block-multicopy-inplace.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: [SKIP][442] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][443] ([i915#3555] / [i915#9323]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: [SKIP][444] ([i915#14544] / [i915#6335]) -> [SKIP][445] ([i915#6335]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: [SKIP][446] ([i915#4525]) -> [SKIP][447] ([i915#14544] / [i915#4525]) +2 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_exec_balancer@parallel-out-fence.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_reloc@basic-cpu-read: - shard-rkl: [SKIP][448] ([i915#14544] / [i915#3281]) -> [SKIP][449] ([i915#3281]) +5 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-read.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: [SKIP][450] ([i915#3281]) -> [SKIP][451] ([i915#14544] / [i915#3281]) +4 other tests skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-read-noreloc.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: [SKIP][452] ([i915#14544] / [i915#4613]) -> [SKIP][453] ([i915#4613]) +2 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@verify: - shard-rkl: [SKIP][454] ([i915#4613]) -> [SKIP][455] ([i915#14544] / [i915#4613]) +3 other tests skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@gem_lmem_swapping@verify.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_lmem_swapping@verify.html * igt@gem_pwrite@basic-self: - shard-rkl: [SKIP][456] ([i915#14544] / [i915#3282]) -> [SKIP][457] ([i915#3282]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_pwrite@basic-self.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@gem_pwrite@basic-self.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][458] ([i915#8411]) -> [SKIP][459] ([i915#14544] / [i915#8411]) +1 other test skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-rkl: [SKIP][460] -> [SKIP][461] ([i915#14544]) +15 other tests skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_softpin@evict-snoop.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-rkl: [SKIP][462] ([i915#3282]) -> [SKIP][463] ([i915#14544] / [i915#3282]) +5 other tests skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_tiled_partial_pwrite_pread@writes.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: [SKIP][464] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][465] ([i915#3297] / [i915#3323]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][466] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][467] ([i915#3282] / [i915#3297]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: [SKIP][468] ([i915#3297]) -> [SKIP][469] ([i915#14544] / [i915#3297]) +1 other test skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: [SKIP][470] ([i915#14544] / [i915#2527]) -> [SKIP][471] ([i915#2527]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: [SKIP][472] ([i915#2527]) -> [SKIP][473] ([i915#14544] / [i915#2527]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gen9_exec_parse@bb-start-out.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html * igt@i915_module_load@resize-bar: - shard-rkl: [SKIP][474] ([i915#6412]) -> [SKIP][475] ([i915#14544] / [i915#6412]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@i915_module_load@resize-bar.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: [SKIP][476] ([i915#14498] / [i915#14544]) -> [SKIP][477] ([i915#14498]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#5723]) -> [SKIP][479] ([i915#5723]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: [SKIP][480] ([i915#14544]) -> [SKIP][481] ([i915#5286]) +5 other tests skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: [SKIP][482] ([i915#5286]) -> [SKIP][483] ([i915#14544]) +3 other tests skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: [SKIP][484] ([i915#14544]) -> [SKIP][485] ([i915#3638]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][486] ([i915#3638]) -> [SKIP][487] ([i915#14544]) +1 other test skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg1: [SKIP][488] ([i915#4538]) -> [SKIP][489] ([i915#4423] / [i915#4538]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-12/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][490] ([i915#6095]) -> [SKIP][491] ([i915#14098] / [i915#6095]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: [SKIP][492] ([i915#12805]) -> [SKIP][493] ([i915#14544]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][494] ([i915#14098] / [i915#6095]) -> [SKIP][495] ([i915#6095]) +1 other test skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][496] ([i915#12313]) -> [SKIP][497] ([i915#14544]) +2 other tests skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][498] ([i915#14098] / [i915#6095]) -> [SKIP][499] ([i915#14544]) +7 other tests skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-rkl: [SKIP][500] ([i915#14544]) -> [SKIP][501] ([i915#14098] / [i915#6095]) +4 other tests skip [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: [SKIP][502] ([i915#14544]) -> [SKIP][503] ([i915#12313]) +1 other test skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-rkl: [SKIP][504] ([i915#11151] / [i915#7828]) -> [SKIP][505] ([i915#11151] / [i915#14544] / [i915#7828]) +7 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-single.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: [SKIP][506] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][507] ([i915#11151] / [i915#7828]) +1 other test skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [FAIL][508] ([i915#7173]) -> [SKIP][509] ([i915#7118] / [i915#9424]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic-type-1: - shard-rkl: [SKIP][510] ([i915#9424]) -> [SKIP][511] ([i915#14544]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_content_protection@lic-type-1.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-rkl: [SKIP][512] ([i915#14544]) -> [SKIP][513] ([i915#7118]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_content_protection@srm.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: [SKIP][514] ([i915#14544]) -> [SKIP][515] ([i915#13049]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [SKIP][516] ([i915#14544]) -> [FAIL][517] ([i915#13566]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-64x21.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg1: [SKIP][518] ([i915#3555] / [i915#4423]) -> [SKIP][519] ([i915#3555]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: [SKIP][520] ([i915#14544]) -> [SKIP][521] ([i915#3555]) +3 other tests skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: [SKIP][522] ([i915#13049]) -> [SKIP][523] ([i915#14544]) +1 other test skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x170.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: [SKIP][524] ([i915#4103] / [i915#4213] / [i915#4423]) -> [SKIP][525] ([i915#4103] / [i915#4213]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: [SKIP][526] ([i915#14544]) -> [SKIP][527] +14 other tests skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-rkl: [FAIL][528] ([i915#2346]) -> [DMESG-WARN][529] ([i915#12964]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: [SKIP][530] ([i915#14544]) -> [SKIP][531] ([i915#3555] / [i915#3804]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: [SKIP][532] ([i915#14544]) -> [SKIP][533] ([i915#3840]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: [SKIP][534] ([i915#3555] / [i915#3840]) -> [SKIP][535] ([i915#14544]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg1: [SKIP][536] ([i915#9934]) -> [SKIP][537] ([i915#4423] / [i915#9934]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-16/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-13/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: [SKIP][538] ([i915#9934]) -> [SKIP][539] ([i915#14544] / [i915#9934]) +4 other tests skip [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: [SKIP][540] ([i915#14544] / [i915#9934]) -> [SKIP][541] ([i915#9934]) +6 other tests skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-rkl: [DMESG-WARN][542] ([i915#12964]) -> [SKIP][543] ([i915#14544] / [i915#3637]) +1 other test skip [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_flip@basic-flip-vs-wf_vblank.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [SKIP][544] ([i915#14544] / [i915#3637]) -> [INCOMPLETE][545] ([i915#6113]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: [SKIP][546] ([i915#14544] / [i915#3555]) -> [SKIP][547] ([i915#2672] / [i915#3555]) +1 other test skip [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: [SKIP][548] ([i915#2672] / [i915#3555]) -> [SKIP][549] ([i915#14544] / [i915#3555]) +1 other test skip [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [DMESG-WARN][550] ([i915#12964]) -> [SKIP][551] ([i915#14544] / [i915#1849] / [i915#5354]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: [SKIP][552] ([i915#3458]) -> [SKIP][553] ([i915#10433] / [i915#3458]) +2 other tests skip [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: [SKIP][554] ([i915#4423] / [i915#8708]) -> [SKIP][555] ([i915#8708]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][556] ([i915#1825]) -> [SKIP][557] ([i915#14544] / [i915#1849] / [i915#5354]) +26 other tests skip [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][558] ([i915#10433] / [i915#3458]) -> [SKIP][559] ([i915#3458]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: [SKIP][560] ([i915#9766]) -> [SKIP][561] ([i915#14544] / [i915#1849] / [i915#5354]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: [SKIP][562] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][563] ([i915#3023]) +14 other tests skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][564] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][565] ([i915#1825]) +20 other tests skip [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg1: [SKIP][566] ([i915#8708]) -> [SKIP][567] ([i915#4423] / [i915#8708]) [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: [SKIP][568] ([i915#3023]) -> [SKIP][569] ([i915#14544] / [i915#1849] / [i915#5354]) +20 other tests skip [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [SKIP][570] ([i915#14544]) -> [SKIP][571] ([i915#3555] / [i915#8228]) +1 other test skip [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][572] ([i915#3555] / [i915#8228]) -> [SKIP][573] ([i915#14544]) [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_hdr@static-toggle-suspend.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: [SKIP][574] ([i915#10656]) -> [SKIP][575] ([i915#10656] / [i915#14544]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_joiner@basic-big-joiner.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: [SKIP][576] ([i915#12394] / [i915#14544]) -> [SKIP][577] ([i915#12394]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][578] ([i915#4070] / [i915#4816]) -> [SKIP][579] ([i915#1839] / [i915#4816]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][580] ([i915#14544]) -> [SKIP][581] ([i915#6301]) [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: [SKIP][582] ([i915#13958]) -> [SKIP][583] ([i915#14544]) +1 other test skip [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-y.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-dg1: [SKIP][584] ([i915#13958]) -> [SKIP][585] ([i915#13958] / [i915#4423]) [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-yf.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: [SKIP][586] ([i915#14259]) -> [SKIP][587] ([i915#14544]) [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-rkl: [SKIP][588] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][589] ([i915#12247]) +3 other tests skip [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: - shard-rkl: [SKIP][590] ([i915#12247] / [i915#14544]) -> [SKIP][591] ([i915#12247]) +1 other test skip [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a: - shard-rkl: [SKIP][592] ([i915#12247]) -> [SKIP][593] ([i915#12247] / [i915#14544]) +1 other test skip [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-rkl: [SKIP][594] ([i915#12247] / [i915#6953]) -> [SKIP][595] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-rkl: [SKIP][596] ([i915#12247]) -> [SKIP][597] ([i915#12247] / [i915#14544] / [i915#8152]) +2 other tests skip [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: [SKIP][598] ([i915#5354]) -> [SKIP][599] ([i915#14544] / [i915#5354]) [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_pm_backlight@basic-brightness.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: [SKIP][600] ([i915#12343] / [i915#14544]) -> [SKIP][601] ([i915#12343]) [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][602] ([i915#3828]) -> [SKIP][603] ([i915#14544] / [i915#9340]) [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: [SKIP][604] ([i915#6524]) -> [SKIP][605] ([i915#14544] / [i915#6524]) [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: [SKIP][606] ([i915#14544] / [i915#6524]) -> [SKIP][607] ([i915#6524]) [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_prime@d3hot.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][608] ([i915#11520]) -> [SKIP][609] ([i915#11520] / [i915#14544]) +6 other tests skip [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][610] ([i915#11520] / [i915#14544]) -> [SKIP][611] ([i915#11520]) +5 other tests skip [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: [SKIP][612] ([i915#11520] / [i915#4423]) -> [SKIP][613] ([i915#11520]) [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-12/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-13/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: [SKIP][614] ([i915#9683]) -> [SKIP][615] ([i915#14544] / [i915#9683]) [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr2-no-drrs: - shard-dg1: [SKIP][616] ([i915#1072] / [i915#9732]) -> [SKIP][617] ([i915#1072] / [i915#4423] / [i915#9732]) [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-19/igt@kms_psr@fbc-psr2-no-drrs.html [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_psr@fbc-psr2-no-drrs.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: [SKIP][618] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][619] ([i915#1072] / [i915#9732]) +12 other tests skip [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: [SKIP][620] ([i915#1072] / [i915#9732]) -> [SKIP][621] ([i915#1072] / [i915#14544] / [i915#9732]) +15 other tests skip [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_psr@psr-cursor-plane-move.html [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: [SKIP][622] ([i915#5289]) -> [SKIP][623] ([i915#14544]) [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][624] ([i915#14544]) -> [SKIP][625] ([i915#5289]) [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: [SKIP][626] ([i915#14544] / [i915#3555]) -> [SKIP][627] ([i915#3555]) [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html [627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vrr@flip-dpms: - shard-rkl: [SKIP][628] ([i915#3555]) -> [SKIP][629] ([i915#14544]) +2 other tests skip [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_vrr@flip-dpms.html [629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: [SKIP][630] ([i915#14544] / [i915#2437] / [i915#9412]) -> [SKIP][631] ([i915#2437] / [i915#9412]) +1 other test skip [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: [SKIP][632] ([i915#2435]) -> [SKIP][633] ([i915#14544] / [i915#2435]) [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html [633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: [SKIP][634] ([i915#3708]) -> [SKIP][635] ([i915#14544] / [i915#3708]) [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@prime_vgem@fence-flip-hang.html [635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-write-hang: - shard-rkl: [SKIP][636] ([i915#14544] / [i915#3708]) -> [SKIP][637] ([i915#3708]) [636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@prime_vgem@fence-write-hang.html [637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@prime_vgem@fence-write-hang.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455 [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [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#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441 [i915#13550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13665]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13899]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13899 [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#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14191]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14191 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14334 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14489]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14489 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14561 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#1850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1850 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [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#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#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#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [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#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [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#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294 [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#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [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#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [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_8462 -> IGTPW_13484 CI-20190529: 20190529 CI_DRM_16877: 5c81898a2e97ccaed5067b1476f6a77321d057f9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13484: f3006f66bae5b05c30e0b3a49ac5b9928a9e6ff8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8462: f33a311145a889757f45313d2ff4bf58f7ef01d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/index.html [-- Attachment #2: Type: text/html, Size: 209499 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] lib/igt_sysfs: Remove redundant variable assignment 2025-07-16 13:27 [PATCH i-g-t] lib/igt_sysfs: Remove redundant variable assignment Pranay Samala ` (3 preceding siblings ...) 2025-07-17 10:36 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-07-17 10:44 ` Kamil Konieczny 2025-07-17 12:01 ` ✓ i915.CI.Full: success for " Patchwork 2025-07-17 13:52 ` ✗ Xe.CI.Full: failure " Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2025-07-17 10:44 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev, karthik.b.s, sameer.lattannavar, Ashutosh Dixit Hi Pranay, On 2025-07-16 at 18:57:52 +0530, Pranay Samala wrote: as Ashutosh pointed out, this is a fix, as code was printing a var which has no assigned value. Please improve subject, for example to: [PATCH i-g-t] lib/igt_sysfs: Fix mask printing > Eliminate redundant assignment in debug mask setup. > Simplified the logic by directly using the input > parameter for logging and sysfs operations. Improve also description, for example: Remove variable which is printed but has no assigned value. > > Fixes: 835f38b71973 ("lib/igt_sysfs: Update new debug mask requested by user") > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > lib/igt_sysfs.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c > index aec157b5b..96ca57ed9 100644 > --- a/lib/igt_sysfs.c > +++ b/lib/igt_sysfs.c > @@ -506,7 +506,6 @@ void igt_drm_debug_mask_reset_exit_handler(int sig) > */ > void igt_drm_debug_mask_update(unsigned int mask_to_set) > { > - unsigned int new_debug_mask; > static bool debug_mask_read_once = true; > char buf[20]; > int dir; > @@ -525,8 +524,8 @@ void igt_drm_debug_mask_update(unsigned int mask_to_set) > } > } > > - igt_debug("Setting DRM debug mask to %d\n", new_debug_mask); > - snprintf(buf, sizeof(buf), "%d", new_debug_mask); > + igt_debug("Setting DRM debug mask to %d\n", mask_to_set); When printing to screen imho it is better to use hex values, as these are bits, so please use '0x%x' instead of '%d' If you will make this change please also describe it in commit message, for example: Also while at this, print it's value as hex as this is bitmask. Regards, Kamil > + snprintf(buf, sizeof(buf), "%d", mask_to_set); > igt_assert(igt_sysfs_set(dir, "debug", buf)); > > close(dir); > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.Full: success for lib/igt_sysfs: Remove redundant variable assignment 2025-07-16 13:27 [PATCH i-g-t] lib/igt_sysfs: Remove redundant variable assignment Pranay Samala ` (4 preceding siblings ...) 2025-07-17 10:44 ` [PATCH i-g-t] " Kamil Konieczny @ 2025-07-17 12:01 ` Patchwork 2025-07-17 13:52 ` ✗ Xe.CI.Full: failure " Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-07-17 12:01 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 153943 bytes --] == Series Details == Series: lib/igt_sysfs: Remove redundant variable assignment URL : https://patchwork.freedesktop.org/series/151708/ State : success == Summary == CI Bug Log - changes from IGT_8462_full -> IGTPW_13484_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk10 Known issues ------------ Here are the changes found in IGTPW_13484_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2-9: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][5] ([i915#7697]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-5/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#9323]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#7697]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][9] ([i915#7697]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2-9: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_compute@compute-square: - shard-dg2: NOTRUN -> [FAIL][11] ([i915#13665]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@gem_compute@compute-square.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8562]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@gem_create@create-ext-set-pat.html - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#8562]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg1: NOTRUN -> [SKIP][14] +4 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-16/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-stop.html - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@process: - shard-snb: NOTRUN -> [SKIP][17] ([i915#1099]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-snb5/igt@gem_ctx_persistence@process.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#5882]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@engines: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#280]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@kms: - shard-dg2: [PASS][21] -> [FAIL][22] ([i915#5784]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-4/igt@gem_eio@kms.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4812]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@gem_exec_balancer@bonded-true-hang.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4812]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-7/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#4525]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_capture@capture-invisible: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#6334]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-19/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][28] ([i915#6334]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#5107]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +11 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-concurrent16: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_exec_reloc@basic-concurrent16.html * igt@gem_exec_reloc@basic-cpu: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#14544] / [i915#3281]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_exec_reloc@basic-cpu.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2-9: NOTRUN -> [SKIP][35] ([i915#3281]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-range-active: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-5/igt@gem_exec_reloc@basic-range-active.html - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-14/igt@gem_exec_reloc@basic-range-active.html * igt@gem_exec_schedule@fairslice: - shard-rkl: [PASS][38] -> [DMESG-WARN][39] ([i915#12964]) +20 other tests dmesg-warn [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@gem_exec_schedule@fairslice.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_exec_schedule@fairslice.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4812]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-12/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613] / [i915#7582]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-6/igt@gem_lmem_evict@dontneed-evict-race.html - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@massive-random: - shard-tglu-1: NOTRUN -> [SKIP][46] ([i915#4613]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][47] ([i915#4613]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#284]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@gem_media_vme.html - shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#284]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_media_vme.html * igt@gem_mmap@pf-nonblock: - shard-dg2-9: NOTRUN -> [SKIP][50] ([i915#4083]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_mmap@pf-nonblock.html * igt@gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-19/igt@gem_mmap_gtt@basic-small-copy-odd.html * igt@gem_mmap_gtt@basic-write-gtt: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4077]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-5/igt@gem_mmap_gtt@basic-write-gtt.html * igt@gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +13 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2-9: NOTRUN -> [SKIP][55] ([i915#3282]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3282]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][57] ([i915#2658]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_pwrite_snooped.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][59] ([i915#12964]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#13398]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-mtlp: [PASS][61] -> [SKIP][62] ([i915#13398]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-6/igt@gem_pxp@hw-rejects-pxp-context.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-3/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg2-9: NOTRUN -> [SKIP][63] ([i915#4270]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: [PASS][64] -> [TIMEOUT][65] ([i915#12917] / [i915#12964]) +1 other test timeout [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#8428]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-6/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html - shard-dg2: NOTRUN -> [SKIP][68] ([i915#5190] / [i915#8428]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2-9: NOTRUN -> [SKIP][69] ([i915#5190] / [i915#8428]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4885]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_blits@basic: - shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#4077]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_tiled_blits@basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-7/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2-9: NOTRUN -> [SKIP][75] ([i915#3282] / [i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2-9: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_workarounds@suspend-resume: - shard-rkl: [PASS][78] -> [INCOMPLETE][79] ([i915#13356]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_workarounds@suspend-resume.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@gem_workarounds@suspend-resume.html * igt@gen3_render_tiledx_blits: - shard-dg2-9: NOTRUN -> [SKIP][80] +6 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@basic-offset: - shard-mtlp: NOTRUN -> [SKIP][81] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-7/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@basic-rejected: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#14544] / [i915#2527]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-large: - shard-dg2-9: NOTRUN -> [SKIP][84] ([i915#2856]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-5/igt@gen9_exec_parse@unaligned-jump.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-2/igt@gen9_exec_parse@unaligned-jump.html - shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@gen9_exec_parse@unaligned-jump.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#2527]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2-9: NOTRUN -> [SKIP][90] ([i915#14073]) +7 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_drm_fdinfo@virtual-busy-hang: - shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#14118]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@i915_drm_fdinfo@virtual-busy-hang.html * igt@i915_drm_fdinfo@virtual-busy-idle: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#14118]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@i915_drm_fdinfo@virtual-busy-idle.html * igt@i915_module_load@reload-no-display: - shard-dg2: [PASS][93] -> [DMESG-WARN][94] ([i915#13029] / [i915#14545]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-10/igt@i915_module_load@reload-no-display.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#8399]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#8399]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-4/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][97] -> [INCOMPLETE][98] ([i915#12455] / [i915#13820]) +1 other test incomplete [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][99] ([i915#13790] / [i915#2681]) +1 other test warn [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg2-9: NOTRUN -> [ABORT][100] ([i915#14191] / [i915#14334]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@i915_pm_rpm@system-suspend-execbuf.html - shard-glk11: NOTRUN -> [INCOMPLETE][101] ([i915#12797]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk11/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#11681] / [i915#6621]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_sseu@full-enable: - shard-dg2-9: NOTRUN -> [SKIP][103] ([i915#4387]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#6245]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#6188]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live: - shard-rkl: [PASS][106] -> [DMESG-FAIL][107] ([i915#12964] / [i915#13550]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@i915_selftest@live.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [PASS][108] -> [DMESG-FAIL][109] ([i915#13550]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@i915_selftest@live@gt_pm.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@debugfs-reader: - shard-glk11: NOTRUN -> [INCOMPLETE][110] ([i915#4817]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk11/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-snb: [PASS][111] -> [DMESG-WARN][112] ([i915#13899]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-snb2/igt@i915_suspend@fence-restore-tiled2untiled.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-snb1/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][113] ([i915#4817]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk3/igt@i915_suspend@forcewake.html * igt@i915_suspend@sysfs-reader: - shard-rkl: [PASS][114] -> [INCOMPLETE][115] ([i915#4817]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@i915_suspend@sysfs-reader.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2-9: NOTRUN -> [SKIP][116] ([i915#4212]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4212]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2-9: NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][119] ([i915#1769]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind: - shard-rkl: [PASS][120] -> [SKIP][121] ([i915#14544]) +38 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#5286]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#5286]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#5286]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2-9: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-9: NOTRUN -> [SKIP][127] ([i915#5190]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6187]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +5 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][130] +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#6095]) +34 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#6095]) +34 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][133] +230 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#10307] / [i915#6095]) +118 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6095]) +14 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#14098] / [i915#6095]) +31 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#6095]) +23 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: NOTRUN -> [INCOMPLETE][138] ([i915#12796]) +1 other test incomplete [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][139] ([i915#14694]) +1 other test incomplete [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#12313]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#12313]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#6095]) +36 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-dg2-9: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#6095]) +44 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#6095]) +131 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#3742]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][146] +18 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +6 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +6 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2-9: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@legacy-gamma: - shard-rkl: [PASS][154] -> [SKIP][155] ([i915#12655] / [i915#14544]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_color@legacy-gamma.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_color@legacy-gamma.html * igt@kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#9424]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3116]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3299]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-dg2-9: NOTRUN -> [SKIP][159] ([i915#7118]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#13049]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-rkl: [PASS][161] -> [FAIL][162] ([i915#13566]) +1 other test fail [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#13049]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#13049]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][165] ([i915#13566]) +1 other test fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#3555]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: [PASS][167] -> [FAIL][168] ([i915#13566]) +5 other tests fail [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-128x42.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][169] ([i915#12964]) +7 other tests dmesg-warn [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-dg2-9: NOTRUN -> [SKIP][170] ([i915#3555]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#13046] / [i915#5354]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#4103]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#4103]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - shard-rkl: [PASS][174] -> [SKIP][175] ([i915#11190] / [i915#14544]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2-9: NOTRUN -> [SKIP][176] ([i915#13046] / [i915#5354]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4103] / [i915#4213]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#9833]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3804]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-dg2: [PASS][180] -> [SKIP][181] ([i915#1257]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-11/igt@kms_dp_aux_dev.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_dp_aux_dev.html - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#1257]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#13707]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#13707]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-dg2-9: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_dsc@dsc-basic.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-4/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#3840]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc: - shard-rkl: [PASS][190] -> [SKIP][191] ([i915#14544] / [i915#14561]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_fbcon_fbt@fbc.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3469]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3469]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#2065] / [i915#4854]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#1839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@kms_feature_discovery@display-2x.html - shard-rkl: NOTRUN -> [SKIP][196] ([i915#14544] / [i915#1839]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#9934]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#9934]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-14/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#8381]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#9934]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][201] ([i915#9934]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#3637] / [i915#9934]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-8/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3637] / [i915#9934]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [PASS][204] -> [SKIP][205] ([i915#14544] / [i915#3637]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_flip@absolute-wf_vblank-interruptible.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@basic-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#14544] / [i915#3637]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][207] ([i915#12745] / [i915#4839]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][208] ([i915#12745]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a2: - shard-rkl: NOTRUN -> [INCOMPLETE][209] ([i915#6113]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555] / [i915#5190]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][212] ([i915#2672]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#2672]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-rkl: [PASS][216] -> [SKIP][217] ([i915#14544] / [i915#3555]) +4 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-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-tglu-1: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#2587] / [i915#2672]) +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555] / [i915#5190]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#2672]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2-9: NOTRUN -> [SKIP][223] ([i915#5354]) +12 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#1825]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg2: [PASS][225] -> [FAIL][226] ([i915#6880]) +2 other tests fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#8708]) +4 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - shard-rkl: [PASS][228] -> [SKIP][229] ([i915#14544] / [i915#1849] / [i915#5354]) +12 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [PASS][230] -> [INCOMPLETE][231] ([i915#10056]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-suspend.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#3458]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#10433] / [i915#3458]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][234] ([i915#8708]) +10 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#14544] / [i915#1849] / [i915#5354]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#8708]) +18 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#5354]) +30 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite: - shard-dg2-9: NOTRUN -> [SKIP][238] ([i915#3458]) +7 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#9766]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#3458]) +17 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html - shard-rkl: NOTRUN -> [SKIP][241] ([i915#3023]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#8708]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#1825]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][244] +41 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][245] +57 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-2/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#12713]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2-9: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: [PASS][250] -> [SKIP][251] ([i915#3555] / [i915#8228]) +2 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-10/igt@kms_hdr@static-toggle.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8228]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@int-max-clock: - shard-rkl: [PASS][253] -> [SKIP][254] ([i915#14544] / [i915#3555] / [i915#8826]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_invalid_mode@int-max-clock.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_invalid_mode@int-max-clock.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#12388]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#12339]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][257] ([i915#12339]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-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_13484/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - shard-glk11: NOTRUN -> [SKIP][259] ([i915#11190]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-rkl: [PASS][260] -> [SKIP][261] ([i915#14544] / [i915#7294]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_plane_alpha_blend@constant-alpha-max.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#8821]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2-9: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8821]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#13958]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#13958]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#13958]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-5/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#14259]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#14259]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@invalid-parameters: - shard-rkl: [PASS][269] -> [SKIP][270] ([i915#14544] / [i915#8152]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_plane_scaling@invalid-parameters.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#12247] / [i915#9423]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#12247]) +4 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b: - shard-glk11: NOTRUN -> [SKIP][273] +151 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk11/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#12247] / [i915#14544]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-rkl: [PASS][276] -> [SKIP][277] ([i915#14544] / [i915#3555] / [i915#8152]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#12247] / [i915#6953]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-dg2: NOTRUN -> [SKIP][279] ([i915#12247] / [i915#6953] / [i915#9423]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][280] ([i915#12247] / [i915#6953]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#12247] / [i915#6953]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#12247]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#12247]) +7 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#12247]) +3 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#12247]) +3 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-rkl: [PASS][286] -> [SKIP][287] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b: - shard-rkl: [PASS][288] -> [SKIP][289] ([i915#12247] / [i915#14544] / [i915#8152]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a: - shard-rkl: [PASS][290] -> [SKIP][291] ([i915#12247] / [i915#14544]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#9812]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-9: NOTRUN -> [SKIP][293] ([i915#12343]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#9812]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#9685]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#9685]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [PASS][297] -> [SKIP][298] ([i915#3361]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#3828]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-8/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg1: [PASS][300] -> [DMESG-WARN][301] ([i915#4423]) +7 other tests dmesg-warn [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-16/igt@kms_pm_rpm@i2c.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-19/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#9519]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][303] -> [SKIP][304] ([i915#9519]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#6524]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_properties@plane-properties-legacy: - shard-rkl: [PASS][306] -> [SKIP][307] ([i915#11521] / [i915#14544]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_properties@plane-properties-legacy.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_properties@plane-properties-legacy.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#11520] / [i915#14544]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2-9: NOTRUN -> [SKIP][309] ([i915#11520]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#11520]) +5 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#11520]) +6 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#11520]) +4 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-glk11: NOTRUN -> [SKIP][313] ([i915#11520]) +4 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][314] ([i915#11520]) +7 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#9683]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#9683]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-3/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#1072] / [i915#9732]) +19 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-8/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][318] ([i915#9732]) +11 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-7/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#9732]) +13 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-snb: NOTRUN -> [SKIP][320] +24 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-snb7/igt@kms_psr@fbc-psr2-cursor-plane-move.html - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#9688]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-7/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_psr@pr-sprite-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][323] ([i915#1072] / [i915#9732]) +4 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-12/igt@kms_psr@pr-sprite-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][324] ([i915#1072] / [i915#9732]) +10 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#1072] / [i915#9732]) +3 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#9685]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#5190]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-9: NOTRUN -> [SKIP][328] ([i915#12755] / [i915#5190]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-tglu: NOTRUN -> [SKIP][329] ([i915#5289]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-center: - shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#3555]) +4 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][331] ([i915#13179]) +1 other test abort [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk9/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-snb: [PASS][332] -> [FAIL][333] ([i915#5465]) +2 other tests fail [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-snb2/igt@kms_setmode@basic.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-snb1/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#3555]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vrr@flip-basic: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#3555]) +3 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-1/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2-9: NOTRUN -> [SKIP][336] ([i915#9906]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#11920]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#3555] / [i915#9906]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-5/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#9906]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#9906]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][341] ([i915#14544]) +4 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#2437]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][343] ([i915#2437]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-glk5/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-9: NOTRUN -> [SKIP][344] ([i915#2437] / [i915#9412]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf_pmu@busy-double-start@ccs0: - shard-dg2: [PASS][345] -> [FAIL][346] ([i915#4349]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-7/igt@perf_pmu@busy-double-start@ccs0.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@perf_pmu@busy-double-start@ccs0.html * igt@perf_pmu@busy-double-start@vcs0: - shard-mtlp: [PASS][347] -> [FAIL][348] ([i915#4349]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-4/igt@perf_pmu@busy-double-start@vcs0.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs0.html * igt@perf_pmu@busy-double-start@vecs0: - shard-dg1: [PASS][349] -> [FAIL][350] ([i915#4349]) +3 other tests fail [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-18/igt@perf_pmu@busy-double-start@vecs0.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-14/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][351] ([i915#12549] / [i915#6806]) +1 other test fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-rkl: NOTRUN -> [FAIL][352] ([i915#14433]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@perf_pmu@module-unload.html * igt@prime_vgem@coherency-gtt: - shard-dg2-9: NOTRUN -> [SKIP][353] ([i915#3708] / [i915#4077]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-9/igt@prime_vgem@coherency-gtt.html * igt@runner@aborted: - shard-mtlp: NOTRUN -> ([FAIL][354], [FAIL][355]) ([i915#14489]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-3/igt@runner@aborted.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-3/igt@runner@aborted.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][356] ([i915#12910]) +9 other tests fail [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#9917]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@sriov_basic@enable-vfs-autoprobe-on.html #### Possible fixes #### * igt@fbdev@nullptr: - shard-rkl: [SKIP][358] ([i915#14544] / [i915#2582]) -> [PASS][359] +1 other test pass [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@fbdev@nullptr.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@fbdev@nullptr.html * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][360] ([i915#13356]) -> [PASS][361] +1 other test pass [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-4/igt@gem_ccs@suspend-resume.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-11/igt@gem_ccs@suspend-resume.html * igt@gem_eio@in-flight-external: - shard-mtlp: [DMESG-WARN][362] -> [PASS][363] [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-6/igt@gem_eio@in-flight-external.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-3/igt@gem_eio@in-flight-external.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][364] ([i915#5784]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-17/igt@gem_eio@unwedge-stress.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_exec_endless@dispatch@vcs0: - shard-dg2: [TIMEOUT][366] ([i915#3778] / [i915#7016]) -> [PASS][367] +1 other test pass [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-8/igt@gem_exec_endless@dispatch@vcs0.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@gem_exec_endless@dispatch@vcs0.html * igt@gem_exec_gttfill@basic: - shard-rkl: [DMESG-WARN][368] ([i915#12917] / [i915#12964]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_exec_gttfill@basic.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@gem_exec_gttfill@basic.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][370] ([i915#5493]) -> [PASS][371] +1 other test pass [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_wc@set-cache-level: - shard-rkl: [SKIP][372] ([i915#14544] / [i915#1850]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_mmap_wc@set-cache-level.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_mmap_wc@set-cache-level.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: [TIMEOUT][374] ([i915#12917] / [i915#12964]) -> [PASS][375] +1 other test pass [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_workarounds@suspend-resume: - shard-dg2: [ABORT][376] ([i915#8213]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-10/igt@gem_workarounds@suspend-resume.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-6/igt@gem_workarounds@suspend-resume.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [FAIL][378] ([i915#12942]) -> [PASS][379] +1 other test pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-accuracy.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [INCOMPLETE][380] ([i915#4817]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@i915_suspend@debugfs-reader.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@i915_suspend@debugfs-reader.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-rkl: [SKIP][382] ([i915#14544]) -> [PASS][383] +23 other tests pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][384] ([i915#13566]) -> [PASS][385] +5 other tests pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-rkl: [FAIL][386] ([i915#13566]) -> [PASS][387] +1 other test pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: [SKIP][388] ([i915#13749]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-7/igt@kms_dp_link_training@non-uhbr-sst.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-10/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-rkl: [SKIP][390] ([i915#14544] / [i915#3637]) -> [PASS][391] +4 other tests pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip@flip-vs-panning-interruptible.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a4: - shard-dg1: [DMESG-WARN][392] ([i915#4423]) -> [PASS][393] +7 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-18/igt@kms_flip@flip-vs-suspend@d-hdmi-a4.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-17/igt@kms_flip@flip-vs-suspend@d-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-rkl: [SKIP][394] ([i915#14544] / [i915#3555]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_force_connector_basic@force-connector-state: - shard-dg1: [ABORT][396] ([i915#4423]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-12/igt@kms_force_connector_basic@force-connector-state.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-12/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][398] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][399] +5 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-dg2: [FAIL][400] ([i915#6880]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt@kms_hdmi_inject@inject-audio: - shard-snb: [SKIP][402] -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-snb7/igt@kms_hdmi_inject@inject-audio.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-snb1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_invalid_mode@bad-vsync-start: - shard-rkl: [SKIP][404] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-start.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_invalid_mode@bad-vsync-start.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - shard-rkl: [SKIP][406] ([i915#11190] / [i915#14544]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_plane@plane-position-hole-dpms: - shard-rkl: [SKIP][408] ([i915#14544] / [i915#8825]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane@plane-position-hole-dpms.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-rkl: [SKIP][410] ([i915#14544] / [i915#7294]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-7efc.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_plane_alpha_blend@alpha-7efc.html * igt@kms_plane_scaling@invalid-num-scalers: - shard-rkl: [SKIP][412] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-rkl: [SKIP][414] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][415] +4 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-rkl: [SKIP][416] ([i915#14544] / [i915#8152]) -> [PASS][417] +1 other test pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a: - shard-rkl: [SKIP][418] ([i915#12247] / [i915#14544]) -> [PASS][419] +3 other tests pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-rkl: [SKIP][420] ([i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-rkl: [SKIP][422] ([i915#13441] / [i915#14544]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_pm_dc@dc5-dpms-negative.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [FAIL][424] ([i915#9295]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@basic-rte: - shard-rkl: [DMESG-FAIL][426] ([i915#12964]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_pm_rpm@basic-rte.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][428] ([i915#9519]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-vgem: - shard-rkl: [SKIP][430] ([i915#14544] / [i915#6524]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_prime@basic-crc-vgem.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_prime@basic-crc-vgem.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][432] ([i915#10393]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-5/igt@kms_vrr@negative-basic.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-5/igt@kms_vrr@negative-basic.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][434] ([i915#4349]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-8/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@busy-double-start@vecs0: - shard-rkl: [DMESG-WARN][436] ([i915#12964]) -> [PASS][437] +41 other tests pass [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@perf_pmu@busy-double-start@vecs0.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@perf_pmu@busy-double-start@vecs0.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-mtlp: [FAIL][438] ([i915#11943]) -> [PASS][439] +1 other test pass [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-mtlp-5/igt@perf_pmu@most-busy-idle-check-all@rcs0.html #### Warnings #### * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: [SKIP][440] ([i915#3555] / [i915#9323]) -> [SKIP][441] ([i915#14544] / [i915#3555] / [i915#9323]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_ccs@block-multicopy-inplace.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: [SKIP][442] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][443] ([i915#3555] / [i915#9323]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: [SKIP][444] ([i915#14544] / [i915#6335]) -> [SKIP][445] ([i915#6335]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: [SKIP][446] ([i915#4525]) -> [SKIP][447] ([i915#14544] / [i915#4525]) +2 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_exec_balancer@parallel-out-fence.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_reloc@basic-cpu-read: - shard-rkl: [SKIP][448] ([i915#14544] / [i915#3281]) -> [SKIP][449] ([i915#3281]) +5 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-read.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: [SKIP][450] ([i915#3281]) -> [SKIP][451] ([i915#14544] / [i915#3281]) +4 other tests skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-read-noreloc.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: [SKIP][452] ([i915#14544] / [i915#4613]) -> [SKIP][453] ([i915#4613]) +2 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@verify: - shard-rkl: [SKIP][454] ([i915#4613]) -> [SKIP][455] ([i915#14544] / [i915#4613]) +3 other tests skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@gem_lmem_swapping@verify.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_lmem_swapping@verify.html * igt@gem_pwrite@basic-self: - shard-rkl: [SKIP][456] ([i915#14544] / [i915#3282]) -> [SKIP][457] ([i915#3282]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_pwrite@basic-self.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@gem_pwrite@basic-self.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][458] ([i915#8411]) -> [SKIP][459] ([i915#14544] / [i915#8411]) +1 other test skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-rkl: [SKIP][460] -> [SKIP][461] ([i915#14544]) +15 other tests skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_softpin@evict-snoop.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-rkl: [SKIP][462] ([i915#3282]) -> [SKIP][463] ([i915#14544] / [i915#3282]) +5 other tests skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_tiled_partial_pwrite_pread@writes.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: [SKIP][464] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][465] ([i915#3297] / [i915#3323]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][466] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][467] ([i915#3282] / [i915#3297]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: [SKIP][468] ([i915#3297]) -> [SKIP][469] ([i915#14544] / [i915#3297]) +1 other test skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: [SKIP][470] ([i915#14544] / [i915#2527]) -> [SKIP][471] ([i915#2527]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: [SKIP][472] ([i915#2527]) -> [SKIP][473] ([i915#14544] / [i915#2527]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gen9_exec_parse@bb-start-out.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html * igt@i915_module_load@resize-bar: - shard-rkl: [SKIP][474] ([i915#6412]) -> [SKIP][475] ([i915#14544] / [i915#6412]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@i915_module_load@resize-bar.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: [SKIP][476] ([i915#14498] / [i915#14544]) -> [SKIP][477] ([i915#14498]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#5723]) -> [SKIP][479] ([i915#5723]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: [SKIP][480] ([i915#14544]) -> [SKIP][481] ([i915#5286]) +5 other tests skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: [SKIP][482] ([i915#5286]) -> [SKIP][483] ([i915#14544]) +3 other tests skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: [SKIP][484] ([i915#14544]) -> [SKIP][485] ([i915#3638]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][486] ([i915#3638]) -> [SKIP][487] ([i915#14544]) +1 other test skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg1: [SKIP][488] ([i915#4538]) -> [SKIP][489] ([i915#4423] / [i915#4538]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-12/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][490] ([i915#6095]) -> [SKIP][491] ([i915#14098] / [i915#6095]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: [SKIP][492] ([i915#12805]) -> [SKIP][493] ([i915#14544]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][494] ([i915#14098] / [i915#6095]) -> [SKIP][495] ([i915#6095]) +1 other test skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][496] ([i915#12313]) -> [SKIP][497] ([i915#14544]) +2 other tests skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][498] ([i915#14098] / [i915#6095]) -> [SKIP][499] ([i915#14544]) +7 other tests skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-rkl: [SKIP][500] ([i915#14544]) -> [SKIP][501] ([i915#14098] / [i915#6095]) +4 other tests skip [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: [SKIP][502] ([i915#14544]) -> [SKIP][503] ([i915#12313]) +1 other test skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-rkl: [SKIP][504] ([i915#11151] / [i915#7828]) -> [SKIP][505] ([i915#11151] / [i915#14544] / [i915#7828]) +7 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-single.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: [SKIP][506] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][507] ([i915#11151] / [i915#7828]) +1 other test skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [FAIL][508] ([i915#7173]) -> [SKIP][509] ([i915#7118] / [i915#9424]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic-type-1: - shard-rkl: [SKIP][510] ([i915#9424]) -> [SKIP][511] ([i915#14544]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_content_protection@lic-type-1.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-rkl: [SKIP][512] ([i915#14544]) -> [SKIP][513] ([i915#7118]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_content_protection@srm.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: [SKIP][514] ([i915#14544]) -> [SKIP][515] ([i915#13049]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [SKIP][516] ([i915#14544]) -> [FAIL][517] ([i915#13566]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-64x21.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg1: [SKIP][518] ([i915#3555] / [i915#4423]) -> [SKIP][519] ([i915#3555]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: [SKIP][520] ([i915#14544]) -> [SKIP][521] ([i915#3555]) +3 other tests skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: [SKIP][522] ([i915#13049]) -> [SKIP][523] ([i915#14544]) +1 other test skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x170.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: [SKIP][524] ([i915#4103] / [i915#4213] / [i915#4423]) -> [SKIP][525] ([i915#4103] / [i915#4213]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: [SKIP][526] ([i915#14544]) -> [SKIP][527] +14 other tests skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-rkl: [FAIL][528] ([i915#2346]) -> [DMESG-WARN][529] ([i915#12964]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: [SKIP][530] ([i915#14544]) -> [SKIP][531] ([i915#3555] / [i915#3804]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: [SKIP][532] ([i915#14544]) -> [SKIP][533] ([i915#3840]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: [SKIP][534] ([i915#3555] / [i915#3840]) -> [SKIP][535] ([i915#14544]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg1: [SKIP][536] ([i915#9934]) -> [SKIP][537] ([i915#4423] / [i915#9934]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-16/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-13/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: [SKIP][538] ([i915#9934]) -> [SKIP][539] ([i915#14544] / [i915#9934]) +4 other tests skip [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: [SKIP][540] ([i915#14544] / [i915#9934]) -> [SKIP][541] ([i915#9934]) +6 other tests skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-rkl: [DMESG-WARN][542] ([i915#12964]) -> [SKIP][543] ([i915#14544] / [i915#3637]) +1 other test skip [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_flip@basic-flip-vs-wf_vblank.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [SKIP][544] ([i915#14544] / [i915#3637]) -> [INCOMPLETE][545] ([i915#6113]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: [SKIP][546] ([i915#14544] / [i915#3555]) -> [SKIP][547] ([i915#2672] / [i915#3555]) +1 other test skip [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: [SKIP][548] ([i915#2672] / [i915#3555]) -> [SKIP][549] ([i915#14544] / [i915#3555]) +1 other test skip [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [DMESG-WARN][550] ([i915#12964]) -> [SKIP][551] ([i915#14544] / [i915#1849] / [i915#5354]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: [SKIP][552] ([i915#3458]) -> [SKIP][553] ([i915#10433] / [i915#3458]) +2 other tests skip [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: [SKIP][554] ([i915#4423] / [i915#8708]) -> [SKIP][555] ([i915#8708]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][556] ([i915#1825]) -> [SKIP][557] ([i915#14544] / [i915#1849] / [i915#5354]) +26 other tests skip [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][558] ([i915#10433] / [i915#3458]) -> [SKIP][559] ([i915#3458]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: [SKIP][560] ([i915#9766]) -> [SKIP][561] ([i915#14544] / [i915#1849] / [i915#5354]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: [SKIP][562] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][563] ([i915#3023]) +14 other tests skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][564] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][565] ([i915#1825]) +20 other tests skip [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg1: [SKIP][566] ([i915#8708]) -> [SKIP][567] ([i915#4423] / [i915#8708]) [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: [SKIP][568] ([i915#3023]) -> [SKIP][569] ([i915#14544] / [i915#1849] / [i915#5354]) +20 other tests skip [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [SKIP][570] ([i915#14544]) -> [SKIP][571] ([i915#3555] / [i915#8228]) +1 other test skip [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][572] ([i915#3555] / [i915#8228]) -> [SKIP][573] ([i915#14544]) [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_hdr@static-toggle-suspend.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: [SKIP][574] ([i915#10656]) -> [SKIP][575] ([i915#10656] / [i915#14544]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_joiner@basic-big-joiner.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: [SKIP][576] ([i915#12394] / [i915#14544]) -> [SKIP][577] ([i915#12394]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][578] ([i915#4070] / [i915#4816]) -> [SKIP][579] ([i915#1839] / [i915#4816]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][580] ([i915#14544]) -> [SKIP][581] ([i915#6301]) [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: [SKIP][582] ([i915#13958]) -> [SKIP][583] ([i915#14544]) +1 other test skip [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-y.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-dg1: [SKIP][584] ([i915#13958]) -> [SKIP][585] ([i915#13958] / [i915#4423]) [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-yf.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: [SKIP][586] ([i915#14259]) -> [SKIP][587] ([i915#14544]) [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-rkl: [SKIP][588] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][589] ([i915#12247]) +3 other tests skip [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: - shard-rkl: [SKIP][590] ([i915#12247] / [i915#14544]) -> [SKIP][591] ([i915#12247]) +1 other test skip [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a: - shard-rkl: [SKIP][592] ([i915#12247]) -> [SKIP][593] ([i915#12247] / [i915#14544]) +1 other test skip [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-rkl: [SKIP][594] ([i915#12247] / [i915#6953]) -> [SKIP][595] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-rkl: [SKIP][596] ([i915#12247]) -> [SKIP][597] ([i915#12247] / [i915#14544] / [i915#8152]) +2 other tests skip [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: [SKIP][598] ([i915#5354]) -> [SKIP][599] ([i915#14544] / [i915#5354]) [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_pm_backlight@basic-brightness.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: [SKIP][600] ([i915#12343] / [i915#14544]) -> [SKIP][601] ([i915#12343]) [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][602] ([i915#3828]) -> [SKIP][603] ([i915#14544] / [i915#9340]) [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: [SKIP][604] ([i915#6524]) -> [SKIP][605] ([i915#14544] / [i915#6524]) [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: [SKIP][606] ([i915#14544] / [i915#6524]) -> [SKIP][607] ([i915#6524]) [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_prime@d3hot.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-2/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][608] ([i915#11520]) -> [SKIP][609] ([i915#11520] / [i915#14544]) +6 other tests skip [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][610] ([i915#11520] / [i915#14544]) -> [SKIP][611] ([i915#11520]) +5 other tests skip [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: [SKIP][612] ([i915#11520] / [i915#4423]) -> [SKIP][613] ([i915#11520]) [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-12/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-13/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: [SKIP][614] ([i915#9683]) -> [SKIP][615] ([i915#14544] / [i915#9683]) [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr2-no-drrs: - shard-dg1: [SKIP][616] ([i915#1072] / [i915#9732]) -> [SKIP][617] ([i915#1072] / [i915#4423] / [i915#9732]) [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-19/igt@kms_psr@fbc-psr2-no-drrs.html [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-dg1-15/igt@kms_psr@fbc-psr2-no-drrs.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: [SKIP][618] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][619] ([i915#1072] / [i915#9732]) +12 other tests skip [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-3/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: [SKIP][620] ([i915#1072] / [i915#9732]) -> [SKIP][621] ([i915#1072] / [i915#14544] / [i915#9732]) +15 other tests skip [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_psr@psr-cursor-plane-move.html [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: [SKIP][622] ([i915#5289]) -> [SKIP][623] ([i915#14544]) [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][624] ([i915#14544]) -> [SKIP][625] ([i915#5289]) [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: [SKIP][626] ([i915#14544] / [i915#3555]) -> [SKIP][627] ([i915#3555]) [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html [627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vrr@flip-dpms: - shard-rkl: [SKIP][628] ([i915#3555]) -> [SKIP][629] ([i915#14544]) +2 other tests skip [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_vrr@flip-dpms.html [629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: [SKIP][630] ([i915#14544] / [i915#2437] / [i915#9412]) -> [SKIP][631] ([i915#2437] / [i915#9412]) +1 other test skip [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: [SKIP][632] ([i915#2435]) -> [SKIP][633] ([i915#14544] / [i915#2435]) [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html [633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: [SKIP][634] ([i915#3708]) -> [SKIP][635] ([i915#14544] / [i915#3708]) [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@prime_vgem@fence-flip-hang.html [635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-write-hang: - shard-rkl: [SKIP][636] ([i915#14544] / [i915#3708]) -> [SKIP][637] ([i915#3708]) [636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@prime_vgem@fence-write-hang.html [637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/shard-rkl-8/igt@prime_vgem@fence-write-hang.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455 [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [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#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441 [i915#13550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13665]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13899]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13899 [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#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14191]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14191 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14334 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14489]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14489 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14561 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#1850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1850 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [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#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#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#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [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#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [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#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294 [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#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [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#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [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_8462 -> IGTPW_13484 CI-20190529: 20190529 CI_DRM_16877: 5c81898a2e97ccaed5067b1476f6a77321d057f9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13484: f3006f66bae5b05c30e0b3a49ac5b9928a9e6ff8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8462: f33a311145a889757f45313d2ff4bf58f7ef01d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13484/index.html [-- Attachment #2: Type: text/html, Size: 209058 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for lib/igt_sysfs: Remove redundant variable assignment 2025-07-16 13:27 [PATCH i-g-t] lib/igt_sysfs: Remove redundant variable assignment Pranay Samala ` (5 preceding siblings ...) 2025-07-17 12:01 ` ✓ i915.CI.Full: success for " Patchwork @ 2025-07-17 13:52 ` Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-07-17 13:52 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 53912 bytes --] == Series Details == Series: lib/igt_sysfs: Remove redundant variable assignment URL : https://patchwork.freedesktop.org/series/151708/ State : failure == Summary == CI Bug Log - changes from XEIGT_8462_FULL -> XEIGTPW_13484_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_13484_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_13484_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_13484_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_system_allocator@twice-large-free: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-4/igt@xe_exec_system_allocator@twice-large-free.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@xe_exec_system_allocator@twice-large-free.html Known issues ------------ Here are the changes found in XEIGTPW_13484_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html - shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#316]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-463/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +7 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-1/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +4 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-432/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#2191]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#367]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-463/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-7/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +14 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +5 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#455] / [Intel XE#787]) +36 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2669]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#3432]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#2907]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][18] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4: - shard-dg2-set2: [PASS][19] -> [INCOMPLETE][20] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) +1 other test incomplete [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][21] ([Intel XE#3124]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][22] ([Intel XE#1727] / [Intel XE#3113]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +195 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_cdclk@mode-transition@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#4417]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-a-dp-2.html * igt@kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#373]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-464/igt@kms_chamelium_audio@dp-audio.html - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#373]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-2/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2252]) +10 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_content_protection@content-type-change: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#3278]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-3/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#307]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-463/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2390]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2341]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@kms_content_protection@legacy.html - shard-dg2-set2: NOTRUN -> [FAIL][33] ([Intel XE#1178]) +2 other tests fail [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-436/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][34] ([Intel XE#1178]) +2 other tests fail [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-8/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#1188]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-4/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2320]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2321]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2321]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#308]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#309]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2291]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#2291]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][44] ([Intel XE#5354]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#4354]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-4/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2244]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-2/igt@kms_dsc@dsc-with-bpc-formats.html - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2244]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#5425]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-2/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#776]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2373]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-1/igt@kms_feature_discovery@display-2x.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2316]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1421]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2316]) +10 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@bo-too-big-interruptible@a-edp1: - shard-lnl: NOTRUN -> [TIMEOUT][57] ([Intel XE#1504]) +1 other test timeout [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-3/igt@kms_flip@bo-too-big-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2380]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2293] / [Intel XE#2380]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2293]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#651]) +14 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#656]) +12 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#651]) +7 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#5427]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#5390]) +7 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2311]) +21 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2313]) +20 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#653]) +12 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2312]) +8 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#3012]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2934]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#4090]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#2925]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-463/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#4329]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#4329]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane_multiple@2x-tiling-x: - shard-bmg: [PASS][76] -> [SKIP][77] ([Intel XE#4596]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#5020]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-8/igt@kms_plane_multiple@tiling-yf.html - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#5020]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-435/igt@kms_plane_multiple@tiling-yf.html - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#5020]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-4/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2571]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#2763]) +5 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#718]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2392]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1489]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#2893]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#4608]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#1489]) +8 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@kms_psr@fbc-pr-cursor-blt.html - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1406]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-6/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-464/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2234]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-3/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2414]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#4459]) +1 other test fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#1091] / [Intel XE#2849]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_eu_stall@non-blocking-read: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#5419]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-464/igt@xe_eu_stall@non-blocking-read.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#4837]) +5 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#4837]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-5/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_eudebug_online@interrupt-other: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#4837]) +12 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@xe_eudebug_online@interrupt-other.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: [PASS][104] -> [SKIP][105] ([Intel XE#1392]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-464/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2322]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1392]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html * igt@xe_exec_basic@multigpu-no-exec-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1392]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html * igt@xe_exec_fault_mode@once-bindexecqueue-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#288]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-rebind.html * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2360]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt@xe_exec_system_allocator@once-mmap-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#4943]) +17 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-8/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-nomemset: - shard-bmg: [PASS][112] -> [DMESG-FAIL][113] ([Intel XE#5213]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-nomemset.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset: - shard-lnl: NOTRUN -> [FAIL][114] ([Intel XE#5018]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-huge: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#4943]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-huge.html * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#4915]) +109 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-434/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset.html * igt@xe_oa@non-system-wide-paranoid: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-432/igt@xe_oa@non-system-wide-paranoid.html * igt@xe_pat@pat-index-xelp: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#977]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-7/igt@xe_pat@pat-index-xelp.html - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2245]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-3/igt@xe_pat@pat-index-xelp.html * igt@xe_peer2peer@read: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2427]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@xe_peer2peer@read.html - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1061]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-8/igt@xe_peer2peer@read.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][122] ([Intel XE#1173]) +1 other test fail [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-436/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2284]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pxp@regular-src-to-pxp-dest-rendercopy: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#4733]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-4/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html * igt@xe_query@multigpu-query-invalid-query: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#944]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-3/igt@xe_query@multigpu-query-invalid-query.html - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#944]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-463/igt@xe_query@multigpu-query-invalid-query.html - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#944]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-7/igt@xe_query@multigpu-query-invalid-query.html * igt@xe_spin_batch@spin-mem-copy: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#4821]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-435/igt@xe_spin_batch@spin-mem-copy.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#4273]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#4273]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-434/igt@xe_sriov_flr@flr-twice.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1: - shard-lnl: [FAIL][131] ([Intel XE#911]) -> [PASS][132] +3 other tests pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][133] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][135] ([Intel XE#3862]) -> [PASS][136] +1 other test pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][137] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [SKIP][139] ([Intel XE#2291]) -> [PASS][140] +6 other tests pass [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][141] ([Intel XE#4633]) -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][143] ([Intel XE#4294]) -> [PASS][144] [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-bmg: [SKIP][145] ([Intel XE#2316]) -> [PASS][146] +7 other tests pass [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][147] ([Intel XE#301]) -> [PASS][148] [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [FAIL][149] ([Intel XE#301]) -> [PASS][150] +1 other test pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_hdr@static-swap: - shard-bmg: [SKIP][151] ([Intel XE#1503]) -> [PASS][152] +1 other test pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_hdr@static-swap.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-8/igt@kms_hdr@static-swap.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: [SKIP][153] ([Intel XE#4692]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-lnl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][155] ([Intel XE#4227]) -> [PASS][156] +1 other test pass [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-lnl-7/igt@kms_vrr@flipline.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-lnl-1/igt@kms_vrr@flipline.html * igt@kms_vrr@negative-basic: - shard-bmg: [SKIP][157] ([Intel XE#1499]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_vrr@negative-basic.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-8/igt@kms_vrr@negative-basic.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][159] ([Intel XE#1392]) -> [PASS][160] +4 other tests pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-464/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [DMESG-WARN][161] ([Intel XE#3876]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_exec_system_allocator@evict-malloc: - shard-bmg: [FAIL][163] -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-8/igt@xe_exec_system_allocator@evict-malloc.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-3/igt@xe_exec_system_allocator@evict-malloc.html * igt@xe_vm@large-binds-33554432: - shard-bmg: [INCOMPLETE][165] ([Intel XE#2594]) -> [PASS][166] [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-2/igt@xe_vm@large-binds-33554432.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-8/igt@xe_vm@large-binds-33554432.html #### Warnings #### * igt@kms_content_protection@lic-type-0: - shard-bmg: [SKIP][167] ([Intel XE#2341]) -> [FAIL][168] ([Intel XE#1178]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-5/igt@kms_content_protection@lic-type-0.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-8/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@uevent: - shard-bmg: [SKIP][169] ([Intel XE#2341]) -> [FAIL][170] ([Intel XE#1188]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-5/igt@kms_content_protection@uevent.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [FAIL][171] ([Intel XE#5299]) -> [FAIL][172] ([Intel XE#4633]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][173] ([Intel XE#2311]) -> [SKIP][174] ([Intel XE#2312]) +12 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][175] ([Intel XE#2312]) -> [SKIP][176] ([Intel XE#2311]) +17 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][177] ([Intel XE#5390]) -> [SKIP][178] ([Intel XE#2312]) +8 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][179] ([Intel XE#2312]) -> [SKIP][180] ([Intel XE#5390]) +7 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][181] ([Intel XE#2312]) -> [SKIP][182] ([Intel XE#2313]) +18 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][183] ([Intel XE#2313]) -> [SKIP][184] ([Intel XE#2312]) +12 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: [SKIP][185] ([Intel XE#5021]) -> [SKIP][186] ([Intel XE#4596]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-y.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][187] ([Intel XE#2426]) -> [SKIP][188] ([Intel XE#2509]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [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#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [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#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213 [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299 [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300 [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354 [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390 [Intel XE#5419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5419 [Intel XE#5425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5425 [Intel XE#5427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5427 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 Build changes ------------- * IGT: IGT_8462 -> IGTPW_13484 IGTPW_13484: f3006f66bae5b05c30e0b3a49ac5b9928a9e6ff8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8462: f33a311145a889757f45313d2ff4bf58f7ef01d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3423-3b965bd54a93adbf5520b143254ecb10b9a11776: 3b965bd54a93adbf5520b143254ecb10b9a11776 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13484/index.html [-- Attachment #2: Type: text/html, Size: 61605 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-07-17 13:52 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-07-16 13:27 [PATCH i-g-t] lib/igt_sysfs: Remove redundant variable assignment Pranay Samala 2025-07-16 15:00 ` Dixit, Ashutosh 2025-07-16 17:40 ` ✓ i915.CI.BAT: success for " Patchwork 2025-07-16 18:45 ` ✓ Xe.CI.BAT: " Patchwork 2025-07-17 10:36 ` ✗ i915.CI.Full: failure " Patchwork 2025-07-17 10:44 ` [PATCH i-g-t] " Kamil Konieczny 2025-07-17 12:01 ` ✓ i915.CI.Full: success for " Patchwork 2025-07-17 13:52 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox