* [igt-dev] [PATCH] tests/kms_plane: Handle hw without legacy gamma support
@ 2023-07-28 20:17 Rob Clark
2023-07-28 21:16 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Rob Clark @ 2023-07-28 20:17 UTC (permalink / raw)
To: igt-dev; +Cc: Rob Clark
From: Rob Clark <robdclark@chromium.org>
Skip the tests which require legacy gamma, instead of failing, if the hw
does not support legacy gamma.
Signed-off-by: Rob Clark <robdclark@chromium.org>
---
tests/kms_plane.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index 67cff61d6cd1..9f72a5bceae9 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -463,7 +463,7 @@ static void set_legacy_lut(data_t *data, enum pipe pipe,
igt_pipe_t *pipe_obj = &data->display.pipes[pipe];
drmModeCrtc *crtc;
uint16_t *lut;
- int i, lut_size;
+ int i, lut_size, ret;
crtc = drmModeGetCrtc(data->drm_fd, pipe_obj->crtc_id);
lut_size = crtc->gamma_size;
@@ -474,8 +474,10 @@ static void set_legacy_lut(data_t *data, enum pipe pipe,
for (i = 0; i < lut_size; i++)
lut[i] = (i * 0xffff / (lut_size - 1)) & mask;
- igt_assert_eq(drmModeCrtcSetGamma(data->drm_fd, pipe_obj->crtc_id,
- lut_size, lut, lut, lut), 0);
+ ret = drmModeCrtcSetGamma(data->drm_fd, pipe_obj->crtc_id,
+ lut_size, lut, lut, lut);
+ igt_require(ret != -ENOSYS);
+ igt_assert_eq(ret, 0);
free(lut);
}
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane: Handle hw without legacy gamma support 2023-07-28 20:17 [igt-dev] [PATCH] tests/kms_plane: Handle hw without legacy gamma support Rob Clark @ 2023-07-28 21:16 ` Patchwork 2023-07-28 21:41 ` [igt-dev] ○ CI.xeBAT: info " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-07-28 21:16 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6430 bytes --] == Series Details == Series: tests/kms_plane: Handle hw without legacy gamma support URL : https://patchwork.freedesktop.org/series/121551/ State : success == Summary == CI Bug Log - changes from CI_DRM_13438 -> IGTPW_9483 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-rpls-2 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9483 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][1] ([i915#7077] / [i915#8668]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/bat-rplp-1/igt@i915_pm_backlight@basic-brightness@edp-1.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-8: [PASS][2] -> [DMESG-FAIL][3] ([i915#7059]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@mman: - bat-rpls-1: [PASS][4] -> [TIMEOUT][5] ([i915#6794] / [i915#7392]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/bat-rpls-1/igt@i915_selftest@live@mman.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/bat-rpls-1/igt@i915_selftest@live@mman.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [PASS][6] -> [DMESG-FAIL][7] ([i915#8497]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/bat-mtlp-8/igt@i915_selftest@live@requests.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-mtlp-8: [PASS][8] -> [DMESG-WARN][9] ([i915#6367]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/bat-mtlp-8/igt@i915_selftest@live@slpc.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/bat-mtlp-8/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-rpls-1: [PASS][10] -> [WARN][11] ([i915#8747]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-cfl-8700k: [FAIL][12] ([i915#7940]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/fi-cfl-8700k/igt@i915_pm_rpm@basic-pci-d3-state.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/fi-cfl-8700k/igt@i915_pm_rpm@basic-pci-d3-state.html - bat-adlp-9: [FAIL][14] ([i915#7940]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-cfl-8109u: [FAIL][16] ([i915#7940]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/fi-cfl-8109u/igt@i915_pm_rpm@basic-pci-d3-state.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/fi-cfl-8109u/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-cfl-guc: [FAIL][18] ([i915#7940]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rpm@module-reload: - fi-skl-guc: [FAIL][20] ([i915#7940]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/fi-skl-guc/igt@i915_pm_rpm@module-reload.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/fi-skl-guc/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-6: [DMESG-FAIL][22] ([i915#7059]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html #### Warnings #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-kbl-guc: [FAIL][24] ([i915#7940]) -> [SKIP][25] ([fdo#109271]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: [ABORT][26] ([i915#8260] / [i915#8668]) -> [SKIP][27] ([i915#3555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7409 -> IGTPW_9483 CI-20190529: 20190529 CI_DRM_13438: 62c097793a37d523b854a7ccff29aa3faedc46b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9483: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/index.html IGT_7409: 7409 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/index.html [-- Attachment #2: Type: text/html, Size: 7816 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for tests/kms_plane: Handle hw without legacy gamma support 2023-07-28 20:17 [igt-dev] [PATCH] tests/kms_plane: Handle hw without legacy gamma support Rob Clark 2023-07-28 21:16 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-07-28 21:41 ` Patchwork 2023-07-28 22:36 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2023-08-07 15:02 ` [igt-dev] [PATCH] " Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-07-28 21:41 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 353 bytes --] == Series Details == Series: tests/kms_plane: Handle hw without legacy gamma support URL : https://patchwork.freedesktop.org/series/121551/ State : info == Summary == Participating hosts: bat-pvc-2 bat-atsm-2 bat-dg2-oem2 bat-adlp-7 Missing hosts results[0]: Results: [IGTPW_9483](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9483/index.html) [-- Attachment #2: Type: text/html, Size: 869 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_plane: Handle hw without legacy gamma support 2023-07-28 20:17 [igt-dev] [PATCH] tests/kms_plane: Handle hw without legacy gamma support Rob Clark 2023-07-28 21:16 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-07-28 21:41 ` [igt-dev] ○ CI.xeBAT: info " Patchwork @ 2023-07-28 22:36 ` Patchwork 2023-08-07 15:02 ` [igt-dev] [PATCH] " Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-07-28 22:36 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 73025 bytes --] == Series Details == Series: tests/kms_plane: Handle hw without legacy gamma support URL : https://patchwork.freedesktop.org/series/121551/ State : success == Summary == CI Bug Log - changes from CI_DRM_13438_full -> IGTPW_9483_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_9483_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9483_full, please notify your bug team 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_9483/index.html Participating hosts (10 -> 10) ------------------------------ Additional (1): shard-rkl0 Missing (1): pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9483_full: ### IGT changes ### #### Warnings #### * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-snb: [SKIP][1] ([fdo#109271]) -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-snb2/igt@gem_pxp@reject-modify-context-protection-off-2.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-snb7/igt@gem_pxp@reject-modify-context-protection-off-2.html Known issues ------------ Here are the changes found in IGTPW_9483_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-5/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8414]) +11 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-6/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +20 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-5/igt@drm_fdinfo@busy-idle-check-all@vcs0.html * igt@feature_discovery@display-4x: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#1839]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-5/igt@feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][7] ([i915#1839]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-6/igt@feature_discovery@display-4x.html * igt@feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#658]) +3 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-3/igt@feature_discovery@psr1.html * igt@gem_barrier_race@remote-request@rcs0: - shard-glk: [PASS][9] -> [ABORT][10] ([i915#7461] / [i915#8211]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-glk9/igt@gem_barrier_race@remote-request@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-glk6/igt@gem_barrier_race@remote-request@rcs0.html - shard-tglu: [PASS][11] -> [ABORT][12] ([i915#8211] / [i915#8234]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-tglu-5/igt@gem_barrier_race@remote-request@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-9/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#5325]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#5325]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][15] -> [FAIL][16] ([i915#6268]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hang: - shard-snb: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#1099]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-snb2/igt@gem_ctx_persistence@engines-hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][20] ([i915#7975] / [i915#8213]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-7/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-dg2: [PASS][21] -> [INCOMPLETE][22] ([i915#7892]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg2-2/igt@gem_eio@kms.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-3/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][23] ([i915#8898]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-snb2/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][24] -> [FAIL][25] ([i915#5784]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg1-12/igt@gem_eio@unwedge-stress.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-14/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-sync: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4771]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-3/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-19/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-1/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: [PASS][29] -> [FAIL][30] ([i915#4475]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-5/igt@gem_exec_capture@pi@vcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_endless@dispatch@vcs1: - shard-dg2: [PASS][31] -> [TIMEOUT][32] ([i915#3778] / [i915#7016]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg2-1/igt@gem_exec_endless@dispatch@vcs1.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-5/igt@gem_exec_endless@dispatch@vcs1.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: NOTRUN -> [FAIL][33] ([i915#2842]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-6/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][34] -> [FAIL][35] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-12/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [PASS][37] -> [FAIL][38] ([i915#2842]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-16/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-1/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +2 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-2/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][42] ([fdo#112283]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-3/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +4 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-wc-active.html - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4860]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@parallel-multi: - shard-apl: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-apl1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4083]) +3 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-7/igt@gem_mmap@bad-size.html * igt@gem_mmap@short-mmap: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4083]) +5 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-2/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +4 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-11/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4077]) +2 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-read-distinct.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4077]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-17/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-19/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3282]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html - shard-rkl: NOTRUN -> [SKIP][60] ([i915#3282]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][61] ([i915#2658]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-snb4/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-buffer: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4270]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-2/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4270]) +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4270]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-12/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4270]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@y-tiled-ccs-to-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8428]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-x-tiled.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4079]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-16/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [PASS][68] -> [FAIL][69] ([i915#7916]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-8/igt@gem_userptr_blits@nohangcheck.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-6/igt@gem_userptr_blits@nohangcheck.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-3/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-4/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@unaligned-access: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#2527]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-17/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@unaligned-jump: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#2856]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-3/igt@gen9_exec_parse@unaligned-jump.html - shard-rkl: NOTRUN -> [SKIP][74] ([i915#2527]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-2/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [PASS][75] -> [FAIL][76] ([i915#7069]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-8/igt@i915_hangman@gt-engine-hang@vcs0.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-8/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][77] -> [DMESG-WARN][78] ([i915#7061] / [i915#8617]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [PASS][79] -> [FAIL][80] ([i915#3989] / [i915#454]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-tglu-4/igt@i915_pm_dc@dc6-dpms.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-5/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][81] -> [SKIP][82] ([fdo#109271]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-apl6/igt@i915_pm_dc@dc9-dpms.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-apl7/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg2: [PASS][83] -> [SKIP][84] ([i915#1937]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg2-10/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@cursor: - shard-tglu: [PASS][85] -> [FAIL][86] ([i915#7940]) +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-tglu-3/igt@i915_pm_rpm@cursor.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-2/igt@i915_pm_rpm@cursor.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][87] -> [SKIP][88] ([i915#1397]) +4 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-rkl-2/igt@i915_pm_rpm@dpms-non-lpsp.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg1: NOTRUN -> [SKIP][89] ([fdo#109506]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-16/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@i2c: - shard-dg2: NOTRUN -> [FAIL][90] ([i915#8717]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-2/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#1397]) +1 similar issue [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-3/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [PASS][92] -> [SKIP][93] ([i915#1397]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg1-16/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#6621]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_query@query-topology-known-pci-ids: - shard-mtlp: NOTRUN -> [SKIP][95] ([fdo#109303]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-1/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [PASS][96] -> [FAIL][97] ([fdo#103375]) +2 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg2-3/igt@i915_suspend@basic-s3-without-i915.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4212]) +1 similar issue [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-3/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][99] ([i915#8247]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][100] ([i915#8247]) +3 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-3/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][101] ([i915#8247]) +3 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-18/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#6228]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind@pipe-a-edp-1: - shard-mtlp: [PASS][103] -> [DMESG-WARN][104] ([i915#1982]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-1/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind@pipe-a-edp-1.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-2/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: NOTRUN -> [FAIL][105] ([i915#5138]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#5286]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][107] ([fdo#111614]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-6/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [FAIL][108] ([i915#3743]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#111614]) +2 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-8/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3638]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-12/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-mtlp: [PASS][111] -> [FAIL][112] ([i915#3743]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6187]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#5190]) +5 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +5 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html - shard-rkl: NOTRUN -> [SKIP][116] ([fdo#110723]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-12/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][118] ([fdo#111615]) +4 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#3734] / [i915#5354] / [i915#6095]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-6/igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#5354] / [i915#6095]) +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-12/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-1/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#3886] / [i915#6095]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-8/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#3689] / [i915#3886] / [i915#5354]) +2 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#5354] / [i915#6095]) +5 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-1/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#3689] / [i915#5354]) +8 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-3/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][126] ([fdo#109271] / [i915#3886]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-apl7/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) +1 similar issue [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-3/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#3689] / [i915#5354] / [i915#6095]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-2/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5354]) +9 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-6/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#6095]) +17 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-5/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_ccs.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4087] / [i915#7213]) +3 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#4087]) +3 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-6/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][133] ([fdo#111827]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-2/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#7828]) +4 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-5/igt@kms_chamelium_frames@dp-frame-dump.html - shard-rkl: NOTRUN -> [SKIP][135] ([i915#7828]) +2 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-4/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#7828]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#7828]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-15/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#7828]) +2 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#7118]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-3/igt@kms_content_protection@atomic-dpms.html - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6944]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][141] ([i915#7173]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#3555]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#3555]) +7 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-rkl: NOTRUN -> [SKIP][144] ([i915#3555]) +1 similar issue [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3359]) +1 similar issue [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#8814]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3359]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][148] ([fdo#111767] / [i915#3546]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-apl: NOTRUN -> [SKIP][149] ([fdo#109271] / [fdo#111767]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-apl7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html - shard-dg2: NOTRUN -> [SKIP][150] ([fdo#109274] / [fdo#111767] / [i915#5354]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3546]) +1 similar issue [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][152] -> [FAIL][153] ([i915#2346]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#8588]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-snb: NOTRUN -> [SKIP][155] ([fdo#109271] / [fdo#111767]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-snb4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3637]) +2 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-3/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-dg2: NOTRUN -> [SKIP][157] ([fdo#109274]) +4 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-apl: NOTRUN -> [SKIP][158] ([fdo#109271]) +61 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-apl3/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank@d-edp1: - shard-mtlp: [PASS][159] -> [FAIL][160] ([i915#79]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-8/igt@kms_flip@flip-vs-expired-vblank@d-edp1.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-8/igt@kms_flip@flip-vs-expired-vblank@d-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#2672]) +1 similar issue [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#2672]) +2 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#8708]) +11 similar issues [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [PASS][164] -> [FAIL][165] ([i915#6880]) +1 similar issue [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [FAIL][166] ([i915#6880]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][167] ([fdo#109280]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#5460]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#3458]) +1 similar issue [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3458]) +9 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html - shard-rkl: NOTRUN -> [SKIP][171] ([i915#3023]) +2 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][172] ([fdo#111825]) +1 similar issue [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#5354]) +24 similar issues [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#8708]) +2 similar issues [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][175] ([fdo#110189]) +1 similar issue [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][176] ([fdo#111825] / [i915#1825]) +12 similar issues [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#1825]) +14 similar issues [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][178] ([fdo#111825]) +3 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#8708]) +1 similar issue [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#6118]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-10/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8228]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#4816]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#109289]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-7/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - shard-mtlp: [PASS][184] -> [FAIL][185] ([i915#1623]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-8/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-snb: NOTRUN -> [DMESG-WARN][186] ([i915#8841]) +4 similar issues [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-snb1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#5176]) +7 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#5176]) +3 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#5176]) +7 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#5235]) +11 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#5235]) +11 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#5235]) +3 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#6524] / [i915#6805]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-2/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][194] ([fdo#111068] / [i915#658]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][195] ([fdo#109271] / [i915#658]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-apl1/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#4348]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#4884]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-15/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_vblank@pipe-c-query-busy-hang: - shard-snb: NOTRUN -> [SKIP][198] ([fdo#109271]) +264 similar issues [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-snb2/igt@kms_vblank@pipe-c-query-busy-hang.html * igt@kms_vblank@pipe-d-query-idle-hang: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#4070] / [i915#533] / [i915#6768]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-4/igt@kms_vblank@pipe-d-query-idle-hang.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [PASS][200] -> [FAIL][201] ([i915#8724]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg2-10/igt@perf@enable-disable@0-rcs0.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#2434]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-11/igt@perf@mi-rpc.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][203] -> [FAIL][204] ([i915#7484]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@per-context-mode-unprivileged: - shard-dg2: NOTRUN -> [SKIP][205] ([fdo#109289]) +2 similar issues [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-5/igt@perf@per-context-mode-unprivileged.html - shard-rkl: NOTRUN -> [SKIP][206] ([i915#2435]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-4/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8850]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-1/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#8516]) +1 similar issue [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-6/igt@perf_pmu@rc6-all-gts.html * igt@sysfs_heartbeat_interval@mixed@ccs0: - shard-mtlp: [PASS][209] -> [ABORT][210] ([i915#8552]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@ccs0.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@ccs0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [PASS][211] -> [FAIL][212] ([i915#1731]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@vecs0.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-mtlp: [PASS][213] -> [FAIL][214] ([i915#6015]) +2 similar issues [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-3/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2575]) +5 similar issues [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-8/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_perfmon@destroy-invalid-perfmon: - shard-rkl: NOTRUN -> [SKIP][216] ([fdo#109315]) +2 similar issues [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-7/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#2575]) +7 similar issues [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-1/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@vc4/vc4_label_bo@set-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#7711]) +3 similar issues [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-3/igt@vc4/vc4_label_bo@set-bad-handle.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#7711]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-18/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#7711]) +2 similar issues [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-6/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html * igt@vc4/vc4_tiling@set-bad-modifier: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#2575]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-5/igt@vc4/vc4_tiling@set-bad-modifier.html * igt@vc4/vc4_tiling@set-get: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#7711]) +3 similar issues [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-2/igt@vc4/vc4_tiling@set-get.html #### Possible fixes #### * igt@gem_busy@close-race: - shard-tglu: [INCOMPLETE][223] -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-tglu-10/igt@gem_busy@close-race.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-10/igt@gem_busy@close-race.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][225] ([i915#6268]) -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html - shard-mtlp: [FAIL][227] ([i915#6121] / [i915#7916]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-8/igt@gem_ctx_exec@basic-nohangcheck.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-7/igt@gem_ctx_exec@basic-nohangcheck.html * {igt@gem_ctx_freq@sysfs@gt0}: - shard-dg2: [FAIL][229] ([i915#6786]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-10/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_persistence@saturated-hostile@vecs0: - shard-mtlp: [FAIL][231] ([i915#7816]) -> [PASS][232] +2 similar issues [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-3/igt@gem_ctx_persistence@saturated-hostile@vecs0.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-2/igt@gem_ctx_persistence@saturated-hostile@vecs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][233] ([i915#2842]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_spin_batch@user-each: - shard-apl: [FAIL][235] ([i915#2898]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-apl3/igt@gem_spin_batch@user-each.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-apl6/igt@gem_spin_batch@user-each.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [ABORT][237] ([i915#5566]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-apl2/igt@gen9_exec_parse@allowed-single.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-apl3/igt@gen9_exec_parse@allowed-single.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [FAIL][239] ([i915#8691]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [SKIP][241] ([i915#4281]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-4/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-dg1: [FAIL][243] ([i915#3591]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@basic-pci-d3-state: - shard-dg1: [FAIL][245] ([i915#7691]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg1-17/igt@i915_pm_rpm@basic-pci-d3-state.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@gem-execbuf-stress@smem0: - shard-dg1: [FAIL][247] ([i915#7940]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg1-12/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-15/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html * igt@i915_pm_rpm@system-suspend: - shard-tglu: [FAIL][249] ([i915#7940]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-tglu-6/igt@i915_pm_rpm@system-suspend.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-tglu-10/igt@i915_pm_rpm@system-suspend.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][251] ([i915#5334]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-apl7/igt@i915_selftest@live@gt_heartbeat.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-apl7/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_mocs: - shard-mtlp: [DMESG-FAIL][253] ([i915#7059]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-5/igt@i915_selftest@live@gt_mocs.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-1/igt@i915_selftest@live@gt_mocs.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][255] ([fdo#103375]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1: - shard-apl: [ABORT][257] ([i915#180]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-apl3/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-apl7/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][259] ([i915#2346]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [FAIL][261] ([i915#6880]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-dg2: [FAIL][263] ([fdo#103375]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg2-5/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-11/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@perf_pmu@busy-hang@rcs0: - shard-rkl: [ABORT][265] -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-rkl-4/igt@perf_pmu@busy-hang@rcs0.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-4/igt@perf_pmu@busy-hang@rcs0.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg2: [FAIL][267] ([i915#5234]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg2-8/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-6/igt@perf_pmu@most-busy-idle-check-all@rcs0.html #### Warnings #### * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-mtlp: [TIMEOUT][269] ([i915#7392]) -> [ABORT][270] ([i915#7392] / [i915#8131]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-mtlp-4/igt@gem_exec_whisper@basic-contexts-priority-all.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [INCOMPLETE][271] ([i915#4528] / [i915#4817]) -> [DMESG-WARN][272] ([i915#8841]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-snb6/igt@i915_suspend@basic-s3-without-i915.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-snb1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][273] ([i915#7118]) -> [SKIP][274] ([i915#7118] / [i915#7162]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg2-10/igt@kms_content_protection@type1.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][275] ([fdo#110189] / [i915#3955]) -> [SKIP][276] ([i915#3955]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][277] ([i915#1072] / [i915#4078]) -> [SKIP][278] ([i915#1072]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg1-12/igt@kms_psr@cursor_plane_move.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-14/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][279] ([i915#1072]) -> [SKIP][280] ([i915#1072] / [i915#4078]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13438/shard-dg1-19/igt@kms_psr@primary_page_flip.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/shard-dg1-18/igt@kms_psr@primary_page_flip.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#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [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 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [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#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2898]: https://gitlab.freedesktop.org/drm/intel/issues/2898 [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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [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#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#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [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#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [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#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [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#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [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#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#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [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#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [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#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7916]: https://gitlab.freedesktop.org/drm/intel/issues/7916 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8234]: https://gitlab.freedesktop.org/drm/intel/issues/8234 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [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#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7409 -> IGTPW_9483 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13438: 62c097793a37d523b854a7ccff29aa3faedc46b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9483: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/index.html IGT_7409: 7409 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9483/index.html [-- Attachment #2: Type: text/html, Size: 86701 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH] tests/kms_plane: Handle hw without legacy gamma support 2023-07-28 20:17 [igt-dev] [PATCH] tests/kms_plane: Handle hw without legacy gamma support Rob Clark ` (2 preceding siblings ...) 2023-07-28 22:36 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork @ 2023-08-07 15:02 ` Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Kamil Konieczny @ 2023-08-07 15:02 UTC (permalink / raw) To: igt-dev; +Cc: Rob Clark Hi Rob, On 2023-07-28 at 13:17:23 -0700, Rob Clark wrote: > From: Rob Clark <robdclark@chromium.org> > > Skip the tests which require legacy gamma, instead of failing, if the hw > does not support legacy gamma. > > Signed-off-by: Rob Clark <robdclark@chromium.org> > --- > tests/kms_plane.c | 8 +++++--- > 1 file changed, 5 insertions(+), 3 deletions(-) > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c > index 67cff61d6cd1..9f72a5bceae9 100644 > --- a/tests/kms_plane.c > +++ b/tests/kms_plane.c > @@ -463,7 +463,7 @@ static void set_legacy_lut(data_t *data, enum pipe pipe, > igt_pipe_t *pipe_obj = &data->display.pipes[pipe]; > drmModeCrtc *crtc; > uint16_t *lut; > - int i, lut_size; > + int i, lut_size, ret; > > crtc = drmModeGetCrtc(data->drm_fd, pipe_obj->crtc_id); > lut_size = crtc->gamma_size; If HW do not support it then lut_size should be zero so igt_require could happen here instead of below? Regards, Kamil > @@ -474,8 +474,10 @@ static void set_legacy_lut(data_t *data, enum pipe pipe, > for (i = 0; i < lut_size; i++) > lut[i] = (i * 0xffff / (lut_size - 1)) & mask; > > - igt_assert_eq(drmModeCrtcSetGamma(data->drm_fd, pipe_obj->crtc_id, > - lut_size, lut, lut, lut), 0); > + ret = drmModeCrtcSetGamma(data->drm_fd, pipe_obj->crtc_id, > + lut_size, lut, lut, lut); > + igt_require(ret != -ENOSYS); > + igt_assert_eq(ret, 0); > > free(lut); > } > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-08-07 15:03 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-07-28 20:17 [igt-dev] [PATCH] tests/kms_plane: Handle hw without legacy gamma support Rob Clark 2023-07-28 21:16 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-07-28 21:41 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-07-28 22:36 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2023-08-07 15:02 ` [igt-dev] [PATCH] " Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox