* [igt-dev] [PATCH igt-dii-client 0/3] Ignore some tests on MTL which
@ 2023-09-12 12:46 Nirmoy Das
2023-09-12 12:46 ` [igt-dev] [PATCH igt-dii-client 1/3] lib/igt_gt: Add a method to detect ggtt bind Nirmoy Das
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Nirmoy Das @ 2023-09-12 12:46 UTC (permalink / raw)
To: igt-dev; +Cc: andi.shyti
Because of HW bug in MTL it is recommended to do GGTT
update using MI_UPDATE_GGTT[1] which happens through BCS0
engine. If some test blocks bcs with a spinner then such
tests will fail. This series ignore those tests on MTL.
[1]https://patchwork.freedesktop.org/series/123329/
Nirmoy Das (3):
lib/igt_gt: Add a method to detect ggtt bind
tests/intel/gem_ctx_shared: Skip some test on MTL
tests/intel/gem_ctx_schedule: Skip some test on MTL
lib/igt_gt.c | 5 +++++
lib/igt_gt.h | 1 +
tests/intel/gem_ctx_shared.c | 12 ++++++----
tests/intel/gem_exec_schedule.c | 39 ++++++++++++++++++++++-----------
4 files changed, 40 insertions(+), 17 deletions(-)
--
2.41.0
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] [PATCH igt-dii-client 1/3] lib/igt_gt: Add a method to detect ggtt bind 2023-09-12 12:46 [igt-dev] [PATCH igt-dii-client 0/3] Ignore some tests on MTL which Nirmoy Das @ 2023-09-12 12:46 ` Nirmoy Das 2023-09-12 12:46 ` [igt-dev] [PATCH igt-dii-client 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL Nirmoy Das ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Nirmoy Das @ 2023-09-12 12:46 UTC (permalink / raw) To: igt-dev; +Cc: andi.shyti On MTL GGTT updates happens through MI_UPDATE_GGTT command. Add a method to detect that. Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> --- lib/igt_gt.c | 5 +++++ lib/igt_gt.h | 1 + 2 files changed, 6 insertions(+) diff --git a/lib/igt_gt.c b/lib/igt_gt.c index a24a566c76..6895964a9b 100644 --- a/lib/igt_gt.c +++ b/lib/igt_gt.c @@ -659,3 +659,8 @@ int gem_execbuf_flags_to_engine_class(unsigned int flags) igt_assert(0); } } + +bool gem_has_ggtt_bind(int fd) +{ + return IS_METEORLAKE(intel_get_drm_devid(fd)); +} diff --git a/lib/igt_gt.h b/lib/igt_gt.h index 3d10349e46..7d35a209da 100644 --- a/lib/igt_gt.h +++ b/lib/igt_gt.h @@ -83,5 +83,6 @@ extern const struct intel_execution_engine2 { } intel_execution_engines2[]; int gem_execbuf_flags_to_engine_class(unsigned int flags); +bool gem_has_ggtt_bind(int fd); #endif /* IGT_GT_H */ -- 2.41.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH igt-dii-client 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL 2023-09-12 12:46 [igt-dev] [PATCH igt-dii-client 0/3] Ignore some tests on MTL which Nirmoy Das 2023-09-12 12:46 ` [igt-dev] [PATCH igt-dii-client 1/3] lib/igt_gt: Add a method to detect ggtt bind Nirmoy Das @ 2023-09-12 12:46 ` Nirmoy Das 2023-09-12 12:46 ` [igt-dev] [PATCH igt-dii-client 3/3] tests/intel/gem_ctx_schedule: " Nirmoy Das ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Nirmoy Das @ 2023-09-12 12:46 UTC (permalink / raw) To: igt-dev; +Cc: andi.shyti We do GGTT update on MTL using bcs engine, blocking that would will fail the test so skip such subtests on bcs engine for MTL. Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> --- tests/intel/gem_ctx_shared.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tests/intel/gem_ctx_shared.c b/tests/intel/gem_ctx_shared.c index d24ae54831..bad0324178 100644 --- a/tests/intel/gem_ctx_shared.c +++ b/tests/intel/gem_ctx_shared.c @@ -1105,22 +1105,26 @@ igt_main igt_subtest_with_dynamic("Q-independent") { for_each_queue(e, i915, &cfg) - independent(i915, &cfg, e, 0); + if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY)) + independent(i915, &cfg, e, 0); } igt_subtest_with_dynamic("Q-in-order") { for_each_queue(e, i915, &cfg) - reorder(i915, &cfg, e->flags, EQUAL); + if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY)) + reorder(i915, &cfg, e->flags, EQUAL); } igt_subtest_with_dynamic("Q-out-order") { for_each_queue(e, i915, &cfg) - reorder(i915, &cfg, e->flags, 0); + if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY)) + reorder(i915, &cfg, e->flags, 0); } igt_subtest_with_dynamic("Q-promotion") { for_each_queue(e, i915, &cfg) - promotion(i915, &cfg, e->flags); + if (!(gem_has_ggtt_bind(i915) && e->class == I915_ENGINE_CLASS_COPY)) + promotion(i915, &cfg, e->flags); } } -- 2.41.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH igt-dii-client 3/3] tests/intel/gem_ctx_schedule: Skip some test on MTL 2023-09-12 12:46 [igt-dev] [PATCH igt-dii-client 0/3] Ignore some tests on MTL which Nirmoy Das 2023-09-12 12:46 ` [igt-dev] [PATCH igt-dii-client 1/3] lib/igt_gt: Add a method to detect ggtt bind Nirmoy Das 2023-09-12 12:46 ` [igt-dev] [PATCH igt-dii-client 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL Nirmoy Das @ 2023-09-12 12:46 ` Nirmoy Das 2023-09-12 15:18 ` [igt-dev] ✓ Fi.CI.BAT: success for Ignore some tests on MTL which Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Nirmoy Das @ 2023-09-12 12:46 UTC (permalink / raw) To: igt-dev; +Cc: andi.shyti We do GGTT update on MTL using bcs engine, blocking that would will fail the test so skip such subtests on bcs engine for MTL. Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> --- tests/intel/gem_exec_schedule.c | 39 ++++++++++++++++++++++----------- 1 file changed, 26 insertions(+), 13 deletions(-) diff --git a/tests/intel/gem_exec_schedule.c b/tests/intel/gem_exec_schedule.c index c94988d368..288503c707 100644 --- a/tests/intel/gem_exec_schedule.c +++ b/tests/intel/gem_exec_schedule.c @@ -3503,21 +3503,27 @@ igt_main const struct intel_execution_engine2 *e; test_each_engine_store("fifo", fd, ctx, e) - fifo(fd, ctx, e->flags); + if (!(gem_has_ggtt_bind(fd) && e->class == I915_ENGINE_CLASS_COPY)) + fifo(fd, ctx, e->flags); test_each_engine_store("implicit-read-write", fd, ctx, e) - implicit_rw(fd, ctx, e->flags, READ_WRITE); + if (!(gem_has_ggtt_bind(fd) && e->class == I915_ENGINE_CLASS_COPY)) + implicit_rw(fd, ctx, e->flags, READ_WRITE); test_each_engine_store("implicit-write-read", fd, ctx, e) - implicit_rw(fd, ctx, e->flags, WRITE_READ); + if (!(gem_has_ggtt_bind(fd) && e->class == I915_ENGINE_CLASS_COPY)) + implicit_rw(fd, ctx, e->flags, WRITE_READ); test_each_engine_store("implicit-boths", fd, ctx, e) - implicit_rw(fd, ctx, e->flags, READ_WRITE | WRITE_READ); + if (!(gem_has_ggtt_bind(fd) && e->class == I915_ENGINE_CLASS_COPY)) + implicit_rw(fd, ctx, e->flags, READ_WRITE | WRITE_READ); test_each_engine_store("independent", fd, ctx, e) - independent(fd, ctx, e->flags, 0); + if (!(gem_has_ggtt_bind(fd) && e->class == I915_ENGINE_CLASS_COPY)) + independent(fd, ctx, e->flags, 0); test_each_engine_store("u-independent", fd, ctx, e) - independent(fd, ctx, e->flags, IGT_SPIN_USERPTR); + if (!(gem_has_ggtt_bind(fd) && e->class == I915_ENGINE_CLASS_COPY)) + independent(fd, ctx, e->flags, IGT_SPIN_USERPTR); } igt_subtest_group { @@ -3613,13 +3619,16 @@ igt_main smoketest(fd, &ctx->cfg, ALL_ENGINES, 30); test_each_engine_store("in-order", fd, ctx, e) - reorder(fd, &ctx->cfg, e->flags, EQUAL); + if (!(gem_has_ggtt_bind(fd) && e->class == I915_ENGINE_CLASS_COPY)) + reorder(fd, &ctx->cfg, e->flags, EQUAL); test_each_engine_store("out-order", fd, ctx, e) - reorder(fd, &ctx->cfg, e->flags, 0); + if (!(gem_has_ggtt_bind(fd) && e->class == I915_ENGINE_CLASS_COPY)) + reorder(fd, &ctx->cfg, e->flags, 0); test_each_engine_store("promotion", fd, ctx, e) - promotion(fd, &ctx->cfg, e->flags); + if (!(gem_has_ggtt_bind(fd) && e->class == I915_ENGINE_CLASS_COPY)) + promotion(fd, &ctx->cfg, e->flags); igt_subtest_group { igt_fixture { @@ -3686,7 +3695,8 @@ igt_main } test_each_engine_store("noreorder", fd, ctx, e) - noreorder(fd, &ctx->cfg, e->flags, 0, 0); + if (!(gem_has_ggtt_bind(fd) && e->class == I915_ENGINE_CLASS_COPY)) + noreorder(fd, &ctx->cfg, e->flags, 0, 0); test_each_engine_store("noreorder-priority", fd, ctx, e) { igt_require(gem_scheduler_enabled(fd)); @@ -3695,7 +3705,8 @@ igt_main test_each_engine_store("noreorder-corked", fd, ctx, e) { igt_require(gem_scheduler_enabled(fd)); - noreorder(fd, &ctx->cfg, e->flags, MAX_PRIO, CORKED); + if (!(gem_has_ggtt_bind(fd) && e->class == I915_ENGINE_CLASS_COPY)) + noreorder(fd, &ctx->cfg, e->flags, MAX_PRIO, CORKED); } test_each_engine_store("deep", fd, ctx, e) @@ -3736,10 +3747,12 @@ igt_main test_pi_userfault(fd, &ctx->cfg, e->flags); test_each_engine("pi-distinct-iova", fd, ctx, e) - test_pi_iova(fd, &ctx->cfg, e->flags, 0); + if (!(gem_has_ggtt_bind(fd) && e->class == I915_ENGINE_CLASS_COPY)) + test_pi_iova(fd, &ctx->cfg, e->flags, 0); test_each_engine("pi-shared-iova", fd, ctx, e) - test_pi_iova(fd, &ctx->cfg, e->flags, SHARED); + if (!(gem_has_ggtt_bind(fd) && e->class == I915_ENGINE_CLASS_COPY)) + test_pi_iova(fd, &ctx->cfg, e->flags, SHARED); } igt_subtest_group { -- 2.41.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Ignore some tests on MTL which 2023-09-12 12:46 [igt-dev] [PATCH igt-dii-client 0/3] Ignore some tests on MTL which Nirmoy Das ` (2 preceding siblings ...) 2023-09-12 12:46 ` [igt-dev] [PATCH igt-dii-client 3/3] tests/intel/gem_ctx_schedule: " Nirmoy Das @ 2023-09-12 15:18 ` Patchwork 2023-09-12 16:45 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-09-12 16:50 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-12 15:18 UTC (permalink / raw) To: Nirmoy Das; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7007 bytes --] == Series Details == Series: Ignore some tests on MTL which URL : https://patchwork.freedesktop.org/series/123602/ State : success == Summary == CI Bug Log - changes from IGT_7481 -> IGTPW_9774 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/index.html Participating hosts (41 -> 39) ------------------------------ Additional (1): fi-kbl-soraka Missing (3): bat-dg2-8 fi-snb-2520m fi-hsw-4770 New tests --------- New tests have been introduced between IGT_7481 and IGTPW_9774: ### New IGT tests (7) ### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-dp-8: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-c-dp-8: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-8: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-8: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-8: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-8: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@read-crc@pipe-c-dp-8: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9774 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-dg2-9: [PASS][1] -> [INCOMPLETE][2] ([i915#8797] / [i915#9275]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][5] ([i915#5334] / [i915#7872]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][6] ([i915#1886] / [i915#7913]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][7] ([fdo#109271]) +8 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2: - bat-adlp-11: [PASS][8] -> [DMESG-WARN][9] ([i915#1982] / [i915#6868]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6: - bat-adlp-11: [PASS][10] -> [FAIL][11] ([i915#6121]) +7 other tests fail [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp6.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-adlp-9: NOTRUN -> [SKIP][12] ([i915#3546]) +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/bat-adlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][13] ([i915#7952]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [FAIL][15] ([IGT#3] / [i915#6121]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][17] ([i915#8668]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7481 -> IGTPW_9774 CI-20190529: 20190529 CI_DRM_13623: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9774: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/index.html IGT_7481: 10897911fefd697969ec5030fdeb8d47d6d6ba43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/index.html [-- Attachment #2: Type: text/html, Size: 8322 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Ignore some tests on MTL which 2023-09-12 12:46 [igt-dev] [PATCH igt-dii-client 0/3] Ignore some tests on MTL which Nirmoy Das ` (3 preceding siblings ...) 2023-09-12 15:18 ` [igt-dev] ✓ Fi.CI.BAT: success for Ignore some tests on MTL which Patchwork @ 2023-09-12 16:45 ` Patchwork 2023-09-12 16:50 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-12 16:45 UTC (permalink / raw) To: Nirmoy Das; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1831 bytes --] == Series Details == Series: Ignore some tests on MTL which URL : https://patchwork.freedesktop.org/series/123602/ State : success == Summary == CI Bug Log - changes from XEIGT_7481_BAT -> XEIGTPW_9774_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9774_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7481/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9774/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1: - bat-adlp-7: [FAIL][3] ([Intel XE#480]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7481/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9774/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 Build changes ------------- * IGT: IGT_7481 -> IGTPW_9774 IGTPW_9774: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/index.html IGT_7481: 10897911fefd697969ec5030fdeb8d47d6d6ba43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-368-b2c3b639e43d697c7aabb118f2e27eac926cd771: b2c3b639e43d697c7aabb118f2e27eac926cd771 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9774/index.html [-- Attachment #2: Type: text/html, Size: 2490 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Ignore some tests on MTL which 2023-09-12 12:46 [igt-dev] [PATCH igt-dii-client 0/3] Ignore some tests on MTL which Nirmoy Das ` (4 preceding siblings ...) 2023-09-12 16:45 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-09-12 16:50 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-12 16:50 UTC (permalink / raw) To: Nirmoy Das; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 92423 bytes --] == Series Details == Series: Ignore some tests on MTL which URL : https://patchwork.freedesktop.org/series/123602/ State : failure == Summary == CI Bug Log - changes from IGT_7481_full -> IGTPW_9774_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9774_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9774_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9774_full: ### IGT changes ### #### Possible regressions #### * igt@kms_plane@plane-panning-top-left@pipe-b-planes: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-5/igt@kms_plane@plane-panning-top-left@pipe-b-planes.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-5/igt@kms_plane@plane-panning-top-left@pipe-b-planes.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-apl: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-apl6/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html #### Warnings #### * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][5] ([i915#2346]) -> [TIMEOUT][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html Known issues ------------ Here are the changes found in IGTPW_9774_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-4/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-14/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#7701]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +11 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +4 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-15/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +12 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-2/igt@drm_fdinfo@isolation@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][14] -> [FAIL][15] ([i915#7742]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_mm@drm_mm_test: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8661]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-4/igt@drm_mm@drm_mm_test.html * igt@feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#4854]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#4854]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-19/igt@feature_discovery@chamelium.html * igt@feature_discovery@display-3x: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#1839]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@feature_discovery@display-3x.html * igt@gem_basic@multigpu-create-close: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@gem_basic@multigpu-create-close.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [INCOMPLETE][22] ([i915#9283]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#6335]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][24] -> [FAIL][25] ([i915#6268]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [PASS][26] -> [FAIL][27] ([i915#6268]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg1: NOTRUN -> [SKIP][28] ([fdo#109314]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-18/igt@gem_ctx_param@set-priority-not-supported.html - shard-dg2: NOTRUN -> [SKIP][29] ([fdo#109314]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#8555]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#1099]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-snb5/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][32] -> [FAIL][33] ([i915#5784]) +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-14/igt@gem_eio@unwedge-stress.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-14/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-sync: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-4/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4036]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-2/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-2/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglu: NOTRUN -> [FAIL][37] ([i915#2842]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-4/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none-share: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4473] / [i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][39] -> [FAIL][40] ([i915#2842]) +1 other test fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4473]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][42] -> [FAIL][43] ([i915#2842]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fence@submit: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4812]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@gem_exec_fence@submit3.html - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-14/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3711]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#5107]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +13 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3281]) +8 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-1/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4537]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: [PASS][55] -> [INCOMPLETE][56] ([i915#8797]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-1/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][57] ([i915#7975] / [i915#8213]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-5/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4613]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@massive: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-4/igt@gem_lmem_swapping@massive.html * igt@gem_madvise@dontneed-before-pwrite: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#284]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@gem_media_vme.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) +9 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +13 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@gem_mmap_gtt@basic-write-read-distinct.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +12 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-12/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4270]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3282]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-15/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282]) +6 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-4/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +8 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4079]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4079]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@gem_set_tiling_vs_gtt.html * igt@gem_spin_batch@user-each: - shard-mtlp: NOTRUN -> [ABORT][77] ([i915#9121] / [i915#9262]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-4/igt@gem_spin_batch@user-each.html * igt@gem_tiling_max_stride: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4077]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-17/igt@gem_tiling_max_stride.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3297]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4880]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4880]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-15/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@gem_userptr_blits@readonly-unsync.html - shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-3/igt@gem_userptr_blits@readonly-unsync.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][85] ([fdo#109289]) +6 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-4/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@basic-offset: - shard-rkl: NOTRUN -> [SKIP][86] ([fdo#109289]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-1/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@allowed-all: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#2856]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-7/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-chained: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@unaligned-jump: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#2527]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-17/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [PASS][91] -> [FAIL][92] ([i915#7069]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-4/igt@i915_hangman@gt-engine-hang@vcs0.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#7707]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@i915_hwmon@hwmon-write.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][94] ([i915#2681]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-mtlp: NOTRUN -> [FAIL][95] ([i915#3591]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#1397]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][97] -> [SKIP][98] ([i915#1397]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#1397]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-mtlp: NOTRUN -> [SKIP][100] ([fdo#109293]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][101] ([fdo#109506]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rpm@system-suspend: - shard-dg2: [PASS][102] -> [FAIL][103] ([fdo#103375]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-11/igt@i915_pm_rpm@system-suspend.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#6621]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html - shard-dg1: NOTRUN -> [SKIP][105] ([i915#6621]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-16/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][106] ([i915#8346]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@i915_pm_rps@reset.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6188]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@i915_query@query-topology-coherent-slice-mask.html - shard-dg2: NOTRUN -> [SKIP][108] ([i915#6188]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@gt_engines: - shard-mtlp: NOTRUN -> [FAIL][109] ([i915#9278] / [i915#9290]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_pm: - shard-mtlp: NOTRUN -> [DMESG-FAIL][110] ([i915#9270]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][111] ([i915#9311] / [i915#9312]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@debugfs-reader: - shard-snb: NOTRUN -> [DMESG-WARN][112] ([i915#8841]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-snb7/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@sysfs-reader: - shard-mtlp: NOTRUN -> [ABORT][113] ([i915#9262]) +4 other tests abort [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-7/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#5190]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4212]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4212]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#8502]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6229]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-apl: NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#1769]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-apl7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#1769] / [i915#3555]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][121] ([fdo#111614]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5286]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5286]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][124] ([fdo#111615] / [i915#5286]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111614] / [i915#3638]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111614]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6187]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111615]) +10 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html - shard-tglu: NOTRUN -> [SKIP][130] ([fdo#111615]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][131] ([fdo#111615]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-18/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#5190]) +14 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][133] ([fdo#110723]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@pipe-a-bad-aux-stride-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-12/igt@kms_ccs@pipe-a-bad-aux-stride-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#3689] / [i915#3886] / [i915#5354]) +7 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html - shard-rkl: NOTRUN -> [SKIP][136] ([i915#3886] / [i915#5354] / [i915#6095]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-1/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html - shard-tglu: NOTRUN -> [SKIP][137] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-9/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#5354] / [i915#6095]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-6/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-16/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#3734] / [i915#5354] / [i915#6095]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-2/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html - shard-tglu: NOTRUN -> [SKIP][141] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-9/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#3689] / [i915#5354] / [i915#6095]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-19/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-3/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs: - shard-snb: NOTRUN -> [SKIP][144] ([fdo#109271]) +105 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-snb5/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#5354] / [i915#6095]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-9/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3886] / [i915#6095]) +8 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#3689] / [i915#5354]) +26 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#6095]) +36 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-2/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#5354]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-7/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#4087] / [i915#7213]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#7213]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#4087]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][153] ([fdo#111827]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][154] ([fdo#111827]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#7828]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#7828]) +8 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#7828]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-7/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#7828]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#7828]) +10 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3299]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6944]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-5/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#7118]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@kms_content_protection@lic.html * igt@kms_content_protection@srm@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][163] ([i915#7173]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-apl6/igt@kms_content_protection@srm@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][164] ([fdo#109279] / [i915#3359]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3359]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8814]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3359]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][168] ([fdo#103375]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-12/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2: NOTRUN -> [SKIP][169] ([fdo#109274] / [i915#5354]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][170] ([fdo#109274] / [fdo#111767] / [i915#5354]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#4213]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2: NOTRUN -> [SKIP][172] ([i915#4103] / [i915#4213]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3546]) +6 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-snb: NOTRUN -> [SKIP][174] ([fdo#109271] / [fdo#111767]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-snb4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][175] -> [FAIL][176] ([i915#2346]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#9226] / [i915#9261]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#9227]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#9227]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#9226] / [i915#9261]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#8588]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][182] ([fdo#109271]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-glk2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#3555]) +7 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3469]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][186] ([fdo#109274] / [fdo#111767]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-dg1: NOTRUN -> [SKIP][187] ([fdo#111767] / [fdo#111825]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-12/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][188] ([fdo#111825]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html - shard-tglu: NOTRUN -> [SKIP][189] ([fdo#109274] / [i915#3637]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][190] ([fdo#111767] / [fdo#111825]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3637]) +6 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-5/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][192] ([fdo#109274]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#8381]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#8810]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672]) +5 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#2672]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#3555]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#5274]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [PASS][200] -> [FAIL][201] ([i915#6880]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#8708]) +19 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#5354]) +43 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][204] ([fdo#111825] / [i915#1825]) +9 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: NOTRUN -> [FAIL][205] ([i915#6880]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#5439]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#5460]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#3458]) +4 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#8708]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][210] ([fdo#109280]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#1825]) +34 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][212] ([fdo#110189]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3458]) +13 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8708]) +13 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][215] ([fdo#111825]) +7 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3023]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#6118]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8228]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-3/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#6403]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#4816]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][223] ([i915#4816]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][224] ([fdo#109289]) +4 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-dg1: NOTRUN -> [SKIP][225] ([fdo#109289]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-19/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [DMESG-WARN][226] ([i915#9262]) +1 other test dmesg-warn [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-edp-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#6953]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][228] ([i915#8292]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html - shard-tglu: [PASS][229] -> [FAIL][230] ([i915#8292]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-8/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#5176]) +5 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#5176]) +11 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#5176]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#5176]) +15 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#5176]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-7/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#5235]) +19 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#5235]) +7 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#5235]) +19 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#5235]) +7 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#6524] / [i915#6805]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#658]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#4348]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-apl: NOTRUN -> [SKIP][243] ([fdo#109271] / [i915#658]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-apl3/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#658]) +4 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][245] ([fdo#111068] / [i915#658]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-12/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#1072]) +6 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@psr2_sprite_blt: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#1072]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-17/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr@sprite_blt: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#1072]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-6/igt@kms_psr@sprite_blt.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#4235]) +4 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#4235] / [i915#5190]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#5289]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@clone-exclusive-crtc: - shard-apl: NOTRUN -> [SKIP][252] ([fdo#109271]) +36 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-apl7/igt@kms_setmode@clone-exclusive-crtc.html - shard-tglu: NOTRUN -> [SKIP][253] ([i915#3555]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-5/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#8623]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-rkl: [PASS][255] -> [FAIL][256] ([i915#9196]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#4070] / [i915#6768]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-tglu: [PASS][258] -> [INCOMPLETE][259] ([i915#8797]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-3/igt@kms_vblank@pipe-c-ts-continuation-suspend.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-6/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#4070] / [i915#533] / [i915#6768]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-4/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-mtlp: [PASS][261] -> [ABORT][262] ([i915#9262]) +4 other tests abort [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-8/igt@kms_vblank@pipe-d-ts-continuation-suspend.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-2/igt@kms_vblank@pipe-d-ts-continuation-suspend.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8808]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-2/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-invalid-parameters: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#2437]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][265] ([i915#2437]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@buffer-fill@0-rcs0: - shard-mtlp: NOTRUN -> [FAIL][266] ([i915#7823] / [i915#9265]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-2/igt@perf@buffer-fill@0-rcs0.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][267] ([i915#8724]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#7387]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@perf@global-sseu-config-invalid.html * igt@perf@polling@0-rcs0: - shard-mtlp: NOTRUN -> [FAIL][269] ([i915#9259]) +1 other test fail [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-2/igt@perf@polling@0-rcs0.html * igt@perf_pmu@semaphore-busy@rcs0: - shard-mtlp: NOTRUN -> [FAIL][270] ([i915#4349]) +11 other tests fail [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@perf_pmu@semaphore-busy@rcs0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [INCOMPLETE][271] ([i915#5493]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#3291] / [i915#3708]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-blt: - shard-mtlp: NOTRUN -> [FAIL][273] ([i915#8445]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@prime_vgem@coherency-blt.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][274] ([fdo#109295] / [i915#3708]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3708]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@prime_vgem@fence-flip-hang.html * igt@runner@aborted: - shard-mtlp: NOTRUN -> ([FAIL][276], [FAIL][277]) ([i915#7812]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-5/igt@runner@aborted.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-4/igt@runner@aborted.html * igt@tools_test@sysfs_l3_parity: - shard-tglu: NOTRUN -> [SKIP][278] ([fdo#109307]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-5/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@get-values-invalid-pad: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#2575]) +14 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@v3d/v3d_perfmon@get-values-invalid-pad.html * igt@v3d/v3d_submit_cl@bad-perfmon: - shard-rkl: NOTRUN -> [SKIP][280] ([fdo#109315]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-6/igt@v3d/v3d_submit_cl@bad-perfmon.html * igt@v3d/v3d_submit_cl@valid-multisync-submission: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#2575]) +9 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-10/igt@v3d/v3d_submit_cl@valid-multisync-submission.html * igt@v3d/v3d_submit_csd@bad-multisync-pad: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#2575]) +4 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-14/igt@v3d/v3d_submit_csd@bad-multisync-pad.html * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#7711]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-6/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html - shard-tglu: NOTRUN -> [SKIP][284] ([i915#2575]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-4/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#7711]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-19/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#7711]) +8 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-1/igt@vc4/vc4_wait_bo@used-bo-0ns.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#7711]) +8 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-6/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][288] ([i915#2846]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][290] ([i915#2842]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][292] ([i915#7975] / [i915#8213]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-5/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_mmap_offset@clear@smem0: - shard-dg1: [FAIL][294] ([i915#7962]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-14/igt@gem_mmap_offset@clear@smem0.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-17/igt@gem_mmap_offset@clear@smem0.html * igt@gem_spin_batch@user-each: - shard-dg2: [TIMEOUT][296] -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-2/igt@gem_spin_batch@user-each.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-1/igt@gem_spin_batch@user-each.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [FAIL][298] -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-1/igt@gem_userptr_blits@nohangcheck.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-8/igt@gem_userptr_blits@nohangcheck.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [ABORT][300] ([i915#5566]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl7/igt@gen9_exec_parse@allowed-all.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-apl1/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [INCOMPLETE][302] ([i915#5566]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl1/igt@gen9_exec_parse@allowed-single.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-apl1/igt@gen9_exec_parse@allowed-single.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: [FAIL][304] ([i915#8456]) -> [PASS][305] +2 other tests pass [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-6/igt@i915_hangman@detector@vcs0.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [FAIL][306] ([i915#7069]) -> [PASS][307] +1 other test pass [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-8/igt@i915_hangman@engine-engine-error@vcs0.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][308] ([i915#7061] / [i915#8617]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][310] ([i915#1397]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-1/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg1: [SKIP][312] ([i915#1397]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-12/igt@i915_pm_rpm@modeset-lpsp.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][314] ([i915#1397]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_selftest@live@gt_lrc: - shard-tglu: [DMESG-FAIL][316] -> [PASS][317] [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-2/igt@i915_selftest@live@gt_lrc.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-4/igt@i915_selftest@live@gt_lrc.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][318] ([i915#3743]) -> [PASS][319] [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][320] ([i915#2346]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [FAIL][322] ([i915#6880]) -> [PASS][323] +2 other tests pass [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][324] ([i915#433]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html * {igt@kms_pm_dc@dc9-dpms}: - shard-tglu: [SKIP][326] ([i915#4281]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-mtlp: [ABORT][328] ([i915#9262]) -> [PASS][329] +3 other tests pass [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-2/igt@kms_vblank@pipe-c-ts-continuation-suspend.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-3/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [FAIL][330] ([i915#4349]) -> [PASS][331] +2 other tests pass [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-16/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [FAIL][332] ([i915#4349]) -> [PASS][333] +7 other tests pass [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-7/igt@perf_pmu@semaphore-busy@vecs0.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-5/igt@perf_pmu@semaphore-busy@vecs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][334] ([i915#1982] / [i915#4983]) -> [INCOMPLETE][335] ([i915#4983]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-19/igt@device_reset@unbind-reset-rebind.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-12/igt@device_reset@unbind-reset-rebind.html * igt@kms_async_flips@crc@pipe-a-edp-1: - shard-mtlp: [DMESG-FAIL][336] ([i915#8561]) -> [FAIL][337] ([i915#8247]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-3/igt@kms_async_flips@crc@pipe-a-edp-1.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@kms_async_flips@crc@pipe-a-edp-1.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: [FAIL][338] ([i915#8247]) -> [DMESG-FAIL][339] ([i915#8561]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-3/igt@kms_async_flips@crc@pipe-d-edp-1.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-mtlp-6/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [INCOMPLETE][340] -> [FAIL][341] ([fdo#103375]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-5/igt@kms_fbcon_fbt@fbc-suspend.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg2-11/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][342] ([i915#3955]) -> [SKIP][343] ([fdo#110189] / [i915#3955]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][344] ([fdo#109285] / [i915#4098]) -> [SKIP][345] ([fdo#109285]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][346] ([i915#1072]) -> [SKIP][347] ([i915#1072] / [i915#4078]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-17/igt@kms_psr@sprite_plane_onoff.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/shard-dg1-13/igt@kms_psr@sprite_plane_onoff.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7823]: https://gitlab.freedesktop.org/drm/intel/issues/7823 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7962]: https://gitlab.freedesktop.org/drm/intel/issues/7962 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9259]: https://gitlab.freedesktop.org/drm/intel/issues/9259 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9265]: https://gitlab.freedesktop.org/drm/intel/issues/9265 [i915#9270]: https://gitlab.freedesktop.org/drm/intel/issues/9270 [i915#9278]: https://gitlab.freedesktop.org/drm/intel/issues/9278 [i915#9283]: https://gitlab.freedesktop.org/drm/intel/issues/9283 [i915#9290]: https://gitlab.freedesktop.org/drm/intel/issues/9290 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9312]: https://gitlab.freedesktop.org/drm/intel/issues/9312 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7481 -> IGTPW_9774 CI-20190529: 20190529 CI_DRM_13623: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9774: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/index.html IGT_7481: 10897911fefd697969ec5030fdeb8d47d6d6ba43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9774/index.html [-- Attachment #2: Type: text/html, Size: 113187 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-09-12 16:50 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-12 12:46 [igt-dev] [PATCH igt-dii-client 0/3] Ignore some tests on MTL which Nirmoy Das 2023-09-12 12:46 ` [igt-dev] [PATCH igt-dii-client 1/3] lib/igt_gt: Add a method to detect ggtt bind Nirmoy Das 2023-09-12 12:46 ` [igt-dev] [PATCH igt-dii-client 2/3] tests/intel/gem_ctx_shared: Skip some test on MTL Nirmoy Das 2023-09-12 12:46 ` [igt-dev] [PATCH igt-dii-client 3/3] tests/intel/gem_ctx_schedule: " Nirmoy Das 2023-09-12 15:18 ` [igt-dev] ✓ Fi.CI.BAT: success for Ignore some tests on MTL which Patchwork 2023-09-12 16:45 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-09-12 16:50 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox