* [igt-dev] [PATCH i-g-t 0/2] Add GT IP version query support
@ 2023-12-06 20:49 Matt Roper
2023-12-06 20:49 ` [igt-dev] [PATCH i-g-t 1/2] drm-uapi/xe: Add IP version to GT query Matt Roper
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Matt Roper @ 2023-12-06 20:49 UTC (permalink / raw)
To: igt-dev
Update the Xe uapi header to match the proposed XeKMD uapi (i.e.,
replacing one of the reserved qwords of the GT query with IP version
fields) and add support to the Xe query test.
Matt Roper (2):
drm-uapi/xe: Add IP version to GT query
tests/xe_query: Query and sanity-check GT ip versions
include/drm-uapi/xe_drm.h | 10 +++++++++-
tests/intel/xe_query.c | 28 ++++++++++++++++++++++++++++
2 files changed, 37 insertions(+), 1 deletion(-)
--
2.43.0
^ permalink raw reply [flat|nested] 6+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] drm-uapi/xe: Add IP version to GT query 2023-12-06 20:49 [igt-dev] [PATCH i-g-t 0/2] Add GT IP version query support Matt Roper @ 2023-12-06 20:49 ` Matt Roper 2023-12-06 20:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe_query: Query and sanity-check GT ip versions Matt Roper ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Matt Roper @ 2023-12-06 20:49 UTC (permalink / raw) To: igt-dev Align with commit ("drm/xe/uapi: Add IP version and stepping to GT list query") Signed-off-by: Matt Roper <matthew.d.roper@intel.com> --- include/drm-uapi/xe_drm.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h index 590f7b7af..dcb7582c8 100644 --- a/include/drm-uapi/xe_drm.h +++ b/include/drm-uapi/xe_drm.h @@ -396,8 +396,16 @@ struct drm_xe_gt { * memory and memory living in a different tile. */ __u64 far_mem_regions; + /** @ip_ver_major: Graphics/media IP major version on GMD_ID platforms */ + __u16 ip_ver_major; + /** @ip_ver_major: Graphics/media IP minor version on GMD_ID platforms */ + __u16 ip_ver_minor; + /** @ip_ver_major: Graphics/media IP revision ID on GMD_ID platforms */ + __u16 ip_ver_revid; + /** @pad2: MBZ */ + __u16 pad2; /** @reserved: Reserved */ - __u64 reserved[8]; + __u64 reserved[7]; }; /** -- 2.43.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/xe_query: Query and sanity-check GT ip versions 2023-12-06 20:49 [igt-dev] [PATCH i-g-t 0/2] Add GT IP version query support Matt Roper 2023-12-06 20:49 ` [igt-dev] [PATCH i-g-t 1/2] drm-uapi/xe: Add IP version to GT query Matt Roper @ 2023-12-06 20:49 ` Matt Roper 2023-12-06 23:02 ` [igt-dev] ✓ Fi.CI.BAT: success for Add GT IP version query support Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Matt Roper @ 2023-12-06 20:49 UTC (permalink / raw) To: igt-dev Update the query test to include the GT's IP version in the output and to also perform some simple sanity checks on the version received. We don't want to try to match any specific version numbers (since we expect new versions to show up in the future), but we do know that the uapi should never return version numbers older than 12.70 for the primary GT or 13.00 for the media GT since those were the first IP versions to include GMD_ID support. We also know that MTL/ARL are the only pre-Xe2 platforms to support GMD_ID, so if we're not running on MTL/ARL, the version numbers must always be 20.00 or greater. Signed-off-by: Matt Roper <matthew.d.roper@intel.com> --- tests/intel/xe_query.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/tests/intel/xe_query.c b/tests/intel/xe_query.c index 338ef6151..7cf64b437 100644 --- a/tests/intel/xe_query.c +++ b/tests/intel/xe_query.c @@ -259,6 +259,7 @@ test_query_mem_regions(int fd) static void test_query_gt_list(int fd) { + uint16_t dev_id = intel_get_drm_devid(fd); struct drm_xe_query_gt_list *gt_list; struct drm_xe_device_query query = { .extensions = 0, @@ -278,13 +279,40 @@ test_query_gt_list(int fd) igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_DEVICE_QUERY, &query), 0); for (i = 0; i < gt_list->num_gt; i++) { + int verx100 = 100 * gt_list->gt_list[i].ip_ver_major + + gt_list->gt_list[i].ip_ver_minor; + igt_info("type: %d\n", gt_list->gt_list[i].type); igt_info("gt_id: %d\n", gt_list->gt_list[i].gt_id); + igt_info("IP version: %d.%02d, stepping %d\n", + gt_list->gt_list[i].ip_ver_major, + gt_list->gt_list[i].ip_ver_minor, + gt_list->gt_list[i].ip_ver_revid); igt_info("reference_clock: %u\n", gt_list->gt_list[i].reference_clock); igt_info("near_mem_regions: 0x%016llx\n", gt_list->gt_list[i].near_mem_regions); igt_info("far_mem_regions: 0x%016llx\n", gt_list->gt_list[i].far_mem_regions); + + /* Sanity check IP version. */ + if (verx100) { + /* + * First GMD_ID platforms had graphics 12.70 and media + * 13.00 so we should never see non-zero values lower + * than those. + */ + if (gt_list->gt_list[i].type == DRM_XE_QUERY_GT_TYPE_MEDIA) + igt_assert_lte(1300, verx100); + else + igt_assert_lte(1270, verx100); + + /* + * Aside from MTL/ARL, all version numbers should be + * 20.00 or higher. + */ + if (!IS_METEORLAKE(dev_id)) + igt_assert_lte(20, gt_list->gt_list[i].ip_ver_major); + } } } -- 2.43.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add GT IP version query support 2023-12-06 20:49 [igt-dev] [PATCH i-g-t 0/2] Add GT IP version query support Matt Roper 2023-12-06 20:49 ` [igt-dev] [PATCH i-g-t 1/2] drm-uapi/xe: Add IP version to GT query Matt Roper 2023-12-06 20:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe_query: Query and sanity-check GT ip versions Matt Roper @ 2023-12-06 23:02 ` Patchwork 2023-12-07 0:32 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-12-07 0:53 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-12-06 23:02 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3146 bytes --] == Series Details == Series: Add GT IP version query support URL : https://patchwork.freedesktop.org/series/127456/ State : success == Summary == CI Bug Log - changes from CI_DRM_13990 -> IGTPW_10358 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/index.html Participating hosts (37 -> 36) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10358 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][1] ([i915#8668]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/bat-rplp-1/igt@kms_pm_backlight@basic-brightness@edp-1.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: [INCOMPLETE][2] ([i915#9275]) -> [PASS][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@kms_flip@basic-flip-vs-dpms@d-dp6: - bat-adlp-11: [DMESG-FAIL][4] ([i915#6868]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms@d-dp6.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms@d-dp6.html * igt@kms_flip@basic-flip-vs-modeset@d-dp6: - bat-adlp-11: [DMESG-WARN][6] -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/bat-adlp-11/igt@kms_flip@basic-flip-vs-modeset@d-dp6.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/bat-adlp-11/igt@kms_flip@basic-flip-vs-modeset@d-dp6.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][8] ([i915#8668]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7626 -> IGTPW_10358 CI-20190529: 20190529 CI_DRM_13990: 85d33d0ad82a5c1a71492f14a5ceb67ada6a22d8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10358: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/index.html IGT_7626: 154b7288552cd7ed3033f8ef396e88d0bd1b7646 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- -igt@xe_compute@ccs-mode-basic -igt@xe_compute@ccs-mode-compute-kernel == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/index.html [-- Attachment #2: Type: text/html, Size: 3927 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Add GT IP version query support 2023-12-06 20:49 [igt-dev] [PATCH i-g-t 0/2] Add GT IP version query support Matt Roper ` (2 preceding siblings ...) 2023-12-06 23:02 ` [igt-dev] ✓ Fi.CI.BAT: success for Add GT IP version query support Patchwork @ 2023-12-07 0:32 ` Patchwork 2023-12-07 0:53 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-12-07 0:32 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 79516 bytes --] == Series Details == Series: Add GT IP version query support URL : https://patchwork.freedesktop.org/series/127456/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13990_full -> IGTPW_10358_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10358_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10358_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10358_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg2-10/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-5/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-tglu: [FAIL][5] ([i915#3591]) -> [WARN][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@kms_content_protection@srm: - shard-snb: [SKIP][7] ([fdo#109271]) -> [INCOMPLETE][8] +2 other tests incomplete [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-snb6/igt@kms_content_protection@srm.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-snb7/igt@kms_content_protection@srm.html Known issues ------------ Here are the changes found in IGTPW_10358_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#7701]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +21 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-13/igt@drm_fdinfo@virtual-busy-idle-all.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-8/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-15/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][15] ([i915#7297]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-2/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@hog-create@smem0: - shard-mtlp: NOTRUN -> [FAIL][17] ([i915#8758]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-2/igt@gem_create@hog-create@smem0.html * igt@gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#4771]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-13/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#4771]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-7/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#4036]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-10/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu: NOTRUN -> [SKIP][22] ([i915#6334]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-2/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@many-4k-incremental: - shard-dg2: NOTRUN -> [FAIL][23] ([i915#9606]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][24] -> [FAIL][25] ([i915#2846]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [PASS][27] -> [FAIL][28] ([i915#2842]) +2 other tests fail [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-13/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][30] ([i915#2842]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4812]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-5/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][34] ([fdo#109283] / [i915#5107]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-master: - shard-rkl: NOTRUN -> [SKIP][35] ([fdo#112283]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-7/igt@gem_exec_params@secure-non-master.html - shard-dg1: NOTRUN -> [SKIP][36] ([fdo#112283]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-16/igt@gem_exec_params@secure-non-master.html - shard-mtlp: NOTRUN -> [SKIP][37] ([fdo#112283]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-7/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +13 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-write-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-1/igt@gem_exec_reloc@basic-write-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-19/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4537]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-6/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [PASS][44] -> [ABORT][45] ([i915#7975] / [i915#8213]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-6/igt@gem_exec_suspend@basic-s4-devices@smem.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4860]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-2/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-glk: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-glk3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4565]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][53] -> [TIMEOUT][54] ([i915#5493]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#284]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-6/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4083]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@gem_mmap@bad-object.html * igt@gem_mmap_wc@write: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4083]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@gem_mmap_wc@write.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) +7 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-2/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3282]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-19/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4270]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-15/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4270]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-2/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4270]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4270]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-2/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4885]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-10/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglu: NOTRUN -> [SKIP][66] ([fdo#109312]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-2/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4077]) +8 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4079]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3297]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-5/igt@gem_userptr_blits@coherency-unsync.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-12/igt@gem_userptr_blits@coherency-unsync.html - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3297]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#4880]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@vma-merge: - shard-dg1: NOTRUN -> [FAIL][74] ([i915#3318]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-12/igt@gem_userptr_blits@vma-merge.html * igt@gen7_exec_parse@basic-allocation: - shard-tglu: NOTRUN -> [SKIP][75] ([fdo#109289]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-8/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][76] ([fdo#109289]) +7 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@gen7_exec_parse@basic-rejected.html * igt@gen7_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][77] ([fdo#109289]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-1/igt@gen7_exec_parse@batch-without-end.html - shard-dg1: NOTRUN -> [SKIP][78] ([fdo#109289]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-15/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@allowed-all: - shard-glk: NOTRUN -> [INCOMPLETE][79] ([i915#5566]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-glk9/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#2856]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#2527]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-3/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#2527]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-16/igt@gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-7/igt@gen9_exec_parse@bb-start-cmd.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][84] -> [INCOMPLETE][85] ([i915#9200]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: NOTRUN -> [FAIL][86] ([i915#3591]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4387]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][88] ([i915#9311]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-2/igt@i915_selftest@mock@memory_region.html - shard-glk: NOTRUN -> [DMESG-WARN][89] ([i915#9311]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-glk6/igt@i915_selftest@mock@memory_region.html - shard-mtlp: NOTRUN -> [DMESG-WARN][90] ([i915#9311]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-6/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@fence-restore-untiled: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4077]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@i915_suspend@fence-restore-untiled.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4212]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-16/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4212]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][94] ([i915#8247]) +3 other tests fail [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][95] ([i915#8247]) +3 other tests fail [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_async_flips@crc@pipe-c-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#6228]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-5/igt@kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#6228]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][98] ([fdo#111614]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#5286]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][100] -> [FAIL][101] ([i915#5138]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#5286]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#4538] / [i915#5286]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][104] ([fdo#111614]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-6/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][105] -> [FAIL][106] ([i915#3743]) +1 other test fail [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][107] ([fdo#111615]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#5190]) +20 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4538] / [i915#5190]) +6 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][110] ([fdo#111615]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-16/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#6187]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][112] ([fdo#111615]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][113] ([fdo#110723]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html - shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#2705]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-2/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#5354] / [i915#6095]) +8 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-2/igt@kms_ccs@pipe-a-bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#5354] / [i915#6095]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-3/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-ccs: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#5354] / [i915#6095]) +22 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#5354]) +111 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-glk: NOTRUN -> [SKIP][120] ([fdo#109271]) +72 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-glk3/igt@kms_ccs@pipe-c-crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#5354] / [i915#6095]) +10 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-8/igt@kms_ccs@pipe-c-random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5354]) +6 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4087] / [i915#7213]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][124] ([fdo#111827]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_chamelium_color@degamma.html - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111827]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-5/igt@kms_chamelium_color@degamma.html - shard-dg1: NOTRUN -> [SKIP][126] ([fdo#111827]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-12/igt@kms_chamelium_color@degamma.html - shard-mtlp: NOTRUN -> [SKIP][127] ([fdo#111827]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-1/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#7828]) +12 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#7828]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-1/igt@kms_chamelium_frames@vga-frame-dump.html - shard-dg1: NOTRUN -> [SKIP][130] ([i915#7828]) +5 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-19/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#7828]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-7/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#7828]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#9424]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#3116]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3299]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-19/igt@kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3299]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-8/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3299]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-10/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#7118]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-5/igt@kms_content_protection@legacy.html - shard-dg1: NOTRUN -> [SKIP][139] ([i915#7116]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-12/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#7118]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-5/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][141] ([fdo#109279] / [i915#3359]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3359]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#3359]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#3555]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][145] ([fdo#109274] / [i915#5354]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4103] / [i915#4213] / [i915#5608]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#4103]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-tglu: NOTRUN -> [SKIP][148] ([fdo#109274]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][149] -> [FAIL][150] ([i915#2346]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#4103] / [i915#4213]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#9227]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html - shard-dg1: NOTRUN -> [SKIP][153] ([i915#9723]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-12/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3555]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#8588]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][156] ([i915#8588]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][157] ([i915#8588]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-13/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3804]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#8812]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][160] ([i915#8812]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#4854]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-10/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#1839]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#9337]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#658]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-2/igt@kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][165] ([i915#658]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-1/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#658]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-19/igt@kms_feature_discovery@psr1.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#4881]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-15/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [SKIP][168] ([fdo#109274] / [i915#3637]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][169] ([fdo#111767] / [fdo#111825]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][170] ([fdo#111767] / [i915#3637]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg2: NOTRUN -> [SKIP][171] ([fdo#109274] / [fdo#111767]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-10/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-rkl: NOTRUN -> [SKIP][172] ([fdo#111767] / [fdo#111825]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#8381]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109274]) +13 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][175] ([fdo#111825]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3637]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#2587] / [i915#2672]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#2672]) +6 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#2672]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#2587] / [i915#2672]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-snb: [PASS][181] -> [SKIP][182] ([fdo#109271]) +12 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#1825]) +7 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][184] ([fdo#111825]) +23 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][185] ([fdo#109280]) +5 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#8708]) +36 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3023]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#8708]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3458]) +6 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][190] ([fdo#110189]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#8708]) +11 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][192] ([fdo#111825] / [i915#1825]) +14 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3458]) +22 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@kms_hdr@static-swap.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#4816]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][196] ([i915#4070] / [i915#4816]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][197] ([i915#1839]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-15/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#8821]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8821]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#3555]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-12/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][201] ([i915#8292]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-16/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#9423]) +15 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#9423]) +7 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#5176]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#9423]) +7 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#5235]) +3 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#5235]) +7 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#5235]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][209] -> [SKIP][210] ([i915#4281]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-2/igt@kms_pm_dc@dc9-dpms.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#8430]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][212] -> [SKIP][213] ([i915#9519]) +4 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#9519]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#6524] / [i915#6805]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#6524]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-13/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#9683]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-16/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#9683]) +4 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9685]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-rkl: NOTRUN -> [SKIP][220] ([i915#9685]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#4235] / [i915#5190]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#4235]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_setmode@clone-exclusive-crtc: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#3555]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-4/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#8623]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [FAIL][225] ([i915#9196]) +1 other test fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [PASS][226] -> [FAIL][227] ([i915#9196]) +1 other test fail [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][228] ([i915#8724]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#2434]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-1/igt@perf@mi-rpc.html - shard-dg1: NOTRUN -> [SKIP][230] ([i915#2434]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-15/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][231] -> [FAIL][232] ([i915#4349]) +3 other tests fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][233] ([i915#6806]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][234] ([i915#5793]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@perf_pmu@module-unload.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#3291] / [i915#3708]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-7/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][236] ([fdo#109295] / [i915#3291] / [i915#3708]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-7/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#3708] / [i915#4077]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-7/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3708]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-2/igt@prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][239] ([fdo#109295] / [i915#3708]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-4/igt@prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][240] ([i915#3708]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#3708]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-11/igt@prime_vgem@fence-write-hang.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][242] ([i915#9781]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-5/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][243] ([i915#9779]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-1/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-rkl: NOTRUN -> [FAIL][244] ([i915#9779]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-1/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][245] ([i915#9779]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-17/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#4818]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-10/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_create_bo@create-bo-zeroed: - shard-tglu: NOTRUN -> [SKIP][247] ([fdo#109315] / [i915#2575]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-8/igt@v3d/v3d_create_bo@create-bo-zeroed.html * igt@v3d/v3d_get_param@get-bad-param: - shard-snb: NOTRUN -> [SKIP][248] ([fdo#109271]) +8 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-snb4/igt@v3d/v3d_get_param@get-bad-param.html * igt@v3d/v3d_submit_cl@bad-extension: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#2575]) +6 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@v3d/v3d_submit_cl@bad-extension.html - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#2575]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-2/igt@v3d/v3d_submit_cl@bad-extension.html * igt@v3d/v3d_submit_cl@bad-pad: - shard-rkl: NOTRUN -> [SKIP][251] ([fdo#109315]) +4 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-7/igt@v3d/v3d_submit_cl@bad-pad.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#2575]) +18 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-10/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#7711]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@vc4/vc4_tiling@get-bad-modifier.html * igt@vc4/vc4_tiling@set-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#7711]) +12 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-2/igt@vc4/vc4_tiling@set-bad-modifier.html * igt@vc4/vc4_wait_bo@used-bo-1ns: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#7711]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-1/igt@vc4/vc4_wait_bo@used-bo-1ns.html - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#7711]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-8/igt@vc4/vc4_wait_bo@used-bo-1ns.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - shard-rkl: [FAIL][257] ([i915#7742]) -> [PASS][258] +1 other test pass [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][259] ([i915#7297]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-2/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][261] ([i915#6268]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@kms: - shard-dg2: [FAIL][263] ([i915#5784]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg2-1/igt@gem_eio@kms.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-5/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][265] ([i915#5784]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg1-19/igt@gem_eio@unwedge-stress.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-19/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [FAIL][267] ([i915#2842]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [FAIL][269] ([i915#2842]) -> [PASS][270] +1 other test pass [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-9/igt@gem_exec_fair@basic-pace-solo@rcs0.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@i915_module_load@reload: - shard-snb: [INCOMPLETE][271] ([i915#4528]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-snb5/igt@i915_module_load@reload.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-snb4/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][273] -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html - shard-glk: [INCOMPLETE][275] ([i915#9200]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-glk6/igt@i915_module_load@reload-with-fault-injection.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][277] ([i915#5138]) -> [PASS][278] +1 other test pass [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][279] ([i915#3743]) -> [PASS][280] +1 other test pass [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][281] ([i915#2346]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-snb: [SKIP][283] ([fdo#109271]) -> [PASS][284] +10 other tests pass [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [SKIP][285] ([i915#9519]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg2-10/igt@kms_pm_rpm@dpms-non-lpsp.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg2-6/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-snb: [FAIL][287] ([i915#9196]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [FAIL][289] ([i915#9196]) -> [PASS][290] +1 other test pass [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [FAIL][291] ([i915#4349]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vecs0.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-18/igt@perf_pmu@busy-idle-check-all@vecs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][293] ([i915#9618]) -> [INCOMPLETE][294] ([i915#9408]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-tglu: [FAIL][295] ([i915#2681] / [i915#3591]) -> [WARN][296] ([i915#2681]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@kms_async_flips@crc@pipe-c-edp-1: - shard-mtlp: [FAIL][297] ([i915#8247]) -> [DMESG-FAIL][298] ([i915#8561]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-mtlp-4/igt@kms_async_flips@crc@pipe-c-edp-1.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-mtlp-4/igt@kms_async_flips@crc@pipe-c-edp-1.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][299] ([fdo#110189] / [i915#3955]) -> [SKIP][300] ([i915#3955]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-5/igt@kms_fbcon_fbt@psr.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/shard-rkl-3/igt@kms_fbcon_fbt@psr.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [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 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [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#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [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#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [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#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [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#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#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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [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#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [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#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [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#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#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [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#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8758]: https://gitlab.freedesktop.org/drm/intel/issues/8758 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [i915#9646]: https://gitlab.freedesktop.org/drm/intel/issues/9646 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7626 -> IGTPW_10358 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13990: 85d33d0ad82a5c1a71492f14a5ceb67ada6a22d8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10358: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/index.html IGT_7626: 154b7288552cd7ed3033f8ef396e88d0bd1b7646 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/index.html [-- Attachment #2: Type: text/html, Size: 96442 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Add GT IP version query support 2023-12-06 20:49 [igt-dev] [PATCH i-g-t 0/2] Add GT IP version query support Matt Roper ` (3 preceding siblings ...) 2023-12-07 0:32 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-12-07 0:53 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-12-07 0:53 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2561 bytes --] == Series Details == Series: Add GT IP version query support URL : https://patchwork.freedesktop.org/series/127456/ State : success == Summary == CI Bug Log - changes from XEIGT_7626_BAT -> XEIGTPW_10358_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10358_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480]) +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7626/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10358/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@xe_create@create-execqueues-leak: - bat-atsm-2: [PASS][3] -> [FAIL][4] ([Intel XE#524]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7626/bat-atsm-2/igt@xe_create@create-execqueues-leak.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10358/bat-atsm-2/igt@xe_create@create-execqueues-leak.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-adlp-7: [FAIL][5] ([i915#2346]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7626/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10358/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 Build changes ------------- * IGT: IGT_7626 -> IGTPW_10358 * Linux: xe-556-d33ebd7511c2b53c5dc006e2daa25214fc8a5921 -> xe-557-668d13abebbbc3812de86be1f8477475e1d90728 IGTPW_10358: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10358/index.html IGT_7626: 154b7288552cd7ed3033f8ef396e88d0bd1b7646 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-556-d33ebd7511c2b53c5dc006e2daa25214fc8a5921: d33ebd7511c2b53c5dc006e2daa25214fc8a5921 xe-557-668d13abebbbc3812de86be1f8477475e1d90728: 668d13abebbbc3812de86be1f8477475e1d90728 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10358/index.html [-- Attachment #2: Type: text/html, Size: 3199 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-12-07 0:53 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-12-06 20:49 [igt-dev] [PATCH i-g-t 0/2] Add GT IP version query support Matt Roper 2023-12-06 20:49 ` [igt-dev] [PATCH i-g-t 1/2] drm-uapi/xe: Add IP version to GT query Matt Roper 2023-12-06 20:49 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe_query: Query and sanity-check GT ip versions Matt Roper 2023-12-06 23:02 ` [igt-dev] ✓ Fi.CI.BAT: success for Add GT IP version query support Patchwork 2023-12-07 0:32 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-12-07 0:53 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox