* [CI 0/2] Test pmu unbind (xfail)
@ 2024-10-23 4:55 Lucas De Marchi
2024-10-23 4:55 ` [CI 1/2] lib/igt_kmod: Export igt_kmod_unbind() Lucas De Marchi
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Lucas De Marchi @ 2024-10-23 4:55 UTC (permalink / raw)
To: igt-dev; +Cc: Lucas De Marchi
This is expected to explode on perf_pmu@unload. Later this should work
together with the kernel patch.
Lucas De Marchi (2):
lib/igt_kmod: Export igt_kmod_unbind()
tests/intel/perf_pmu: Migrate to unbind + unload
lib/igt_kmod.c | 6 +++---
lib/igt_kmod.h | 2 ++
tests/intel/perf_pmu.c | 22 ++++++++++++----------
3 files changed, 17 insertions(+), 13 deletions(-)
--
2.47.0
^ permalink raw reply [flat|nested] 7+ messages in thread* [CI 1/2] lib/igt_kmod: Export igt_kmod_unbind() 2024-10-23 4:55 [CI 0/2] Test pmu unbind (xfail) Lucas De Marchi @ 2024-10-23 4:55 ` Lucas De Marchi 2024-10-23 4:55 ` [CI 2/2] tests/intel/perf_pmu: Migrate to unbind + unload Lucas De Marchi ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Lucas De Marchi @ 2024-10-23 4:55 UTC (permalink / raw) To: igt-dev; +Cc: Lucas De Marchi So it can be used directly by tests and other libs. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> --- lib/igt_kmod.c | 6 +++--- lib/igt_kmod.h | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index 75a0d057c..039309328 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -663,7 +663,7 @@ int __igt_intel_driver_unload(char **who, const char *driver) /* * Unbind driver from devices. Currently supports only PCI bus */ -static int unbind(const char *driver) +int igt_kmod_unbind(const char *mod_name) { char path[PATH_MAX]; struct dirent *de; @@ -671,7 +671,7 @@ static int unbind(const char *driver) DIR *dir; dirlen = snprintf(path, sizeof(path), "/sys/module/%s/drivers/pci:%s/", - driver, driver); + mod_name, mod_name); igt_assert(dirlen < sizeof(path)); dir = opendir(path); @@ -744,7 +744,7 @@ igt_intel_driver_unload(const char *driver) int igt_xe_driver_unload(void) { - unbind("xe"); + igt_kmod_unbind("xe"); igt_kmod_unload("xe"); if (igt_kmod_is_loaded("xe")) diff --git a/lib/igt_kmod.h b/lib/igt_kmod.h index ee1719a8f..193b95627 100644 --- a/lib/igt_kmod.h +++ b/lib/igt_kmod.h @@ -36,6 +36,8 @@ bool igt_kmod_has_param(const char *mod_name, const char *param); int igt_kmod_load(const char *mod_name, const char *opts); int igt_kmod_unload(const char *mod_name); +int igt_kmod_unbind(const char *mod_name); + int igt_audio_driver_unload(char **whom); int igt_intel_driver_load(const char *opts, const char *driver); -- 2.47.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [CI 2/2] tests/intel/perf_pmu: Migrate to unbind + unload 2024-10-23 4:55 [CI 0/2] Test pmu unbind (xfail) Lucas De Marchi 2024-10-23 4:55 ` [CI 1/2] lib/igt_kmod: Export igt_kmod_unbind() Lucas De Marchi @ 2024-10-23 4:55 ` Lucas De Marchi 2024-10-23 5:46 ` ✓ CI.xeBAT: success for Test pmu unbind (xfail) Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Lucas De Marchi @ 2024-10-23 4:55 UTC (permalink / raw) To: igt-dev; +Cc: Lucas De Marchi There isn't much point in testing we can't remove the module directly after removing *some* known dependencies. The point in this test is to make sure that if the HW vanishes, driver still behaves. That is currently not true, as it will cause perf to explode. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> --- tests/intel/perf_pmu.c | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/tests/intel/perf_pmu.c b/tests/intel/perf_pmu.c index bfa2d501a..6eb4f09d1 100644 --- a/tests/intel/perf_pmu.c +++ b/tests/intel/perf_pmu.c @@ -2282,7 +2282,6 @@ static void test_unload(unsigned int num_engines) int fd[4 + num_engines * 3], i; uint64_t *buf; int count = 0, ret; - char *who = NULL; int i915; i915 = __drm_open_driver(DRIVER_INTEL); @@ -2337,23 +2336,26 @@ static void test_unload(unsigned int num_engines) igt_debug("Read %d events from perf and trial unload\n", count); pmu_read_multi(fd[0], count, buf); - ret = __igt_i915_driver_unload(&who); - igt_debug("__igt_i915_driver_unload: ret %d who %s\n", ret, who); - igt_assert(ret != 0 && !strcmp(who, "i915")); - free(who); - pmu_read_multi(fd[0], count, buf); - igt_debug("Close perf\n"); + /* + * We can't unload the module with perf event registered, but + * we can make the HW go away by unbinding it from the driver. + */ + ret = igt_kmod_unbind("i915"); + igt_assert_eq(ret, 0); + igt_debug("Close perf\n"); for (i = 0; i < count; i++) close(fd[i]); + igt_debug("Final unload\n"); + /* After perf is closed, we should be able to remove the module */ + ret = igt_i915_driver_unload(); + igt_assert_eq(ret, 0); + free(buf); } igt_waitchildren(); - - igt_debug("Final unload\n"); - igt_assert_eq(__igt_i915_driver_unload(NULL), 0); } static void pmu_read(int i915) -- 2.47.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for Test pmu unbind (xfail) 2024-10-23 4:55 [CI 0/2] Test pmu unbind (xfail) Lucas De Marchi 2024-10-23 4:55 ` [CI 1/2] lib/igt_kmod: Export igt_kmod_unbind() Lucas De Marchi 2024-10-23 4:55 ` [CI 2/2] tests/intel/perf_pmu: Migrate to unbind + unload Lucas De Marchi @ 2024-10-23 5:46 ` Patchwork 2024-10-23 5:51 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-10-23 5:46 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3167 bytes --] == Series Details == Series: Test pmu unbind (xfail) URL : https://patchwork.freedesktop.org/series/140354/ State : success == Summary == CI Bug Log - changes from XEIGT_8082_BAT -> XEIGTPW_11962_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11962_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#2871]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_psr@psr-cursor-plane-move: - bat-adlp-7: [PASS][3] -> [SKIP][4] ([Intel XE#455]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-primary-page-flip@edp-1: - bat-adlp-7: [PASS][5] -> [DMESG-FAIL][6] ([Intel XE#2871]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/bat-adlp-7/igt@kms_psr@psr-primary-page-flip@edp-1.html #### Possible fixes #### * igt@kms_addfb_basic@bad-pitch-0: - bat-adlp-7: [DMESG-WARN][7] ([Intel XE#2496]) -> [PASS][8] +31 other tests pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-bmg-2: [INCOMPLETE][9] ([Intel XE#2874] / [Intel XE#2998]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [Intel XE#2496]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2496 [Intel XE#2871]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2871 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8082 -> IGTPW_11962 IGTPW_11962: 11962 IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/index.html [-- Attachment #2: Type: text/html, Size: 3912 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for Test pmu unbind (xfail) 2024-10-23 4:55 [CI 0/2] Test pmu unbind (xfail) Lucas De Marchi ` (2 preceding siblings ...) 2024-10-23 5:46 ` ✓ CI.xeBAT: success for Test pmu unbind (xfail) Patchwork @ 2024-10-23 5:51 ` Patchwork 2024-10-23 8:33 ` ✓ Fi.CI.IGT: " Patchwork 2024-10-23 9:20 ` ✗ CI.xeFULL: failure " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-10-23 5:51 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4483 bytes --] == Series Details == Series: Test pmu unbind (xfail) URL : https://patchwork.freedesktop.org/series/140354/ State : success == Summary == CI Bug Log - changes from IGT_8082 -> IGTPW_11962 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11962 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [ABORT][2] ([i915#12216]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-mtlp-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/bat-mtlp-8/igt@i915_selftest@live.html - bat-arls-2: [PASS][3] -> [ABORT][4] ([i915#12133]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-arls-2/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/bat-arls-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][5] -> [ABORT][6] ([i915#12216]) +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/bat-mtlp-6/igt@i915_selftest@live@workarounds.html - bat-arls-2: [PASS][7] -> [ABORT][8] ([i915#12061]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-arls-2/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/bat-arls-2/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live: - bat-twl-1: [INCOMPLETE][9] ([i915#12133] / [i915#9413]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/bat-twl-1/igt@i915_selftest@live.html - bat-dg2-9: [ABORT][11] ([i915#12133]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/bat-dg2-9/igt@i915_selftest@live.html * igt@i915_selftest@live@client: - bat-dg2-9: [ABORT][13] ([i915#12305]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-dg2-9/igt@i915_selftest@live@client.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/bat-dg2-9/igt@i915_selftest@live@client.html * igt@i915_selftest@live@gt_lrc: - bat-twl-1: [INCOMPLETE][15] ([i915#9413]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/bat-twl-1/igt@i915_selftest@live@gt_lrc.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/bat-twl-1/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@late_gt_pm: - fi-cfl-8109u: [DMESG-WARN][17] ([i915#11621]) -> [PASS][18] +132 other tests pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8082/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216 [i915#12305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12305 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8082 -> IGTPW_11962 * Linux: CI_DRM_15576 -> CI_DRM_15581 CI-20190529: 20190529 CI_DRM_15576: d5bac12430b0d4a980c0498b3c946772950e70ee @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15581: 8a7ac0227c7c3fe2fcb01a933df5b9c49c7f2832 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11962: 11962 IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/index.html [-- Attachment #2: Type: text/html, Size: 5540 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.IGT: success for Test pmu unbind (xfail) 2024-10-23 4:55 [CI 0/2] Test pmu unbind (xfail) Lucas De Marchi ` (3 preceding siblings ...) 2024-10-23 5:51 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-10-23 8:33 ` Patchwork 2024-10-23 9:20 ` ✗ CI.xeFULL: failure " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-10-23 8:33 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100243 bytes --] == Series Details == Series: Test pmu unbind (xfail) URL : https://patchwork.freedesktop.org/series/140354/ State : success == Summary == CI Bug Log - changes from CI_DRM_15581_full -> IGTPW_11962_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/index.html Participating hosts (9 -> 8) ------------------------------ Additional (1): shard-tglu-1 Missing (2): pig-kbl-iris shard-glk New tests --------- New tests have been introduced between CI_DRM_15581_full and IGTPW_11962_full: ### New IGT tests (1) ### * igt@kms_concurrent@multi-plane-atomic-lowres@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.42] s Known issues ------------ Here are the changes found in IGTPW_11962_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - shard-snb: [PASS][1] -> [ABORT][2] ([i915#11703]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb4/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-snb1/igt@core_hotunplug@unbind-rebind.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#11078]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-7/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +7 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-15/igt@drm_fdinfo@busy-idle@bcs0.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414]) +7 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-7/igt@drm_fdinfo@busy-idle@bcs0.html * igt@fbdev@nullptr: - shard-dg2: [PASS][8] -> [SKIP][9] ([i915#2582]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-11/igt@fbdev@nullptr.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@fbdev@nullptr.html * igt@gem_busy@close-race: - shard-dg2: NOTRUN -> [FAIL][10] ([i915#12297]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@gem_busy@close-race.html * igt@gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_compute@compute-square: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#9310]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-3/igt@gem_compute@compute-square.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8562]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-10/igt@gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][16] ([i915#8562]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-3/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_engines@invalid-engines: - shard-rkl: [PASS][17] -> [FAIL][18] ([i915#12031]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@gem_ctx_engines@invalid-engines.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html - shard-tglu: [PASS][19] -> [FAIL][20] ([i915#12031]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-7/igt@gem_ctx_engines@invalid-engines.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-2/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hang.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@invalid-args: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-13/igt@gem_ctx_sseu@invalid-args.html - shard-tglu: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-9/igt@gem_ctx_sseu@invalid-args.html - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-2/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4771]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@nop: - shard-mtlp: [PASS][28] -> [DMESG-WARN][29] ([i915#12412]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-8/igt@gem_exec_balancer@nop.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-3/igt@gem_exec_balancer@nop.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#3711]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#5107]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281]) +7 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@gem_exec_reloc@basic-wc-read-active.html - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3281]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-3/igt@gem_exec_reloc@basic-wc-read-active.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +8 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-4/igt@gem_exec_reloc@basic-write-wc-noreloc.html - shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-3/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@pi-ringfull@ccs0: - shard-dg2: NOTRUN -> [FAIL][40] ([i915#12296]) +7 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@gem_exec_schedule@pi-ringfull@ccs0.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-1/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4812]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@gem_exec_schedule@preempt-queue-contexts.html - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@preemptive-hang: - shard-snb: NOTRUN -> [SKIP][44] +48 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-snb4/igt@gem_exec_schedule@preemptive-hang.html * igt@gem_fence_thrash@bo-copy: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-4/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4860]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#12193]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4565]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#284]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][51] ([i915#284]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-1/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-wc: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) +12 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@gem_mmap_gtt@basic-wc.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +14 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-6/igt@gem_mmap_gtt@medium-copy-xy.html - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4077]) +7 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-6/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4083]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-5/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-3/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-15/igt@gem_mmap_wc@read.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads-display.html - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-4/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@display: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-4/igt@gem_pread@display.html - shard-rkl: NOTRUN -> [SKIP][61] ([i915#3282]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-4/igt@gem_pread@display.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-17/igt@gem_pxp@protected-raw-src-copy-not-readible.html - shard-tglu: NOTRUN -> [SKIP][63] ([i915#4270]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4270]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-1/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@y-tiled: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#8428]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-4/igt@gem_render_copy@y-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#5190] / [i915#8428]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4079]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4079]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-14/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-7/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-9/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#4880]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4880]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-busy.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-4/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#2856]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@gen9_exec_parse@bb-start-param.html - shard-dg1: NOTRUN -> [SKIP][80] ([i915#2527]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#2856]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-6/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][82] -> [ABORT][83] ([i915#9820]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html - shard-snb: [PASS][84] -> [ABORT][85] ([i915#9820]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu-1: NOTRUN -> [ABORT][86] ([i915#9820]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][87] ([i915#2681]) +1 other test warn [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][88] -> [INCOMPLETE][89] ([i915#7790]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb7/igt@i915_pm_rps@reset.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-snb5/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#11681]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park.html - shard-dg1: NOTRUN -> [SKIP][91] ([i915#11681]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-15/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4387]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [PASS][93] -> [ABORT][94] ([i915#12216]) +1 other test abort [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-4/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4212]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-19/igt@kms_addfb_basic@clobberred-modifier.html - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4212]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-4/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4212]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#8709]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#9531]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#9531]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#1769] / [i915#3555]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][102] +15 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#4538] / [i915#5286]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#5286]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#5286]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#5286]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-3/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-hflip: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#5286]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-0: - shard-rkl: [PASS][108] -> [ABORT][109] ([i915#10354]) +1 other test abort [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-0.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#3638]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][111] +15 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#3638]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5190]) +11 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#6187]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538]) +4 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#5190] / [i915#9197]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#6095]) +132 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#12313]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#6095]) +65 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#6095]) +24 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-10/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#10307] / [i915#6095]) +159 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#12313]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#6095]) +14 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#9197]) +11 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6095]) +19 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-3/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html * igt@kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#11616] / [i915#7213]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-1/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#7213]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#7828]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-4/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#7828]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#7828]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-tglu: NOTRUN -> [SKIP][132] ([i915#7828]) +4 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#7828]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#7828]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3299]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-15/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#9424]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#9424]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-3/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#3555]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3555] / [i915#8814]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#8814]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#11453] / [i915#3359]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][142] ([i915#11453] / [i915#3359]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#3555]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-10/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#11453] / [i915#3359]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][145] +9 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#9809]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#4103] / [i915#4213]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-tglu: NOTRUN -> [SKIP][148] ([i915#4103]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#4213]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3555]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-14/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3840]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#3840]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@kms_dsc@dsc-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#3840]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#3840] / [i915#9053]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3469]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-3/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-1x: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#9738]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_feature_discovery@display-1x.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#1839]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@kms_feature_discovery@display-3x.html - shard-rkl: NOTRUN -> [SKIP][158] ([i915#1839]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-5/igt@kms_feature_discovery@display-3x.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#1839]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-17/igt@kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][160] ([i915#1839]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-10/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#9337]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-8/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#658]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-7/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3637]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#8381]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#9934]) +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-14/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][166] -> [FAIL][167] ([i915#2122]) +3 other tests fail [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-snb2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#5354]) +46 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3637]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2: [PASS][170] -> [FAIL][171] ([i915#2122]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_flip@flip-vs-blocking-wf-vblank.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html - shard-rkl: [PASS][172] -> [FAIL][173] ([i915#11989] / [i915#2122]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-1/igt@kms_flip@flip-vs-blocking-wf-vblank.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-6/igt@kms_flip@flip-vs-blocking-wf-vblank.html - shard-mtlp: [PASS][174] -> [FAIL][175] ([i915#11989] / [i915#2122]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-1/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-mtlp: [PASS][176] -> [FAIL][177] ([i915#2122]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-1/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a2: - shard-rkl: [PASS][178] -> [FAIL][179] ([i915#12034]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-1/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a2.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a2.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][180] ([i915#2122]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a3.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2: [PASS][181] -> [INCOMPLETE][182] ([i915#4839] / [i915#6113]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_flip@flip-vs-suspend-interruptible.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-7/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1: - shard-snb: [PASS][183] -> [INCOMPLETE][184] ([i915#4839]) +1 other test incomplete [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3: - shard-dg2: NOTRUN -> [INCOMPLETE][185] ([i915#4839] / [i915#6113]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-7/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][186] -> [FAIL][187] ([i915#2122]) +5 other tests fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate-interruptible.html - shard-rkl: [PASS][188] -> [FAIL][189] ([i915#2122]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][190] ([i915#2122]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#2672] / [i915#3555]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#8813]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#2587] / [i915#2672]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#2587] / [i915#2672] / [i915#3555]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#2587] / [i915#2672] / [i915#3555]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#5190]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#2672] / [i915#3555]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#2672]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg2: [PASS][202] -> [SKIP][203] ([i915#3555]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#2672] / [i915#3555]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#2672] / [i915#3555]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#2587] / [i915#2672]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#2672]) +5 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#8708]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][209] +41 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#1825]) +8 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#8708]) +16 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [PASS][212] -> [SKIP][213] ([i915#5354]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-suspend.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-dg2: [PASS][214] -> [FAIL][215] ([i915#6880]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][216] +10 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#8708]) +10 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][218] +46 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#1825]) +7 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#3023]) +5 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3458]) +13 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#3458]) +16 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-15/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-8/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [PASS][225] -> [SKIP][226] ([i915#3555] / [i915#8228]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#12339]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@kms_joiner@basic-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#12339]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-17/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: [PASS][229] -> [SKIP][230] ([i915#12388]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][231] ([i915#12388]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][232] ([i915#12388]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane@planar-pixel-format-settings: - shard-dg2: [PASS][233] -> [SKIP][234] ([i915#9581]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_plane@planar-pixel-format-settings.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-dg2: [PASS][235] -> [SKIP][236] ([i915#7294]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_plane_alpha_blend@alpha-transparent-fb.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#5354] / [i915#9423]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [PASS][238] -> [FAIL][239] ([i915#8292]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][240] ([i915#8292]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@invalid-parameters: - shard-dg2: [PASS][241] -> [SKIP][242] ([i915#8152] / [i915#9423]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-1/igt@kms_plane_scaling@invalid-parameters.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#12247] / [i915#9423]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#12247]) +9 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#12247] / [i915#8152] / [i915#9423]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#12247]) +5 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#12247] / [i915#8152]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#12247] / [i915#6953]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#12247]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-dg2: [PASS][250] -> [SKIP][251] ([i915#12247] / [i915#8152] / [i915#9423]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d: - shard-dg2: [PASS][252] -> [SKIP][253] ([i915#12247] / [i915#8152]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-dg2: [PASS][254] -> [SKIP][255] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a: - shard-dg2: [PASS][256] -> [SKIP][257] ([i915#12247]) +5 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#5354]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-17/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#9685]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu-1: NOTRUN -> [FAIL][260] ([i915#9295]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#9519]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@drm-resources-equal: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#3547]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#9519]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][264] -> [SKIP][265] ([i915#9519]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-rkl: [PASS][266] -> [SKIP][267] ([i915#9519]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_properties@crtc-properties-legacy: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#11521]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_properties@crtc-properties-legacy.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#12316]) +4 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#11520]) +7 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html - shard-rkl: NOTRUN -> [SKIP][271] ([i915#11520]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#9808]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#11520]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#11520]) +6 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-15/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html - shard-tglu: NOTRUN -> [SKIP][275] ([i915#11520]) +3 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][276] ([i915#11520]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-snb2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#9688]) +15 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-8/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-psr-basic: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#1072] / [i915#9732]) +5 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-5/igt@kms_psr@fbc-psr-basic.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][279] ([i915#9732]) +9 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-3/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#1072] / [i915#9732]) +24 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-10/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#1072] / [i915#9732]) +16 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-13/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-no-drrs: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#9732]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-1/igt@kms_psr@fbc-psr2-no-drrs.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#5190]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#5289]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_setmode@basic: - shard-dg1: [PASS][285] -> [FAIL][286] ([i915#12317] / [i915#5465]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-16/igt@kms_setmode@basic.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-hdmi-a-4: - shard-dg1: [PASS][287] -> [FAIL][288] ([i915#12317]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-16/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [PASS][289] -> [FAIL][290] ([i915#5465]) +2 other tests fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-8/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@basic@pipe-b-hdmi-a-4: - shard-dg1: [PASS][291] -> [FAIL][292] ([i915#5465]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-16/igt@kms_setmode@basic@pipe-b-hdmi-a-4.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@kms_setmode@basic@pipe-b-hdmi-a-4.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#3555] / [i915#8809] / [i915#8823]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vblank@ts-continuation-modeset: - shard-dg2: [PASS][294] -> [SKIP][295] ([i915#9197]) +38 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-6/igt@kms_vblank@ts-continuation-modeset.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_vblank@ts-continuation-modeset.html * igt@kms_vrr@flip-basic: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#3555]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@kms_vrr@flip-basic.html - shard-rkl: NOTRUN -> [SKIP][297] ([i915#3555]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-2/igt@kms_vrr@flip-basic.html * igt@kms_vrr@lobf: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#11920]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#9906]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-tglu: NOTRUN -> [SKIP][300] ([i915#9906]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-7/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#8808] / [i915#9906]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-2/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#2437]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-1/igt@kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][303] ([i915#2437]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-5/igt@kms_writeback@writeback-fb-id.html * igt@perf@mi-rpc: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#2434]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-15/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#2433]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-15/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@module-unload: - shard-rkl: [PASS][306] -> [ABORT][307] ([i915#9853]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-4/igt@perf_pmu@module-unload.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-4/igt@perf_pmu@module-unload.html - shard-snb: [PASS][308] -> [ABORT][309] ([i915#9853]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb7/igt@perf_pmu@module-unload.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-snb1/igt@perf_pmu@module-unload.html - shard-tglu: NOTRUN -> [ABORT][310] ([i915#9853]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-4/igt@perf_pmu@module-unload.html - shard-mtlp: [PASS][311] -> [ABORT][312] ([i915#9853]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-5/igt@perf_pmu@module-unload.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-3/igt@perf_pmu@module-unload.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#3708] / [i915#4077]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-1/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#3708] / [i915#4077]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-14/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#3291] / [i915#3708]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][316] ([i915#3291] / [i915#3708]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-1/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#3708]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@prime_vgem@fence-flip-hang.html - shard-dg1: NOTRUN -> [SKIP][318] ([i915#3708]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-12/igt@prime_vgem@fence-flip-hang.html - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#3708]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-7/igt@prime_vgem@fence-flip-hang.html #### Possible fixes #### * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][320] ([i915#7297]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@gem_ccs@suspend-resume.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-6/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][322] ([i915#12392] / [i915#7297]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][324] ([i915#9846]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_engines@invalid-engines: - shard-mtlp: [FAIL][326] ([i915#12031]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-6/igt@gem_ctx_engines@invalid-engines.html * igt@gem_eio@hibernate: - shard-tglu: [ABORT][328] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][329] [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-10/igt@gem_eio@hibernate.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-6/igt@gem_eio@hibernate.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][330] ([i915#5784]) -> [PASS][331] +1 other test pass [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-17/igt@gem_eio@unwedge-stress.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-share: - shard-rkl: [FAIL][332] ([i915#2842]) -> [PASS][333] +1 other test pass [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-5/igt@gem_exec_fair@basic-none-share.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-7/igt@gem_exec_fair@basic-none-share.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][334] ([i915#10131] / [i915#10887] / [i915#9820]) -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-snb: [INCOMPLETE][336] -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-snb4/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_freq_api@freq-suspend: - shard-dg1: [INCOMPLETE][338] -> [PASS][339] +1 other test pass [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-16/igt@i915_pm_freq_api@freq-suspend.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-18/igt@i915_pm_freq_api@freq-suspend.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-dg2: [FAIL][340] ([i915#5956]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][342] ([i915#11808]) -> [PASS][343] +1 other test pass [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-transition: - shard-dg2: [SKIP][344] ([i915#9197]) -> [PASS][345] +45 other tests pass [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_atomic_transition@plane-all-transition.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-6/igt@kms_atomic_transition@plane-all-transition.html * igt@kms_color@gamma: - shard-dg2: [SKIP][346] ([i915#5354]) -> [PASS][347] +13 other tests pass [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_color@gamma.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@kms_color@gamma.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-snb: [SKIP][348] -> [PASS][349] +3 other tests pass [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_flip@blocking-wf_vblank: - shard-rkl: [FAIL][350] ([i915#11961] / [i915#2122]) -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-1/igt@kms_flip@blocking-wf_vblank.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-5/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@a-hdmi-a2: - shard-rkl: [FAIL][352] ([i915#11961]) -> [PASS][353] [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-5/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html * igt@kms_flip@flip-vs-rmfb-interruptible: - shard-mtlp: [INCOMPLETE][354] ([i915#6113]) -> [PASS][355] +1 other test pass [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_flip@flip-vs-rmfb-interruptible.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-1/igt@kms_flip@flip-vs-rmfb-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-dg1: [DMESG-WARN][356] ([i915#4423]) -> [PASS][357] +3 other tests pass [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-14/igt@kms_flip@flip-vs-suspend.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@plain-flip-fb-recreate: - shard-rkl: [FAIL][358] ([i915#2122]) -> [PASS][359] [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate@a-edp1: - shard-mtlp: [FAIL][360] ([i915#2122]) -> [PASS][361] +3 other tests pass [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-4/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html * igt@kms_flip@plain-flip-fb-recreate@a-vga1: - shard-snb: [FAIL][362] ([i915#2122]) -> [PASS][363] +9 other tests pass [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-snb6/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-snb4/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-mtlp: [FAIL][364] ([i915#11989] / [i915#2122]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check-interruptible.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-mtlp-4/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1: - shard-tglu: [FAIL][366] ([i915#2122]) -> [PASS][367] +6 other tests pass [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-10/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-8/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: [FAIL][368] ([i915#6880]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_invalid_mode@bad-vsync-end: - shard-dg2: [SKIP][370] ([i915#3555]) -> [PASS][371] +4 other tests pass [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_invalid_mode@bad-vsync-end.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-3/igt@kms_invalid_mode@bad-vsync-end.html * igt@kms_plane@plane-panning-bottom-right: - shard-dg2: [SKIP][372] ([i915#8825]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-dg2: [SKIP][374] ([i915#7294]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_alpha_blend@constant-alpha-max.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-7/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [SKIP][376] ([i915#6953] / [i915#9423]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@invalid-num-scalers: - shard-dg2: [SKIP][378] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@invalid-num-scalers.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-11/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-dg2: [SKIP][380] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d: - shard-dg2: [SKIP][382] ([i915#8152]) -> [PASS][383] +1 other test pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - shard-dg2: [SKIP][384] ([i915#8152] / [i915#9423]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-dg2: [SKIP][386] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a: - shard-dg2: [SKIP][388] ([i915#12247]) -> [PASS][389] +8 other tests pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d: - shard-dg2: [SKIP][390] ([i915#12247] / [i915#8152]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-dg2: [SKIP][392] ([i915#9293]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][394] ([i915#9519]) -> [PASS][395] +2 other tests pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][396] ([i915#9519]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_setmode@basic: - shard-tglu: [FAIL][398] ([i915#5465]) -> [PASS][399] +2 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-tglu-6/igt@kms_setmode@basic.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-tglu-10/igt@kms_setmode@basic.html * igt@perf@blocking: - shard-dg2: [FAIL][400] ([i915#10538]) -> [PASS][401] +1 other test pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@perf@blocking.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@perf@blocking.html #### Warnings #### * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2: [SKIP][402] ([i915#9197]) -> [SKIP][403] +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2: [SKIP][404] -> [SKIP][405] ([i915#9197]) +3 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-4/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: [SKIP][406] ([i915#5190]) -> [SKIP][407] ([i915#5190] / [i915#9197]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: [SKIP][408] ([i915#4538] / [i915#5190]) -> [SKIP][409] ([i915#5190] / [i915#9197]) +5 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: [SKIP][410] ([i915#5190] / [i915#9197]) -> [SKIP][411] ([i915#4538] / [i915#5190]) +7 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2: [SKIP][412] ([i915#5190] / [i915#9197]) -> [SKIP][413] ([i915#5190]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-dg2: [SKIP][414] ([i915#10307] / [i915#6095]) -> [SKIP][415] ([i915#9197]) +7 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: [SKIP][416] ([i915#12313]) -> [SKIP][417] ([i915#9197]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-dg2: [SKIP][418] ([i915#9197]) -> [SKIP][419] ([i915#10307] / [i915#6095]) +6 other tests skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: [SKIP][420] ([i915#9197]) -> [SKIP][421] ([i915#12313]) +3 other tests skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@plane-scaling: - shard-dg2: [SKIP][422] ([i915#4087]) -> [SKIP][423] ([i915#9197]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-7/igt@kms_cdclk@plane-scaling.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_cdclk@plane-scaling.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: [SKIP][424] ([i915#3299]) -> [SKIP][425] ([i915#9197]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-10/igt@kms_content_protection@dp-mst-type-0.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][426] ([i915#9433]) -> [SKIP][427] ([i915#9424]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-17/igt@kms_content_protection@mei-interface.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-16/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][428] ([i915#7118] / [i915#9424]) -> [SKIP][429] ([i915#9197]) +1 other test skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_content_protection@type1.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: [SKIP][430] ([i915#11453] / [i915#3359]) -> [SKIP][431] ([i915#9197]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg2: [SKIP][432] ([i915#3555]) -> [SKIP][433] ([i915#9197]) +2 other tests skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_cursor_crc@cursor-random-32x32.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: [SKIP][434] ([i915#9197]) -> [SKIP][435] ([i915#11453] / [i915#3359]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: [SKIP][436] ([i915#9197]) -> [SKIP][437] ([i915#5354]) +4 other tests skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-10/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: [SKIP][438] ([i915#9197]) -> [SKIP][439] ([i915#4103] / [i915#4213]) +2 other tests skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: [SKIP][440] ([i915#9197]) -> [SKIP][441] ([i915#3555] / [i915#3840]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg1: [SKIP][442] ([i915#9934]) -> [SKIP][443] ([i915#4423] / [i915#9934]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-17/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-19/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@plain-flip-fb-recreate: - shard-dg2: [FAIL][444] ([i915#2122]) -> [SKIP][445] ([i915#5354]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-11/igt@kms_flip@plain-flip-fb-recreate.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: [SKIP][446] ([i915#3555] / [i915#5190]) -> [SKIP][447] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2: [SKIP][448] ([i915#3555]) -> [SKIP][449] ([i915#2672] / [i915#3555]) +2 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: [SKIP][450] ([i915#5354]) -> [SKIP][451] ([i915#8708]) +7 other tests skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-dg2: [SKIP][452] ([i915#8708]) -> [SKIP][453] ([i915#5354]) +6 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][454] -> [SKIP][455] ([i915#4423]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-dg2: [SKIP][456] ([i915#5354]) -> [SKIP][457] ([i915#3458]) +9 other tests skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15581/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][458] ([i915#10433] / [i915#3458]) -> [SKIP][459] ([i915#3458]) +1 other test skip [458]: https://intel-gfx-ci.01.org/tree/d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11962/index.html [-- Attachment #2: Type: text/html, Size: 108555 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for Test pmu unbind (xfail) 2024-10-23 4:55 [CI 0/2] Test pmu unbind (xfail) Lucas De Marchi ` (4 preceding siblings ...) 2024-10-23 8:33 ` ✓ Fi.CI.IGT: " Patchwork @ 2024-10-23 9:20 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-10-23 9:20 UTC (permalink / raw) To: Lucas De Marchi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 84496 bytes --] == Series Details == Series: Test pmu unbind (xfail) URL : https://patchwork.freedesktop.org/series/140354/ State : failure == Summary == CI Bug Log - changes from XEIGT_8082_full -> XEIGTPW_11962_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11962_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11962_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11962_full: ### IGT changes ### #### Possible regressions #### * igt@core_getversion@all-cards: - shard-dg2-set2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@core_getversion@all-cards.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@core_getversion@all-cards.html - shard-bmg: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@core_getversion@all-cards.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@core_getversion@all-cards.html * igt@kms_color@ctm-negative: - shard-bmg: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_color@ctm-negative.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-7/igt@kms_color@ctm-negative.html * igt@kms_cursor_legacy@torture-bo@pipe-c: - shard-dg2-set2: [PASS][7] -> [DMESG-WARN][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_cursor_legacy@torture-bo@pipe-c.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_cursor_legacy@torture-bo@pipe-c.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-lnl: [PASS][9] -> [DMESG-WARN][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@kms_pm_rpm@basic-pci-d3-state.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-5/igt@kms_pm_rpm@basic-pci-d3-state.html Known issues ------------ Here are the changes found in XEIGTPW_11962_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-435/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#2231]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html - shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#2890]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html - shard-dg2-set2: [PASS][18] -> [SKIP][19] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-dg2-set2: [PASS][20] -> [DMESG-WARN][21] ([Intel XE#877]) +1 other test dmesg-warn [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-180.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_big_fb@linear-8bpp-rotate-0: - shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#1659]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_big_fb@linear-8bpp-rotate-0.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-2/igt@kms_big_fb@linear-8bpp-rotate-0.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1407]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2191]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#367]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2669]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2887]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][32] ([Intel XE#616]) +8 other tests fail [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#787]) +27 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][34] -> [INCOMPLETE][35] ([Intel XE#1195] / [Intel XE#1727]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][36] ([Intel XE#1195] / [Intel XE#1727]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][37] ([Intel XE#1195] / [Intel XE#3113]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#1195] / [Intel XE#3113]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html * igt@kms_chamelium_color@ctm-0-50: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#306]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-1/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#373]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#373]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@ctm-0-75@pipe-a-edp-1: - shard-lnl: [PASS][43] -> [DMESG-WARN][44] ([Intel XE#2929]) +1 other test dmesg-warn [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_color@ctm-0-75@pipe-a-edp-1.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-8/igt@kms_color@ctm-0-75@pipe-a-edp-1.html * igt@kms_cursor_crc@cursor-dpms: - shard-dg2-set2: [PASS][45] -> [SKIP][46] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_cursor_crc@cursor-dpms.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_cursor_crc@cursor-dpms.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1424]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#308]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][49] -> [DMESG-WARN][50] ([Intel XE#2791] / [Intel XE#877]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#3007]) +8 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_cursor_legacy@single-move: - shard-dg2-set2: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#1195]) +1 other test incomplete [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_cursor_legacy@single-move.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-435/igt@kms_cursor_legacy@single-move.html * igt@kms_cursor_legacy@torture-bo: - shard-dg2-set2: [PASS][55] -> [DMESG-WARN][56] ([Intel XE#3184]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_cursor_legacy@torture-bo.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_cursor_legacy@torture-bo.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#455]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-466/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#701]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][59] ([Intel XE#301]) +5 other tests fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][60] ([Intel XE#1204]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1421]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-7/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [PASS][62] -> [FAIL][63] ([Intel XE#2882]) +3 other tests fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1: - shard-lnl: [PASS][64] -> [FAIL][65] ([Intel XE#886]) +6 other tests fail [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-lnl: NOTRUN -> [FAIL][66] ([Intel XE#886]) +1 other test fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#301]) +3 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6: - shard-dg2-set2: [PASS][69] -> [FAIL][70] ([Intel XE#301]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2890]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1401]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([i915#5274]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#656]) +7 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#651]) +10 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#651]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#653]) +15 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_invalid_mode@bad-vsync-start: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2423] / [i915#2575]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_invalid_mode@bad-vsync-start.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#2927]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#356]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-464/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#309]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#361]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#2763]) +7 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#2763]) +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#1129]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#908]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-464/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#1430]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@i2c: - shard-bmg: [PASS][92] -> [SKIP][93] ([Intel XE#2446]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_pm_rpm@i2c.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_pm_rpm@i2c.html - shard-dg2-set2: [PASS][94] -> [SKIP][95] ([Intel XE#2446]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_pm_rpm@i2c.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_pm_rpm@i2c.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#2893]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1489]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1128]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-434/igt@kms_psr@psr-dpms.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1437]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#2159]) +1 other test fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@max-min: - shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#2443]) +1 other test fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_vrr@max-min.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-2/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#756]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-466/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue: - shard-lnl: [PASS][107] -> [FAIL][108] ([Intel XE#2667]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-7/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html * igt@xe_eudebug@basic-vm-bind-ufence: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2905]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-ufence.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#2905]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-7/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: NOTRUN -> [TIMEOUT][111] ([Intel XE#1473] / [Intel XE#402]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-small.html - shard-bmg: [PASS][112] -> [INCOMPLETE][113] ([Intel XE#1473]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: [PASS][114] -> [FAIL][115] ([Intel XE#1000]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@xe_evict@evict-beng-mixed-threads-large.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-466/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#688]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-7/igt@xe_evict@evict-cm-threads-small.html * igt@xe_exec_balancer@no-exec-parallel-userptr-rebind: - shard-dg2-set2: [PASS][117] -> [SKIP][118] ([Intel XE#1130]) +21 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@xe_exec_balancer@no-exec-parallel-userptr-rebind.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@xe_exec_balancer@no-exec-parallel-userptr-rebind.html * igt@xe_exec_basic@multigpu-no-exec-null-rebind: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1392]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#288]) +14 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_exec_threads@threads-bal-mixed-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#1130]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@xe_exec_threads@threads-bal-mixed-userptr.html * igt@xe_oa@invalid-remove-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2541]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-466/igt@xe_oa@invalid-remove-userspace-config.html * igt@xe_oa@mmio-triggered-reports: - shard-bmg: [PASS][123] -> [FAIL][124] ([Intel XE#2249]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@xe_oa@mmio-triggered-reports.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-1/igt@xe_oa@mmio-triggered-reports.html - shard-lnl: [PASS][125] -> [FAIL][126] ([Intel XE#2249]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_oa@mmio-triggered-reports.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-8/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@mmio-triggered-reports@ccs-0: - shard-bmg: NOTRUN -> [FAIL][127] ([Intel XE#2249]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-1/igt@xe_oa@mmio-triggered-reports@ccs-0.html - shard-lnl: NOTRUN -> [FAIL][128] ([Intel XE#2249]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-8/igt@xe_oa@mmio-triggered-reports@ccs-0.html * igt@xe_oa@oa-regs-whitelisted: - shard-bmg: [PASS][129] -> [FAIL][130] ([Intel XE#2514]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@xe_oa@oa-regs-whitelisted.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-6/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_oa@oa-regs-whitelisted@rcs-0: - shard-lnl: [PASS][131] -> [FAIL][132] ([Intel XE#2514]) +1 other test fail [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@xe_oa@oa-regs-whitelisted@rcs-0.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted@rcs-0.html - shard-bmg: NOTRUN -> [FAIL][133] ([Intel XE#2514]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-6/igt@xe_oa@oa-regs-whitelisted@rcs-0.html * igt@xe_pat@pat-index-xehpc: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1420] / [Intel XE#2838]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-7/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][135] ([Intel XE#1173]) +1 other test fail [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-464/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3hot-mmap-system: - shard-lnl: [PASS][136] -> [DMESG-WARN][137] ([Intel XE#3184]) +1 other test dmesg-warn [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@xe_pm@d3hot-mmap-system.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-2/igt@xe_pm@d3hot-mmap-system.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2284] / [Intel XE#366]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s4-basic: - shard-lnl: [PASS][139] -> [ABORT][140] ([Intel XE#1358] / [Intel XE#1607]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@xe_pm@s4-basic.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-2/igt@xe_pm@s4-basic.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [PASS][141] -> [ABORT][142] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@xe_pm@s4-basic-exec.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-2/igt@xe_pm@s4-basic-exec.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][143] -> [FAIL][144] ([Intel XE#958]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-6/igt@xe_pm_residency@toggle-gt-c6.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-config: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#944]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-466/igt@xe_query@multigpu-query-config.html * igt@xe_query@multigpu-query-gt-list: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#944]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-3/igt@xe_query@multigpu-query-gt-list.html * igt@xe_spin_batch@spin-all: - shard-bmg: [PASS][147] -> [SKIP][148] ([Intel XE#1130]) +29 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@xe_spin_batch@spin-all.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@xe_spin_batch@spin-all.html #### Possible fixes #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [SKIP][149] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][150] [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@intel_hwmon@hwmon-write.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-3/igt@intel_hwmon@hwmon-write.html * igt@kms_atomic@atomic-invalid-params: - shard-dg2-set2: [SKIP][151] ([Intel XE#2423] / [i915#2575]) -> [PASS][152] +11 other tests pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_atomic@atomic-invalid-params.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_atomic@atomic-invalid-params.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: [SKIP][153] ([Intel XE#2231]) -> [PASS][154] [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-lnl: [FAIL][155] ([Intel XE#1659]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_big_fb@linear-8bpp-rotate-180.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-4/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][157] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - shard-dg2-set2: [INCOMPLETE][159] ([Intel XE#1195] / [Intel XE#3113]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html * igt@kms_cursor_edge_walk@128x128-right-edge: - shard-lnl: [DMESG-WARN][161] ([Intel XE#2055]) -> [PASS][162] +1 other test pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_cursor_edge_walk@128x128-right-edge.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-3/igt@kms_cursor_edge_walk@128x128-right-edge.html * igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size: - shard-lnl: [FAIL][163] ([Intel XE#1541]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-4/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-move@pipe-b: - shard-dg2-set2: [DMESG-WARN][165] -> [PASS][166] +1 other test pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_cursor_legacy@torture-move@pipe-b.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_cursor_legacy@torture-move@pipe-b.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][167] ([Intel XE#301]) -> [PASS][168] +1 other test pass [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][169] ([Intel XE#301]) -> [PASS][170] +3 other tests pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank: - shard-lnl: [FAIL][171] ([Intel XE#301] / [Intel XE#3149] / [Intel XE#886]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [FAIL][173] ([Intel XE#301]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][175] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][177] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-466/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@b-dp4: - shard-dg2-set2: [INCOMPLETE][179] ([Intel XE#1195]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_flip@flip-vs-suspend@b-dp4.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-466/igt@kms_flip@flip-vs-suspend@b-dp4.html * igt@kms_flip@nonexisting-fb: - shard-bmg: [SKIP][181] ([Intel XE#3007]) -> [PASS][182] +14 other tests pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_flip@nonexisting-fb.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-2/igt@kms_flip@nonexisting-fb.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [FAIL][183] ([Intel XE#886]) -> [PASS][184] +7 other tests pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][185] ([Intel XE#2890]) -> [PASS][186] +2 other tests pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [FAIL][187] ([Intel XE#3217]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][189] ([Intel XE#455]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_hdr@invalid-hdr.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_hdr@invalid-hdr.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: [FAIL][191] ([Intel XE#361]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][193] ([Intel XE#718]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-lnl: [FAIL][195] ([Intel XE#2948]) -> [PASS][196] +1 other test pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-4/igt@kms_psr@psr2-cursor-plane-onoff.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-4/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_universal_plane@cursor-fb-leak: - shard-lnl: [FAIL][197] ([Intel XE#899]) -> [PASS][198] +1 other test pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][199] ([Intel XE#2443]) -> [PASS][200] +1 other test pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-5/igt@kms_vrr@flipline.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-6/igt@kms_vrr@flipline.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][201] ([Intel XE#1473]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-threads-large: - shard-bmg: [FAIL][203] ([Intel XE#1000]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@xe_evict@evict-beng-threads-large.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][205] ([Intel XE#1473]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [SKIP][207] ([Intel XE#1130]) -> [PASS][208] +20 other tests pass [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_exec_basic@many-bindexecqueue-rebind.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-8/igt@xe_exec_basic@many-bindexecqueue-rebind.html * igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][209] ([Intel XE#2754]) -> [PASS][210] +1 other test pass [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-8/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_compute_mode@many-execqueues-basic: - shard-dg2-set2: [SKIP][211] ([Intel XE#1130]) -> [PASS][212] +16 other tests pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_exec_compute_mode@many-execqueues-basic.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@xe_exec_compute_mode@many-execqueues-basic.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][213] ([Intel XE#1794]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-8/igt@xe_pm@s4-vm-bind-unbind-all.html #### Warnings #### * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][215] ([Intel XE#2231]) -> [SKIP][216] ([Intel XE#1124]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html - shard-dg2-set2: [SKIP][217] ([Intel XE#2890]) -> [SKIP][218] ([Intel XE#1124]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-433/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][219] ([Intel XE#2231]) -> [SKIP][220] ([Intel XE#2328]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb.html - shard-dg2-set2: [SKIP][221] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][222] ([Intel XE#619]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-bmg: [SKIP][223] ([Intel XE#1124]) -> [SKIP][224] ([Intel XE#2231]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html - shard-dg2-set2: [SKIP][225] ([Intel XE#1124]) -> [SKIP][226] ([Intel XE#2351] / [Intel XE#2890]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][227] ([Intel XE#1124]) -> [SKIP][228] ([Intel XE#2231] / [Intel XE#2890]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-dg2-set2: [SKIP][229] ([Intel XE#1124]) -> [SKIP][230] ([Intel XE#2890]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][231] ([Intel XE#367]) -> [SKIP][232] ([Intel XE#3007]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html - shard-dg2-set2: [SKIP][233] ([Intel XE#367]) -> [SKIP][234] ([Intel XE#2423] / [i915#2575]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: [SKIP][235] ([Intel XE#3007]) -> [SKIP][236] ([Intel XE#367]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html - shard-dg2-set2: [SKIP][237] ([Intel XE#2423] / [i915#2575]) -> [SKIP][238] ([Intel XE#367]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-435/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][239] ([Intel XE#2907]) -> [SKIP][240] ([Intel XE#2890]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs: - shard-bmg: [SKIP][241] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][242] ([Intel XE#2887]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html - shard-dg2-set2: [SKIP][243] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][244] ([Intel XE#455] / [Intel XE#787]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html * igt@kms_chamelium_color@ctm-max: - shard-bmg: [SKIP][245] ([Intel XE#2325]) -> [SKIP][246] ([Intel XE#3007]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_chamelium_color@ctm-max.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_chamelium_color@ctm-max.html - shard-dg2-set2: [SKIP][247] ([Intel XE#306]) -> [SKIP][248] ([Intel XE#2423] / [i915#2575]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@kms_chamelium_color@ctm-max.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: [SKIP][249] ([Intel XE#3007]) -> [SKIP][250] ([Intel XE#2252]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html - shard-dg2-set2: [SKIP][251] ([Intel XE#2423] / [i915#2575]) -> [SKIP][252] ([Intel XE#373]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][253] ([Intel XE#373]) -> [SKIP][254] ([Intel XE#2423] / [i915#2575]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd.html - shard-bmg: [SKIP][255] ([Intel XE#2252]) -> [SKIP][256] ([Intel XE#3007]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-8/igt@kms_chamelium_hpd@vga-hpd.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@lic-type-1: - shard-dg2-set2: [SKIP][257] ([Intel XE#2423] / [i915#2575]) -> [SKIP][258] ([Intel XE#455]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_content_protection@lic-type-1.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-464/igt@kms_content_protection@lic-type-1.html - shard-bmg: [SKIP][259] ([Intel XE#3007]) -> [SKIP][260] ([Intel XE#2341]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_content_protection@lic-type-1.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-3/igt@kms_content_protection@lic-type-1.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][261] ([Intel XE#2890]) -> [SKIP][262] ([Intel XE#455]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-464/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-bmg: [SKIP][263] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][264] ([Intel XE#2244]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-3x: - shard-bmg: [SKIP][265] ([Intel XE#2373]) -> [SKIP][266] ([Intel XE#3007]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_feature_discovery@display-3x.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_feature_discovery@display-3x.html - shard-dg2-set2: [SKIP][267] ([Intel XE#703]) -> [SKIP][268] ([Intel XE#2423] / [i915#2575]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@kms_feature_discovery@display-3x.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1: - shard-lnl: [FAIL][269] ([Intel XE#3036]) -> [FAIL][270] ([Intel XE#886]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move: - shard-dg2-set2: [SKIP][271] ([Intel XE#651]) -> [SKIP][272] ([Intel XE#2351] / [Intel XE#2890]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][273] ([Intel XE#2311]) -> [SKIP][274] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][275] ([Intel XE#2231]) -> [SKIP][276] ([Intel XE#2311]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html - shard-dg2-set2: [SKIP][277] ([Intel XE#2890]) -> [SKIP][278] ([Intel XE#651]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-bmg: [FAIL][279] ([Intel XE#2333]) -> [SKIP][280] ([Intel XE#2231] / [Intel XE#2890]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][281] ([Intel XE#2231]) -> [FAIL][282] ([Intel XE#2333]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][283] ([Intel XE#2311]) -> [SKIP][284] ([Intel XE#2231]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][285] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][286] ([Intel XE#2311]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][287] ([Intel XE#651]) -> [SKIP][288] ([Intel XE#2890]) +3 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: [SKIP][289] ([Intel XE#653]) -> [SKIP][290] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][291] ([Intel XE#2231]) -> [SKIP][292] ([Intel XE#2313]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html - shard-dg2-set2: [SKIP][293] ([Intel XE#2890]) -> [SKIP][294] ([Intel XE#653]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][295] ([Intel XE#2313]) -> [SKIP][296] ([Intel XE#2231]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][297] ([Intel XE#653]) -> [SKIP][298] ([Intel XE#2890]) +3 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][299] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][300] ([Intel XE#653]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-bmg: [SKIP][301] ([Intel XE#2313]) -> [SKIP][302] ([Intel XE#2231] / [Intel XE#2890]) +3 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-bmg: [SKIP][303] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][304] ([Intel XE#2313]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_getfb@getfb2-accept-ccs: - shard-bmg: [SKIP][305] ([Intel XE#3007]) -> [SKIP][306] ([Intel XE#2340]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_getfb@getfb2-accept-ccs.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-5/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: [SKIP][307] ([Intel XE#2231]) -> [SKIP][308] ([Intel XE#346]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_joiner@invalid-modeset-big-joiner.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: [SKIP][309] ([Intel XE#2890]) -> [SKIP][310] ([Intel XE#346]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-bmg: [DMESG-WARN][311] ([Intel XE#2566] / [Intel XE#3177]) -> [SKIP][312] ([Intel XE#3007]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][313] ([Intel XE#1489]) -> [SKIP][314] ([Intel XE#2890]) +2 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][315] ([Intel XE#2890]) -> [SKIP][316] ([Intel XE#1489]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-bmg: [SKIP][317] ([Intel XE#1489]) -> [SKIP][318] ([Intel XE#2231]) +2 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-bmg: [SKIP][319] ([Intel XE#2231]) -> [SKIP][320] ([Intel XE#1489]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-pr-primary-render: - shard-bmg: [SKIP][321] ([Intel XE#2231]) -> [SKIP][322] ([Intel XE#2234] / [Intel XE#2850]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@fbc-pr-primary-render.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-2/igt@kms_psr@fbc-pr-primary-render.html - shard-dg2-set2: [SKIP][323] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][324] ([Intel XE#2850] / [Intel XE#929]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@fbc-pr-primary-render.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_psr@fbc-pr-primary-render.html * igt@kms_psr@pr-basic: - shard-dg2-set2: [SKIP][325] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][326] ([Intel XE#2890]) +2 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@pr-basic.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@kms_psr@pr-basic.html - shard-bmg: [SKIP][327] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][328] ([Intel XE#2231] / [Intel XE#2890]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@pr-basic.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_psr@pr-basic.html * igt@kms_psr@pr-no-drrs: - shard-bmg: [SKIP][329] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][330] ([Intel XE#2234] / [Intel XE#2850]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@pr-no-drrs.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-6/igt@kms_psr@pr-no-drrs.html - shard-dg2-set2: [SKIP][331] ([Intel XE#2890]) -> [SKIP][332] ([Intel XE#2850] / [Intel XE#929]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@kms_psr@pr-no-drrs.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-464/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr-suspend: - shard-bmg: [SKIP][333] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][334] ([Intel XE#2231]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@kms_psr@psr-suspend.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@kms_psr@psr-suspend.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][335] ([Intel XE#2905]) -> [SKIP][336] ([Intel XE#1130]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html - shard-dg2-set2: [SKIP][337] ([Intel XE#2905]) -> [SKIP][338] ([Intel XE#1130]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-dg2-set2: [SKIP][339] ([Intel XE#1130]) -> [SKIP][340] ([Intel XE#2905]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html - shard-bmg: [SKIP][341] ([Intel XE#1130]) -> [SKIP][342] ([Intel XE#2905]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap: - shard-bmg: [SKIP][343] ([Intel XE#2322]) -> [SKIP][344] ([Intel XE#1130]) +2 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html * igt@xe_exec_basic@multigpu-no-exec-userptr-rebind: - shard-bmg: [SKIP][345] ([Intel XE#1130]) -> [SKIP][346] ([Intel XE#2322]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html * igt@xe_exec_fault_mode@many-userptr-imm: - shard-dg2-set2: [SKIP][347] ([Intel XE#1130]) -> [SKIP][348] ([Intel XE#288]) +3 other tests skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_exec_fault_mode@many-userptr-imm.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-435/igt@xe_exec_fault_mode@many-userptr-imm.html * igt@xe_exec_fault_mode@once-basic: - shard-dg2-set2: [SKIP][349] ([Intel XE#288]) -> [SKIP][350] ([Intel XE#1130]) +4 other tests skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_exec_fault_mode@once-basic.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@xe_exec_fault_mode@once-basic.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [TIMEOUT][351] ([Intel XE#2105]) -> [SKIP][352] ([Intel XE#1130]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_oa@stress-open-close: - shard-dg2-set2: [SKIP][353] ([Intel XE#2541]) -> [SKIP][354] ([Intel XE#1130]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-433/igt@xe_oa@stress-open-close.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@xe_oa@stress-open-close.html * igt@xe_pat@pat-index-xelp: - shard-bmg: [SKIP][355] ([Intel XE#1130]) -> [SKIP][356] ([Intel XE#2237] / [Intel XE#2245]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_pat@pat-index-xelp.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-8/igt@xe_pat@pat-index-xelp.html * igt@xe_pm@d3cold-mocs: - shard-bmg: [SKIP][357] ([Intel XE#1130]) -> [SKIP][358] ([Intel XE#2284]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_pm@d3cold-mocs.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-8/igt@xe_pm@d3cold-mocs.html * igt@xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][359] ([Intel XE#944]) -> [SKIP][360] ([Intel XE#1130]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-4/igt@xe_query@multigpu-query-invalid-extension.html - shard-dg2-set2: [SKIP][361] ([Intel XE#944]) -> [SKIP][362] ([Intel XE#1130]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-464/igt@xe_query@multigpu-query-invalid-extension.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-436/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][363] ([Intel XE#1130]) -> [SKIP][364] ([Intel XE#944]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-guc.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html - shard-bmg: [SKIP][365] ([Intel XE#1130]) -> [SKIP][366] ([Intel XE#944]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8082/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-guc.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/shard-bmg-2/igt@xe_query@multigpu-query-uc-fw-version-guc.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1541 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2237 [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#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929 [Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3036]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3036 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [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#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3177 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3217]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3217 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [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#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8082 -> IGTPW_11962 IGTPW_11962: 11962 IGT_8082: c8379ec8b26f3c21bae5473706b23da78bd26ffa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2107-beaeaccd284ba3b69b6dbfdc18bb89441fc99a52: beaeaccd284ba3b69b6dbfdc18bb89441fc99a52 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11962/index.html [-- Attachment #2: Type: text/html, Size: 105347 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-10-23 9:20 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-23 4:55 [CI 0/2] Test pmu unbind (xfail) Lucas De Marchi 2024-10-23 4:55 ` [CI 1/2] lib/igt_kmod: Export igt_kmod_unbind() Lucas De Marchi 2024-10-23 4:55 ` [CI 2/2] tests/intel/perf_pmu: Migrate to unbind + unload Lucas De Marchi 2024-10-23 5:46 ` ✓ CI.xeBAT: success for Test pmu unbind (xfail) Patchwork 2024-10-23 5:51 ` ✓ Fi.CI.BAT: " Patchwork 2024-10-23 8:33 ` ✓ Fi.CI.IGT: " Patchwork 2024-10-23 9:20 ` ✗ CI.xeFULL: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox