* [PATCH i-g-t v2 0/2] Use lowest mode for crc subtest
@ 2026-03-17 5:30 Santhosh Reddy Guddati
2026-03-17 5:30 ` [PATCH i-g-t v2 1/2] lib/igt_kms: Add lowclk and highclk modes Santhosh Reddy Guddati
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Santhosh Reddy Guddati @ 2026-03-17 5:30 UTC (permalink / raw)
To: igt-dev
Cc: karthik.b.s, arun.r.murthy, ramanaidu.naladala,
Santhosh Reddy Guddati
Introduce helpers to get lowest clk and highest clock modes.
Use low clock mode in async flip crc test.
Santhosh Reddy Guddati (2):
lib/igt_kms: Add lowclk and highclk modes
tests/kms_async_flips: Use lowest mode for crc subtest
lib/igt_kms.c | 36 ++++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 2 ++
tests/kms_async_flips.c | 5 +++--
3 files changed, 41 insertions(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH i-g-t v2 1/2] lib/igt_kms: Add lowclk and highclk modes 2026-03-17 5:30 [PATCH i-g-t v2 0/2] Use lowest mode for crc subtest Santhosh Reddy Guddati @ 2026-03-17 5:30 ` Santhosh Reddy Guddati 2026-03-24 9:18 ` Naladala, Ramanaidu 2026-03-17 5:30 ` [PATCH i-g-t v2 2/2] tests/kms_async_flips: Use lowest mode for crc subtest Santhosh Reddy Guddati ` (4 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Santhosh Reddy Guddati @ 2026-03-17 5:30 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, arun.r.murthy, ramanaidu.naladala, Santhosh Reddy Guddati Introduce functions to return low clock and high clock modes when connector supports multiple modes.This sorts connector modes by display clock rather than resolution. Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> --- lib/igt_kms.c | 36 ++++++++++++++++++++++++++++++++++++ lib/igt_kms.h | 2 ++ 2 files changed, 38 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 8c42909fc..2ba34b034 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -5198,6 +5198,42 @@ drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output) return lowest_mode; } +/** + * igt_output_get_lowclk_mode: + * @output: Target output + * + * Returns: A #drmModeModeInfo struct representing the mode with the lowest + * pixel clock. + */ +drmModeModeInfo *igt_output_get_lowclk_mode(igt_output_t *output) +{ + drmModeConnector *connector = output->config.connector; + + igt_assert_f(connector->count_modes > 0, "No modes for %s\n", igt_output_name(output)); + + igt_sort_connector_modes(connector, sort_drm_modes_by_clk_asc); + + return &connector->modes[0]; +} + +/** + * igt_output_get_highclk_mode: + * @output: Target output + * + * Returns: A #drmModeModeInfo struct representing the mode with the highest + * pixel clock. + */ +drmModeModeInfo *igt_output_get_highclk_mode(igt_output_t *output) +{ + drmModeConnector *connector = output->config.connector; + + igt_assert_f(connector->count_modes > 0, "No modes for %s\n", igt_output_name(output)); + + igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); + + return &connector->modes[0]; +} + /** * igt_output_override_mode: * @output: Output of which the mode will be overridden diff --git a/lib/igt_kms.h b/lib/igt_kms.h index b3def1e73..6c8e60f02 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -604,6 +604,8 @@ bool kmstest_mode_is_valid(const drmModeModeInfo *mode); drmModeModeInfo *igt_output_get_mode(igt_output_t *output); drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output); drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output); +drmModeModeInfo *igt_output_get_lowclk_mode(igt_output_t *output); +drmModeModeInfo *igt_output_get_highclk_mode(igt_output_t *output); void igt_output_override_mode(igt_output_t *output, const drmModeModeInfo *mode); int igt_output_preferred_vrefresh(igt_output_t *output); void igt_output_set_crtc(igt_output_t *output, igt_crtc_t *crtc); -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v2 1/2] lib/igt_kms: Add lowclk and highclk modes 2026-03-17 5:30 ` [PATCH i-g-t v2 1/2] lib/igt_kms: Add lowclk and highclk modes Santhosh Reddy Guddati @ 2026-03-24 9:18 ` Naladala, Ramanaidu 0 siblings, 0 replies; 10+ messages in thread From: Naladala, Ramanaidu @ 2026-03-24 9:18 UTC (permalink / raw) To: Santhosh Reddy Guddati, igt-dev; +Cc: karthik.b.s, arun.r.murthy Hi Santhosh, Imho, rewrite the git subject something like, "Add helpers to fetch lowest and highest pixel clock modes" On 3/17/2026 11:00 AM, Santhosh Reddy Guddati wrote: > Introduce functions to return low clock and high clock modes when > connector supports multiple modes.This sorts connector modes by display > clock rather than resolution. > > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > --- > lib/igt_kms.c | 36 ++++++++++++++++++++++++++++++++++++ > lib/igt_kms.h | 2 ++ > 2 files changed, 38 insertions(+) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 8c42909fc..2ba34b034 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -5198,6 +5198,42 @@ drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output) > return lowest_mode; > } > > +/** > + * igt_output_get_lowclk_mode: > + * @output: Target output > + * > + * Returns: A #drmModeModeInfo struct representing the mode with the lowest > + * pixel clock. > + */ > +drmModeModeInfo *igt_output_get_lowclk_mode(igt_output_t *output) > +{ > + drmModeConnector *connector = output->config.connector; > + > + igt_assert_f(connector->count_modes > 0, "No modes for %s\n", igt_output_name(output)); > + > + igt_sort_connector_modes(connector, sort_drm_modes_by_clk_asc); > + > + return &connector->modes[0]; > +} > + > +/** > + * igt_output_get_highclk_mode: > + * @output: Target output > + * > + * Returns: A #drmModeModeInfo struct representing the mode with the highest > + * pixel clock. > + */ > +drmModeModeInfo *igt_output_get_highclk_mode(igt_output_t *output) > +{ > + drmModeConnector *connector = output->config.connector; > + > + igt_assert_f(connector->count_modes > 0, "No modes for %s\n", igt_output_name(output)); > + > + igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); > + > + return &connector->modes[0]; > +} > + > /** > * igt_output_override_mode: > * @output: Output of which the mode will be overridden > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index b3def1e73..6c8e60f02 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -604,6 +604,8 @@ bool kmstest_mode_is_valid(const drmModeModeInfo *mode); > drmModeModeInfo *igt_output_get_mode(igt_output_t *output); > drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output); > drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output); > +drmModeModeInfo *igt_output_get_lowclk_mode(igt_output_t *output); > +drmModeModeInfo *igt_output_get_highclk_mode(igt_output_t *output); > void igt_output_override_mode(igt_output_t *output, const drmModeModeInfo *mode); > int igt_output_preferred_vrefresh(igt_output_t *output); > void igt_output_set_crtc(igt_output_t *output, igt_crtc_t *crtc); ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v2 2/2] tests/kms_async_flips: Use lowest mode for crc subtest 2026-03-17 5:30 [PATCH i-g-t v2 0/2] Use lowest mode for crc subtest Santhosh Reddy Guddati 2026-03-17 5:30 ` [PATCH i-g-t v2 1/2] lib/igt_kms: Add lowclk and highclk modes Santhosh Reddy Guddati @ 2026-03-17 5:30 ` Santhosh Reddy Guddati 2026-03-24 9:11 ` Naladala, Ramanaidu 2026-03-17 14:37 ` ✓ Xe.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Santhosh Reddy Guddati @ 2026-03-17 5:30 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, arun.r.murthy, ramanaidu.naladala, Santhosh Reddy Guddati Currently The CRC subtest uses mode[0] which maps to preffered high refresh mode. On panels with multiple modes, pick the lower mode to speed up crc test. V2: Rename and move the function to lib to re-use. (Ramanaidu) Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> --- tests/kms_async_flips.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index 4a2930968..e8a3da07c 100644 --- a/tests/kms_async_flips.c +++ b/tests/kms_async_flips.c @@ -819,8 +819,9 @@ static void test_crc(data_t *data) igt_display_commit2(&data->display, data->display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); - /* make things faster by using a smallish mode */ - mode = &data->output->config.connector->modes[0]; + /* make things faster by using a lower bandwidth mode */ + mode = igt_output_get_lowclk_mode(data->output); + igt_output_override_mode(data->output, mode); width = mode->hdisplay; height = mode->vdisplay; -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t v2 2/2] tests/kms_async_flips: Use lowest mode for crc subtest 2026-03-17 5:30 ` [PATCH i-g-t v2 2/2] tests/kms_async_flips: Use lowest mode for crc subtest Santhosh Reddy Guddati @ 2026-03-24 9:11 ` Naladala, Ramanaidu 0 siblings, 0 replies; 10+ messages in thread From: Naladala, Ramanaidu @ 2026-03-24 9:11 UTC (permalink / raw) To: Santhosh Reddy Guddati, igt-dev; +Cc: karthik.b.s, arun.r.murthy Hi Santhosh, On 3/17/2026 11:00 AM, Santhosh Reddy Guddati wrote: > Currently The CRC subtest uses mode[0] which maps to preffered high > refresh mode. On panels with multiple modes, pick the lower mode to > speed up crc test. Here your using a mode where pixel clock is low. Update in git subject and commit message. > > V2: Rename and move the function to lib to re-use. (Ramanaidu) > > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > --- > tests/kms_async_flips.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c > index 4a2930968..e8a3da07c 100644 > --- a/tests/kms_async_flips.c > +++ b/tests/kms_async_flips.c > @@ -819,8 +819,9 @@ static void test_crc(data_t *data) > > igt_display_commit2(&data->display, data->display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); > > - /* make things faster by using a smallish mode */ > - mode = &data->output->config.connector->modes[0]; > + /* make things faster by using a lower bandwidth mode */ > + mode = igt_output_get_lowclk_mode(data->output); > + igt_output_override_mode(data->output, mode); > width = mode->hdisplay; > height = mode->vdisplay; > Observed regression with your changes. Check once. ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for Use lowest mode for crc subtest 2026-03-17 5:30 [PATCH i-g-t v2 0/2] Use lowest mode for crc subtest Santhosh Reddy Guddati 2026-03-17 5:30 ` [PATCH i-g-t v2 1/2] lib/igt_kms: Add lowclk and highclk modes Santhosh Reddy Guddati 2026-03-17 5:30 ` [PATCH i-g-t v2 2/2] tests/kms_async_flips: Use lowest mode for crc subtest Santhosh Reddy Guddati @ 2026-03-17 14:37 ` Patchwork 2026-03-17 15:36 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-17 14:37 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1460 bytes --] == Series Details == Series: Use lowest mode for crc subtest URL : https://patchwork.freedesktop.org/series/163343/ State : success == Summary == CI Bug Log - changes from XEIGT_8806_BAT -> XEIGTPW_14787_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 13) ------------------------------ Missing (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_14787_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_waitfence@abstime: - bat-dg2-oem2: [PASS][1] -> [TIMEOUT][2] ([Intel XE#6506]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/bat-dg2-oem2/igt@xe_waitfence@abstime.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/bat-dg2-oem2/igt@xe_waitfence@abstime.html [Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506 Build changes ------------- * IGT: IGT_8806 -> IGTPW_14787 * Linux: xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820 -> xe-4734-b65472ae36d2a21ac0a1991618db1e9b09b1dcd0 IGTPW_14787: 14787 IGT_8806: 8806 xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820: a25d8c583e1e52bde77d371081a7c3fcd0a2e820 xe-4734-b65472ae36d2a21ac0a1991618db1e9b09b1dcd0: b65472ae36d2a21ac0a1991618db1e9b09b1dcd0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/index.html [-- Attachment #2: Type: text/html, Size: 2036 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for Use lowest mode for crc subtest 2026-03-17 5:30 [PATCH i-g-t v2 0/2] Use lowest mode for crc subtest Santhosh Reddy Guddati ` (2 preceding siblings ...) 2026-03-17 14:37 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-03-17 15:36 ` Patchwork 2026-03-18 18:01 ` ✗ i915.CI.Full: failure " Patchwork 2026-03-18 23:01 ` ✗ Xe.CI.FULL: " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-17 15:36 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4093 bytes --] == Series Details == Series: Use lowest mode for crc subtest URL : https://patchwork.freedesktop.org/series/163343/ State : success == Summary == CI Bug Log - changes from IGT_8806 -> IGTPW_14787 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/index.html Participating hosts (42 -> 39) ------------------------------ Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6 Known issues ------------ Here are the changes found in IGTPW_14787 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@late_gt_pm: - fi-cfl-8109u: [PASS][1] -> [DMESG-WARN][2] ([i915#13735]) +80 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html * igt@i915_selftest@live@workarounds: - bat-dg2-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-dg2-9/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/bat-dg2-9/igt@i915_selftest@live@workarounds.html - bat-dg2-14: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-dg2-14/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/bat-dg2-14/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@read-crc: - fi-cfl-8109u: [PASS][7] -> [DMESG-WARN][8] ([i915#13735] / [i915#15673]) +49 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html #### Possible fixes #### * igt@i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-mtlp-8/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/bat-mtlp-8/igt@i915_selftest@live.html - bat-dg2-8: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-dg2-8/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/bat-dg2-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-mtlp-9: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] +1 other test pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/bat-mtlp-9/igt@i915_selftest@live@workarounds.html - bat-arls-6: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-arls-6/igt@i915_selftest@live@workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/bat-arls-6/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8806 -> IGTPW_14787 * Linux: CI_DRM_18160 -> CI_DRM_18163 CI-20190529: 20190529 CI_DRM_18160: a25d8c583e1e52bde77d371081a7c3fcd0a2e820 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18163: b65472ae36d2a21ac0a1991618db1e9b09b1dcd0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14787: 14787 IGT_8806: 8806 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/index.html [-- Attachment #2: Type: text/html, Size: 5282 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for Use lowest mode for crc subtest 2026-03-17 5:30 [PATCH i-g-t v2 0/2] Use lowest mode for crc subtest Santhosh Reddy Guddati ` (3 preceding siblings ...) 2026-03-17 15:36 ` ✓ i915.CI.BAT: " Patchwork @ 2026-03-18 18:01 ` Patchwork 2026-03-18 23:01 ` ✗ Xe.CI.FULL: " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-18 18:01 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 147913 bytes --] == Series Details == Series: Use lowest mode for crc subtest URL : https://patchwork.freedesktop.org/series/163343/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18163_full -> IGTPW_14787_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14787_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14787_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_14787/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14787_full: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@crc-atomic: - shard-tglu: [PASS][1] -> [FAIL][2] +4 other tests fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-tglu-9/igt@kms_async_flips@crc-atomic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-2/igt@kms_async_flips@crc-atomic.html - shard-rkl: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-1/igt@kms_async_flips@crc-atomic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_async_flips@crc-atomic.html - shard-dg1: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg1-18/igt@kms_async_flips@crc-atomic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-12/igt@kms_async_flips@crc-atomic.html * igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][7] +2 other tests fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-1.html * igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-2: - shard-glk: [PASS][8] -> [FAIL][9] +6 other tests fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-glk4/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-2.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk5/igt@kms_async_flips@crc-atomic@pipe-a-hdmi-a-2.html * igt@kms_async_flips@crc-atomic@pipe-a-vga-1: - shard-snb: [PASS][10] -> [FAIL][11] +4 other tests fail [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-snb1/igt@kms_async_flips@crc-atomic@pipe-a-vga-1.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-snb7/igt@kms_async_flips@crc-atomic@pipe-a-vga-1.html * igt@kms_async_flips@crc-atomic@pipe-c-edp-1: - shard-mtlp: [PASS][12] -> [FAIL][13] +4 other tests fail [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-mtlp-7/igt@kms_async_flips@crc-atomic@pipe-c-edp-1.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-5/igt@kms_async_flips@crc-atomic@pipe-c-edp-1.html * igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][14] +3 other tests fail [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-12/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-3.html * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-3: - shard-dg2: [PASS][15] -> [FAIL][16] +4 other tests fail [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-6/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-3.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-6/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][17] +2 other tests fail [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk9/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html New tests --------- New tests have been introduced between CI_DRM_18163_full and IGTPW_14787_full: ### New IGT tests (8) ### * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-3: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-3: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-3: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-dp-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-dp-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-c-dp-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-3: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_14787_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#8411]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8411]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-5/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8411]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-3/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8411]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-18/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#11078]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#11078]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-8/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#3281]) +8 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-7/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#14544] / [i915#9323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html - shard-dg1: NOTRUN -> [SKIP][27] ([i915#9323]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-12/igt@gem_ccs@block-multicopy-compressed.html - shard-tglu: NOTRUN -> [SKIP][28] ([i915#9323]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-10/igt@gem_ccs@block-multicopy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#9323]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-8/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][30] ([i915#3555] / [i915#9323]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-9/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#9323]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#13008]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][33] ([i915#12392] / [i915#13356]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-3/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][34] ([i915#7697]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-10/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [PASS][35] -> [FAIL][36] ([i915#9561]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-8/igt@gem_ctx_freq@sysfs@gt0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][37] ([i915#13356]) +1 other test incomplete [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk1/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][38] ([i915#1099]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-snb4/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#280]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#280]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-8/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][41] ([i915#280]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-19/igt@gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][42] ([i915#280]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-5/igt@gem_ctx_sseu@mmap-args.html - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#280]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4525]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4525]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-3/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-6/igt@gem_exec_balancer@sliced.html * igt@gem_exec_big@single: - shard-rkl: [PASS][47] -> [DMESG-FAIL][48] ([i915#15478]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@gem_exec_big@single.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@gem_exec_big@single.html - shard-tglu: [PASS][49] -> [DMESG-FAIL][50] ([i915#15478]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-tglu-8/igt@gem_exec_big@single.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-3/igt@gem_exec_big@single.html - shard-mtlp: [PASS][51] -> [DMESG-FAIL][52] ([i915#15478]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-mtlp-5/igt@gem_exec_big@single.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-3/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#6334]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3539] / [i915#4852]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-1/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3281]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-14/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3281]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#14544] / [i915#3281]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-wc: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3281]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-4/igt@gem_exec_reloc@basic-write-wc.html * igt@gem_exec_schedule@preempt-queue: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4537] / [i915#4812]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4812]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-12/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0: - shard-rkl: [PASS][62] -> [INCOMPLETE][63] ([i915#13356]) +1 other test incomplete [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-8/igt@gem_exec_suspend@basic-s0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4860]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4860]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4860]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][67] ([i915#2190]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-9/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][68] ([i915#2190]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk8/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-glk: NOTRUN -> [SKIP][69] ([i915#4613]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk6/igt@gem_lmem_evict@dontneed-evict-race.html - shard-rkl: NOTRUN -> [SKIP][70] ([i915#4613] / [i915#7582]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#4613] / [i915#7582]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4613]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@gem_lmem_swapping@parallel-multi.html - shard-tglu: NOTRUN -> [SKIP][73] ([i915#4613]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-9/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#4613]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom: - shard-dg1: [PASS][75] -> [FAIL][76] ([i915#15734]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg1-19/igt@gem_lmem_swapping@smem-oom.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-12/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][77] -> [CRASH][78] ([i915#5493]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#14544] / [i915#4613]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gem_lmem_swapping@verify.html * igt@gem_mmap@bad-offset: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4083]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-19/igt@gem_mmap@bad-offset.html - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4083]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-7/igt@gem_mmap@bad-offset.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4077]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][83] -> [DMESG-WARN][84] ([i915#15478]) +1 other test dmesg-warn [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-mtlp-3/igt@gem_mmap_offset@clear-via-pagefault.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4083]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-7/igt@gem_mmap_wc@copy.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3282]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3282]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-13/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#3282]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3282]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-context-2: - shard-rkl: [PASS][90] -> [SKIP][91] ([i915#4270]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-1/igt@gem_pxp@create-regular-context-2.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4270]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4270]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-12/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@y-tiled: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#8428]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-3/igt@gem_render_copy@y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#5190] / [i915#8428]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4079]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-8/igt@gem_set_tiling_vs_gtt.html * igt@gem_tiled_pread_basic@basic: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#15657]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-1/igt@gem_tiled_pread_basic@basic.html - shard-rkl: NOTRUN -> [SKIP][98] ([i915#14544] / [i915#15656]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html - shard-dg1: NOTRUN -> [SKIP][99] ([i915#15657]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-17/igt@gem_tiled_pread_basic@basic.html - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#15657]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-3/igt@gem_tiled_pread_basic@basic.html * igt@gem_tiling_max_stride: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#4077]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-12/igt@gem_tiling_max_stride.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4077]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-7/igt@gem_tiling_max_stride.html * igt@gem_userptr_blits@access-control: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#3297]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#3297]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#3297]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][106] ([i915#13356] / [i915#14586]) +1 other test incomplete [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk8/igt@gem_workarounds@suspend-resume.html * igt@gem_workarounds@suspend-resume-context: - shard-glk11: NOTRUN -> [INCOMPLETE][107] ([i915#13356]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk11/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#2527] / [i915#2856]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-9/igt@gen9_exec_parse@basic-rejected.html - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#2856]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-invalid-length: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#2527] / [i915#2856]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#2527]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-17/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#2527]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#2856]) +5 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#14544] / [i915#2527]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html * igt@i915_drm_fdinfo@isolation@rcs0: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#14073]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-1/igt@i915_drm_fdinfo@isolation@rcs0.html - shard-dg1: NOTRUN -> [SKIP][116] ([i915#14073]) +5 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-17/igt@i915_drm_fdinfo@isolation@rcs0.html - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#14073]) +6 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-3/igt@i915_drm_fdinfo@isolation@rcs0.html * igt@i915_fb_tiling@basic-x-tiling: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#13786]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-6/igt@i915_fb_tiling@basic-x-tiling.html * igt@i915_module_load@fault-injection: - shard-dg2: NOTRUN -> [ABORT][119] ([i915#15342] / [i915#15481]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-8/igt@i915_module_load@fault-injection.html - shard-dg1: NOTRUN -> [ABORT][120] ([i915#11815] / [i915#15481]) +1 other test abort [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-16/igt@i915_module_load@fault-injection.html - shard-mtlp: NOTRUN -> [ABORT][121] ([i915#15342] / [i915#15481]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-1/igt@i915_module_load@fault-injection.html * igt@i915_module_load@fault-injection@__uc_init: - shard-dg2: NOTRUN -> [ABORT][122] ([i915#15481]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-8/igt@i915_module_load@fault-injection@__uc_init.html - shard-rkl: NOTRUN -> [SKIP][123] ([i915#15479]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@i915_module_load@fault-injection@__uc_init.html - shard-mtlp: NOTRUN -> [ABORT][124] ([i915#15481]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-1/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@i915_driver_mmio_probe: - shard-dg1: NOTRUN -> [INCOMPLETE][125] ([i915#15481]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-16/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-rkl: NOTRUN -> [ABORT][126] ([i915#15342]) +1 other test abort [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-snb: NOTRUN -> [ABORT][127] ([i915#15342]) +1 other test abort [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-snb4/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-tglu: NOTRUN -> [ABORT][128] ([i915#15342]) +1 other test abort [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-7/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-mtlp: NOTRUN -> [DMESG-WARN][129] ([i915#15342]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-1/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-dg2: NOTRUN -> [DMESG-WARN][130] ([i915#15342]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-8/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@fault-injection@intel_guc_ct_init: - shard-snb: NOTRUN -> [SKIP][131] +92 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-snb4/igt@i915_module_load@fault-injection@intel_guc_ct_init.html * igt@i915_module_load@fault-injection@uc_fw_rsa_data_create: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#15479]) +4 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-7/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html * igt@i915_module_load@reload-no-display: - shard-dg2: [PASS][133] -> [DMESG-WARN][134] ([i915#13029] / [i915#14545]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-1/igt@i915_module_load@reload-no-display.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@i915_module_load@reload-no-display.html - shard-dg1: [PASS][135] -> [DMESG-WARN][136] ([i915#13029] / [i915#14545]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg1-12/igt@i915_module_load@reload-no-display.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-12/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#8399]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-7/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#8399]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#6590]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu: NOTRUN -> [SKIP][140] ([i915#6590]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-2/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-glk: NOTRUN -> [SKIP][141] +366 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html - shard-rkl: NOTRUN -> [SKIP][142] ([i915#14544]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#11681] / [i915#6621]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#11681]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-19/igt@i915_pm_rps@thresholds-idle-park.html - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#11681]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4387]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-6/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][147] ([i915#4387]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][148] -> [SKIP][149] ([i915#7984]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-mtlp-4/igt@i915_power@sanity.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-5/igt@i915_power@sanity.html - shard-rkl: NOTRUN -> [SKIP][150] ([i915#7984]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#6245]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@i915_query@hwconfig_table.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-rkl: NOTRUN -> [ABORT][152] ([i915#15131]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [PASS][153] -> [INCOMPLETE][154] ([i915#4817]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-2/igt@i915_suspend@debugfs-reader.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][155] ([i915#4817]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk3/igt@i915_suspend@fence-restore-tiled2untiled.html - shard-rkl: NOTRUN -> [INCOMPLETE][156] ([i915#4817]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#7707]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@intel_hwmon@hwmon-read.html * igt@intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#7707]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-4/igt@intel_hwmon@hwmon-write.html * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-dg1: [PASS][159] -> [FAIL][160] ([i915#14888]) +1 other test fail [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg1-17/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-19/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk10: NOTRUN -> [INCOMPLETE][161] ([i915#12761]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk10: NOTRUN -> [INCOMPLETE][162] ([i915#12761] / [i915#14995]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][163] ([i915#1769]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][164] ([i915#1769] / [i915#3555]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk11: NOTRUN -> [SKIP][165] ([i915#1769]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][166] ([i915#1769] / [i915#3555]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][167] -> [FAIL][168] ([i915#15662]) +1 other test fail [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#5286]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#5286]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#4538] / [i915#5286]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-17/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#5286]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: [PASS][173] -> [FAIL][174] ([i915#15733] / [i915#5138]) +1 other test fail [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3638]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#3828]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3638]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-16/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html - shard-mtlp: NOTRUN -> [SKIP][178] +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#5190]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#6187]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#4538] / [i915#5190]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][182] +20 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#4538]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-tglu-1: NOTRUN -> [SKIP][184] +19 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#14098] / [i915#6095]) +53 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#14544] / [i915#6095]) +6 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#6095]) +166 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#6095]) +49 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#6095]) +80 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#6095]) +44 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-5/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#6095]) +19 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-5/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#12313]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3 (NEW): - shard-dg2: NOTRUN -> [SKIP][194] ([i915#10307] / [i915#6095]) +119 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#12805]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#12805]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][198] ([i915#14694] / [i915#15582]) +1 other test incomplete [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#6095]) +41 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#12313]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#13781]) +3 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#3742]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#13783]) +4 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2: NOTRUN -> [SKIP][204] +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-6/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#11151] / [i915#7828]) +5 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#11151] / [i915#14544] / [i915#7828]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#11151] / [i915#7828]) +7 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#11151] / [i915#7828]) +5 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-4/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#11151] / [i915#7828]) +4 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#11151] / [i915#7828]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-4/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#11151] / [i915#7828]) +4 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [FAIL][212] ([i915#7173]) +1 other test fail [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-10/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-hdcp14: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#6944]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#15330] / [i915#3299]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#15330]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#15330] / [i915#3116]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#15330]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-2/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@legacy-hdcp14: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#6944]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-8/igt@kms_content_protection@legacy-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][219] ([i915#6944]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-19/igt@kms_content_protection@legacy-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][220] ([i915#6944]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-5/igt@kms_content_protection@legacy-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#6944]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-7/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#6944] / [i915#9424]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#6944] / [i915#9424]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-17/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#6944] / [i915#7116] / [i915#7118]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: NOTRUN -> [FAIL][225] ([i915#13566]) +4 other tests fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#13049]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#3555]) +5 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-rkl: [PASS][228] -> [FAIL][229] ([i915#13566]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-tglu: [PASS][230] -> [FAIL][231] ([i915#13566]) +3 other tests fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-tglu-3/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-3/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#14544] / [i915#3555]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#13049]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#3555]) +5 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#13049]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-19/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#13049]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#3555]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-max-size.html - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8814]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][239] ([i915#12358] / [i915#14152] / [i915#7882]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk4/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][240] ([i915#12358] / [i915#14152]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#13046] / [i915#5354]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#4103] / [i915#4213]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#9833]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-rkl: NOTRUN -> [SKIP][244] ([i915#9723]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][245] ([i915#9723]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-13/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][246] ([i915#9723]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-10/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#3804]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#3804]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#3555]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-14/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_link_training@uhbr-mst: - shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#13748]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#3840]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-10/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#3840]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-5/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#3840]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#2065] / [i915#4854]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#1839]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-6/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][256] ([i915#1839]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-12/igt@kms_feature_discovery@display-2x.html - shard-tglu: NOTRUN -> [SKIP][257] ([i915#1839]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-2/igt@kms_feature_discovery@display-2x.html - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#1839]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-5/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#1839]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#3637] / [i915#9934]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#9934]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-8/igt@kms_flip@2x-blocking-wf_vblank.html - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#3637] / [i915#9934]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#9934]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#9934]) +8 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [PASS][265] -> [INCOMPLETE][266] ([i915#6113]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][267] ([i915#12745] / [i915#4839]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk9/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][268] ([i915#12745]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk9/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a2: - shard-rkl: NOTRUN -> [INCOMPLETE][269] ([i915#6113]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#15643]) +3 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#15643]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#15643]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-rkl: NOTRUN -> [SKIP][273] ([i915#14544] / [i915#15643]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#15643]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8810] / [i915#8813]) +2 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][276] ([i915#15643]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#8810] / [i915#8813]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#15643] / [i915#5190]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_force_connector_basic@force-edid: - shard-mtlp: [PASS][279] -> [SKIP][280] ([i915#15672]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-mtlp-7/igt@kms_force_connector_basic@force-edid.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#15104]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [PASS][282] -> [FAIL][283] ([i915#15389] / [i915#6880]) +1 other test fail [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#8708]) +13 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html - shard-rkl: NOTRUN -> [SKIP][285] ([i915#1825]) +24 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][286] +11 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#1825]) +5 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#5354]) +12 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][289] ([i915#10056]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk11/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#5439]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#15104]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#15102]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#15104]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-rkl: NOTRUN -> [SKIP][295] ([i915#14544] / [i915#15102]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-glk10: NOTRUN -> [SKIP][296] +133 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#8708]) +4 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][298] +49 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#15102] / [i915#3458]) +6 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][300] ([i915#15102] / [i915#3458]) +5 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#5439]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#15102]) +2 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#15102] / [i915#3023]) +16 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#8708]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#15102]) +13 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#15102]) +21 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdmi_inject@inject-4k: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#15725]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdr@bpc-switch: - shard-rkl: [PASS][308] -> [SKIP][309] ([i915#3555] / [i915#8228]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-1/igt@kms_hdr@bpc-switch.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [ABORT][310] ([i915#15132]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-1/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2.html * igt@kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#3555] / [i915#8228]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-5/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-swap: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#3555] / [i915#8228]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#3555] / [i915#8228]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][314] ([i915#3555] / [i915#8228]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#15460]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#15458]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#15458]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2: [PASS][318] -> [ABORT][319] ([i915#15132]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-5/igt@kms_pipe_crc_basic@suspend-read-crc.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-10/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-3: - shard-dg2: NOTRUN -> [ABORT][320] ([i915#15132]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-3.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#15709]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#14544] / [i915#15709]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#15709]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#15709]) +4 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#15709]) +3 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html - shard-rkl: NOTRUN -> [SKIP][326] ([i915#15709]) +4 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html - shard-dg1: NOTRUN -> [SKIP][327] ([i915#15709]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-18/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][328] ([i915#13026]) +1 other test incomplete [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk11: NOTRUN -> [FAIL][329] ([i915#10647] / [i915#12169]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [FAIL][330] ([i915#10647]) +1 other test fail [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][331] ([i915#10647] / [i915#12169]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][332] ([i915#10647]) +1 other test fail [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#8821]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-1/igt@kms_plane_lowres@tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#8821]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@2x-tiling-4: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#13958]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-5/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#13958]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#14259]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][338] ([i915#14259]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#13046] / [i915#5354] / [i915#9423]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-dg1: [PASS][340] -> [DMESG-WARN][341] ([i915#4423]) +1 other test dmesg-warn [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#15329]) +9 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#15329] / [i915#3555] / [i915#6953]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][344] ([i915#15329]) +3 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#14544] / [i915#5354]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#5354]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-4/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#9685]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-6/igt@kms_pm_dc@dc6-psr.html - shard-rkl: NOTRUN -> [SKIP][348] ([i915#9685]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html - shard-dg1: NOTRUN -> [SKIP][349] ([i915#9685]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-12/igt@kms_pm_dc@dc6-psr.html - shard-tglu: NOTRUN -> [SKIP][350] ([i915#9685]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#3828]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][352] -> [SKIP][353] ([i915#15073]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#15073]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#15073]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [PASS][356] -> [INCOMPLETE][357] ([i915#14419]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-5/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][358] ([i915#11520]) +4 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-19/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][359] ([i915#11520]) +6 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#11520]) +3 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][361] ([i915#11520]) +2 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-snb6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html - shard-tglu-1: NOTRUN -> [SKIP][362] ([i915#11520]) +4 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html - shard-mtlp: NOTRUN -> [SKIP][363] ([i915#12316]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#11520]) +5 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][365] ([i915#11520]) +11 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-glk10: NOTRUN -> [SKIP][366] ([i915#11520]) +4 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html - shard-rkl: NOTRUN -> [SKIP][367] ([i915#11520] / [i915#14544]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-glk11: NOTRUN -> [SKIP][368] ([i915#11520]) +4 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#9683]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][370] ([i915#1072] / [i915#9732]) +7 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-13/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#1072] / [i915#9732]) +11 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-7/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-dpms: - shard-mtlp: NOTRUN -> [SKIP][372] ([i915#9688]) +3 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-2/igt@kms_psr@fbc-psr2-dpms.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][373] ([i915#1072] / [i915#14544] / [i915#9732]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-suspend: - shard-glk11: NOTRUN -> [SKIP][374] +142 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk11/igt@kms_psr@pr-suspend.html * igt@kms_psr@psr2-cursor-blt: - shard-rkl: NOTRUN -> [SKIP][375] ([i915#1072] / [i915#9732]) +18 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][376] ([i915#9732]) +9 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][377] ([i915#9732]) +13 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-5/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][378] ([i915#15500]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk8/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk10: NOTRUN -> [INCOMPLETE][379] ([i915#15492]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][380] ([i915#5289]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][381] ([i915#5289]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#3555]) +2 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][383] ([i915#8623]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][384] ([i915#12276]) +1 other test incomplete [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vblank@ts-continuation-suspend: - shard-snb: [PASS][385] -> [INCOMPLETE][386] ([i915#12276]) +1 other test incomplete [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-snb5/igt@kms_vblank@ts-continuation-suspend.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-snb5/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][387] ([i915#11920]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-4/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][388] ([i915#9906]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-tglu: NOTRUN -> [SKIP][389] ([i915#9906]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@perf_pmu@frequency: - shard-dg2: NOTRUN -> [FAIL][390] ([i915#12549] / [i915#6806]) +1 other test fail [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-1/igt@perf_pmu@frequency.html * igt@perf_pmu@module-unload: - shard-tglu-1: NOTRUN -> [ABORT][391] ([i915#13029] / [i915#15778]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-1/igt@perf_pmu@module-unload.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#14121]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-3/igt@prime_mmap@test_aperture_limit.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][393] ([i915#3708] / [i915#4077]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][394] ([i915#3291] / [i915#3708]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-write-hang: - shard-dg1: NOTRUN -> [SKIP][395] ([i915#3708]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-13/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-tglu: NOTRUN -> [FAIL][396] ([i915#12910]) +9 other tests fail [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: NOTRUN -> [SKIP][397] ([i915#9917]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][398] ([i915#13356]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@kms: - shard-tglu: [DMESG-WARN][400] ([i915#13363]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-tglu-9/igt@gem_eio@kms.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-2/igt@gem_eio@kms.html * igt@gem_exec_suspend@basic-s4-devices: - shard-rkl: [ABORT][402] ([i915#7975]) -> [PASS][403] +1 other test pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@gem_exec_suspend@basic-s4-devices.html * igt@i915_module_load@reload-no-display: - shard-tglu: [DMESG-WARN][404] ([i915#13029] / [i915#14545]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-tglu-3/igt@i915_module_load@reload-no-display.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-4/igt@i915_module_load@reload-no-display.html * igt@i915_selftest@live@workarounds: - shard-dg2: [DMESG-FAIL][406] ([i915#12061]) -> [PASS][407] +1 other test pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-7/igt@i915_selftest@live@workarounds.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-5/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@fence-restore-untiled: - shard-glk: [INCOMPLETE][408] ([i915#4817]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-glk8/igt@i915_suspend@fence-restore-untiled.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk9/igt@i915_suspend@fence-restore-untiled.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1: - shard-glk: [FAIL][410] ([i915#14888]) -> [PASS][411] +1 other test pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-glk4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [ABORT][412] ([i915#15132]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-1/igt@kms_async_flips@async-flip-suspend-resume.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: [FAIL][414] ([i915#5956]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [INCOMPLETE][416] ([i915#15582]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [FAIL][418] ([i915#13566]) -> [PASS][419] +1 other test pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][420] ([i915#13566]) -> [PASS][421] +3 other tests pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [INCOMPLETE][422] ([i915#9878]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1: - shard-snb: [INCOMPLETE][424] ([i915#12314] / [i915#12745] / [i915#4839]) -> [PASS][425] +1 other test pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - shard-dg2: [FAIL][426] ([i915#15389] / [i915#6880]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_hdr@static-toggle: - shard-dg2: [SKIP][428] ([i915#3555] / [i915#8228]) -> [PASS][429] +1 other test pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-6/igt@kms_hdr@static-toggle.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-10/igt@kms_hdr@static-toggle.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: [INCOMPLETE][430] ([i915#14412]) -> [PASS][431] +1 other test pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][432] ([i915#15073]) -> [PASS][433] +3 other tests pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][434] ([i915#15073]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@system-suspend-idle: - shard-rkl: [INCOMPLETE][436] ([i915#14419]) -> [PASS][437] [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [INCOMPLETE][438] ([i915#12276]) -> [PASS][439] +1 other test pass [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@kms_vblank@ts-continuation-dpms-suspend.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@wait-idle-hang: - shard-glk: [SKIP][440] -> [PASS][441] [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-glk2/igt@kms_vblank@wait-idle-hang.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk9/igt@kms_vblank@wait-idle-hang.html * igt@perf_pmu@busy-double-start@vcs1: - shard-mtlp: [FAIL][442] ([i915#4349]) -> [PASS][443] +2 other tests pass [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-mtlp-7/igt@perf_pmu@busy-double-start@vcs1.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-8/igt@perf_pmu@busy-double-start@vcs1.html #### Warnings #### * igt@gem_close_race@multigpu-basic-process: - shard-rkl: [SKIP][444] ([i915#7697]) -> [SKIP][445] ([i915#14544] / [i915#7697]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html * igt@gem_exec_balancer@parallel: - shard-rkl: [SKIP][446] ([i915#4525]) -> [SKIP][447] ([i915#14544] / [i915#4525]) +1 other test skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-2/igt@gem_exec_balancer@parallel.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: [SKIP][448] ([i915#14544] / [i915#4525]) -> [SKIP][449] ([i915#4525]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_reloc@basic-concurrent0: - shard-rkl: [SKIP][450] ([i915#14544] / [i915#3281]) -> [SKIP][451] ([i915#3281]) +1 other test skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@gem_exec_reloc@basic-concurrent0.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-rkl: [SKIP][452] ([i915#3281]) -> [SKIP][453] ([i915#14544] / [i915#3281]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: [SKIP][454] ([i915#4613]) -> [SKIP][455] ([i915#14544] / [i915#4613]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: [SKIP][456] ([i915#14544] / [i915#4613]) -> [SKIP][457] ([i915#4613]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-rkl: [SKIP][458] ([i915#3282]) -> [SKIP][459] ([i915#14544] / [i915#3282]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@gem_partial_pwrite_pread@write-uncached.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [SKIP][460] ([i915#14544] / [i915#3282]) -> [SKIP][461] ([i915#3282]) +1 other test skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: [SKIP][462] ([i915#8411]) -> [SKIP][463] ([i915#14544] / [i915#8411]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: [SKIP][464] ([i915#3297] / [i915#3323]) -> [SKIP][465] ([i915#14544] / [i915#3297] / [i915#3323]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: [SKIP][466] ([i915#3297]) -> [SKIP][467] ([i915#14544] / [i915#3297]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-rkl: [SKIP][468] ([i915#2527]) -> [SKIP][469] ([i915#14544] / [i915#2527]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-4/igt@gen9_exec_parse@basic-rejected-ctx-param.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: [SKIP][470] ([i915#14498]) -> [SKIP][471] ([i915#14498] / [i915#14544]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-idle.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html * igt@intel_hwmon@hwmon-write: - shard-rkl: [SKIP][472] ([i915#7707]) -> [SKIP][473] ([i915#14544] / [i915#7707]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-4/igt@intel_hwmon@hwmon-write.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@intel_hwmon@hwmon-write.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#5286]) -> [SKIP][475] ([i915#5286]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [SKIP][476] ([i915#5286]) -> [SKIP][477] ([i915#14544] / [i915#5286]) +2 other tests skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg1: [SKIP][478] ([i915#3638]) -> [SKIP][479] ([i915#3638] / [i915#4423]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg1-17/igt@kms_big_fb@linear-16bpp-rotate-90.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-17/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: [SKIP][480] ([i915#3638]) -> [SKIP][481] ([i915#14544] / [i915#3638]) +1 other test skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-8/igt@kms_big_fb@linear-32bpp-rotate-90.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: [SKIP][482] ([i915#14544] / [i915#3638]) -> [SKIP][483] ([i915#3638]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [SKIP][484] -> [SKIP][485] ([i915#14544]) +5 other tests skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][486] ([i915#12313] / [i915#14544]) -> [SKIP][487] ([i915#12313]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][488] ([i915#6095]) -> [SKIP][489] ([i915#14544] / [i915#6095]) +7 other tests skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][490] ([i915#14098] / [i915#6095]) -> [SKIP][491] ([i915#14098] / [i915#14544] / [i915#6095]) +10 other tests skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-rkl: [SKIP][492] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][493] ([i915#14098] / [i915#6095]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_chamelium_color@ctm-max: - shard-rkl: [SKIP][494] ([i915#14544]) -> [SKIP][495] +4 other tests skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_chamelium_color@ctm-max.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-4/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: [SKIP][496] ([i915#11151] / [i915#7828]) -> [SKIP][497] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-rkl: [SKIP][498] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][499] ([i915#11151] / [i915#7828]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-fast.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: [SKIP][500] ([i915#15330] / [i915#3116]) -> [SKIP][501] ([i915#14544] / [i915#15330] / [i915#3116]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-rkl: [SKIP][502] ([i915#6944]) -> [SKIP][503] ([i915#14544] / [i915#6944]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-8/igt@kms_content_protection@lic-type-0-hdcp14.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][504] ([i915#6944] / [i915#9424]) -> [SKIP][505] ([i915#9433]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg1-19/igt@kms_content_protection@mei-interface.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-rkl: [SKIP][506] ([i915#3555]) -> [SKIP][507] ([i915#14544] / [i915#3555]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: [SKIP][508] ([i915#13049] / [i915#14544]) -> [SKIP][509] ([i915#13049]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: [SKIP][510] ([i915#14544] / [i915#4103]) -> [SKIP][511] ([i915#4103]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: [SKIP][512] ([i915#13707]) -> [SKIP][513] ([i915#13707] / [i915#14544]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: [SKIP][514] ([i915#3555] / [i915#3840]) -> [SKIP][515] ([i915#14544] / [i915#3555] / [i915#3840]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@kms_dsc@dsc-with-bpc.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: [SKIP][516] ([i915#14544] / [i915#9337]) -> [SKIP][517] ([i915#9337]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-rkl: [SKIP][518] ([i915#9934]) -> [SKIP][519] ([i915#14544] / [i915#9934]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-2/igt@kms_flip@2x-flip-vs-rmfb.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-flip-vs-suspend: - shard-rkl: [SKIP][520] ([i915#14544] / [i915#9934]) -> [SKIP][521] ([i915#9934]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_flip@2x-flip-vs-suspend.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-4/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][522] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][523] ([i915#12745] / [i915#4839] / [i915#6113]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: [INCOMPLETE][524] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][525] ([i915#12745]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-rkl: [SKIP][526] ([i915#14544] / [i915#15643]) -> [SKIP][527] ([i915#15643]) +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: [SKIP][528] ([i915#15643]) -> [SKIP][529] ([i915#14544] / [i915#15643]) +2 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite: - shard-rkl: [SKIP][530] ([i915#14544] / [i915#15102]) -> [SKIP][531] ([i915#15102]) +1 other test skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [SKIP][532] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][533] ([i915#15102] / [i915#3458]) +1 other test skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][534] ([i915#15102] / [i915#3458]) -> [SKIP][535] ([i915#10433] / [i915#15102] / [i915#3458]) +4 other tests skip [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: [SKIP][536] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][537] ([i915#15102] / [i915#3023]) +5 other tests skip [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][538] ([i915#15102]) -> [SKIP][539] ([i915#14544] / [i915#15102]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: [SKIP][540] ([i915#1825]) -> [SKIP][541] ([i915#14544] / [i915#1825]) +12 other tests skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: [SKIP][542] ([i915#14544] / [i915#1825]) -> [SKIP][543] ([i915#1825]) +6 other tests skip [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: [SKIP][544] ([i915#15102] / [i915#3023]) -> [SKIP][545] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: [SKIP][546] ([i915#3555] / [i915#8228]) -> [ABORT][547] ([i915#15132]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-5/igt@kms_hdr@bpc-switch-suspend.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][548] ([i915#12713]) -> [SKIP][549] ([i915#1187] / [i915#12713]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-mtlp-6/igt@kms_hdr@brightness-with-hdr.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: [SKIP][550] ([i915#12713]) -> [SKIP][551] ([i915#1187] / [i915#12713]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-4/igt@kms_hdr@brightness-with-hdr.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: [SKIP][552] ([i915#13688]) -> [SKIP][553] ([i915#13688] / [i915#14544]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-8/igt@kms_joiner@basic-max-non-joiner.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][554] ([i915#14544] / [i915#15815]) -> [SKIP][555] ([i915#15815]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-rkl: [SKIP][556] ([i915#15709]) -> [SKIP][557] ([i915#14544] / [i915#15709]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: [SKIP][558] ([i915#14544] / [i915#15329]) -> [SKIP][559] ([i915#15329]) +6 other tests skip [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: [SKIP][560] ([i915#14544] / [i915#15329] / [i915#3555]) -> [SKIP][561] ([i915#15329] / [i915#3555]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][562] ([i915#15128]) -> [SKIP][563] ([i915#15739]) [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][564] ([i915#3828]) -> [SKIP][565] ([i915#9340]) [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: [SKIP][566] ([i915#14544] / [i915#8430]) -> [SKIP][567] ([i915#8430]) [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-1/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: [SKIP][568] ([i915#14544] / [i915#6524]) -> [SKIP][569] ([i915#6524]) [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: [SKIP][570] ([i915#6524]) -> [SKIP][571] ([i915#14544] / [i915#6524]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@kms_prime@d3hot.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-rkl: [SKIP][572] ([i915#11520] / [i915#14544]) -> [SKIP][573] ([i915#11520]) +1 other test skip [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-dg1: [SKIP][574] ([i915#11520]) -> [SKIP][575] ([i915#11520] / [i915#4423]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-dg1-19/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-dg1-19/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][576] ([i915#11520]) -> [SKIP][577] ([i915#11520] / [i915#14544]) +1 other test skip [576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: [SKIP][578] ([i915#9683]) -> [SKIP][579] ([i915#14544] / [i915#9683]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@pr-cursor-mmap-cpu: - shard-rkl: [SKIP][580] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][581] ([i915#1072] / [i915#9732]) +5 other tests skip [580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_psr@pr-cursor-mmap-cpu.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@kms_psr@pr-cursor-mmap-cpu.html * igt@kms_psr@psr-suspend: - shard-rkl: [SKIP][582] ([i915#1072] / [i915#9732]) -> [SKIP][583] ([i915#1072] / [i915#14544] / [i915#9732]) +11 other tests skip [582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@kms_psr@psr-suspend.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@kms_psr@psr-suspend.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: [SKIP][584] ([i915#14544] / [i915#3555]) -> [SKIP][585] ([i915#3555]) [584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_vrr@negative-basic: - shard-rkl: [SKIP][586] ([i915#14544] / [i915#3555] / [i915#9906]) -> [SKIP][587] ([i915#3555] / [i915#9906]) [586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@kms_vrr@negative-basic.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-3/igt@kms_vrr@negative-basic.html * igt@prime_vgem@fence-read-hang: - shard-rkl: [SKIP][588] ([i915#14544] / [i915#3708]) -> [SKIP][589] ([i915#3708]) [588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-6/igt@prime_vgem@fence-read-hang.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-5/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: [SKIP][590] ([i915#9917]) -> [SKIP][591] ([i915#14544] / [i915#9917]) +1 other test skip [590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18163/shard-rkl-7/igt@sriov_basic@bind-unbind-vf.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15734 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8806 -> IGTPW_14787 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18163: b65472ae36d2a21ac0a1991618db1e9b09b1dcd0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14787: 14787 IGT_8806: 8806 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14787/index.html [-- Attachment #2: Type: text/html, Size: 197351 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.FULL: failure for Use lowest mode for crc subtest 2026-03-17 5:30 [PATCH i-g-t v2 0/2] Use lowest mode for crc subtest Santhosh Reddy Guddati ` (4 preceding siblings ...) 2026-03-18 18:01 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-03-18 23:01 ` Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-03-18 23:01 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 40865 bytes --] == Series Details == Series: Use lowest mode for crc subtest URL : https://patchwork.freedesktop.org/series/163343/ State : failure == Summary == CI Bug Log - changes from XEIGT_8806_FULL -> XEIGTPW_14787_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14787_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14787_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14787_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@crc-atomic@pipe-a-edp-1: - shard-lnl: [PASS][1] -> [FAIL][2] +3 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-4/igt@kms_async_flips@crc-atomic@pipe-a-edp-1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-lnl-7/igt@kms_async_flips@crc-atomic@pipe-a-edp-1.html * igt@kms_pm_rpm@drm-resources-equal: - shard-bmg: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@kms_pm_rpm@drm-resources-equal.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-3/igt@kms_pm_rpm@drm-resources-equal.html #### Warnings #### * igt@xe_exec_system_allocator@fault-benchmark: - shard-bmg: [FAIL][5] ([Intel XE#7550]) -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@xe_exec_system_allocator@fault-benchmark.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-3/igt@xe_exec_system_allocator@fault-benchmark.html Known issues ------------ Here are the changes found in XEIGTPW_14787_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#7445]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-2/igt@intel_hwmon@hwmon-write.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-3/igt@intel_hwmon@hwmon-write.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +4 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p: - shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#7621]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-6/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-9/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-7/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_chamelium_color@degamma: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-4/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2252]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-1/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][19] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +2 other tests fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-4/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2341]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-7/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2291]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2291] / [Intel XE#7343]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2291] / [Intel XE#7343]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [PASS][27] -> [FAIL][28] ([Intel XE#7571]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#4354]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-3/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#4422] / [Intel XE#7442]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#4156] / [Intel XE#7425]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2373] / [Intel XE#7344]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-7/igt@kms_feature_discovery@display-2x.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [PASS][35] -> [FAIL][36] ([Intel XE#3098]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#2316]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7179]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2311]) +10 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7061] / [Intel XE#7356]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4141]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2352] / [Intel XE#7399]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2313]) +11 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_hdr@static-swap: - shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#1503]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@kms_hdr@static-swap.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_hdr@static-swap.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#6901]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-8/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#7086]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7283]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#5020] / [Intel XE#7348]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-4/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-9/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2391] / [Intel XE#6927]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#7340]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1489]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr@fbc-psr-basic: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-1/igt@kms_psr@fbc-psr-basic.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#1435]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@kms_setmode@clone-exclusive-crtc.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_sharpness_filter@filter-scaler-downscale: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#6503]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_sharpness_filter@filter-scaler-downscale.html * igt@kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1499]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-7/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2168] / [Intel XE#7444]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_vrr@lobf.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-4/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@basic-close: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#4837]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-9/igt@xe_eudebug@basic-close.html * igt@xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-7/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt@xe_eudebug_online@pagefault-write-stress: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#6665] / [Intel XE#6681]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-1/igt@xe_eudebug_online@pagefault-write-stress.html * igt@xe_eudebug_sriov@deny-eudebug: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-3/igt@xe_eudebug_sriov@deny-eudebug.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][69] -> [INCOMPLETE][70] ([Intel XE#6321]) +1 other test incomplete [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-small-external-multi-queue-cm: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#7140]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-6/igt@xe_evict@evict-small-external-multi-queue-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#7136]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-4/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html * igt@xe_exec_multi_queue@few-execs-preempt-mode-basic: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#6874]) +10 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-basic.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma: - shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#5625]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-lnl-6/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#7138]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html * igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#6964]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-2/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-4/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_pat@pat-index-xelpg: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2236]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-3/igt@xe_pat@pat-index-xelpg.html * igt@xe_query@multigpu-query-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#944]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-8/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-bmg: [PASS][82] -> [FAIL][83] ([Intel XE#5937]) +1 other test fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-9/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html #### Possible fixes #### * igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing: - shard-bmg: [INCOMPLETE][84] ([Intel XE#1727] / [Intel XE#6819] / [Intel XE#6904]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: [SKIP][86] ([Intel XE#2291]) -> [PASS][87] +1 other test pass [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-9/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [DMESG-WARN][88] ([Intel XE#5354]) -> [PASS][89] +1 other test pass [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [SKIP][90] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][92] ([Intel XE#1340]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][94] ([Intel XE#4294]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-2/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][96] ([Intel XE#2316]) -> [PASS][97] +6 other tests pass [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [FAIL][98] ([Intel XE#301]) -> [PASS][99] +1 other test pass [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip@wf_vblank-ts-check: - shard-bmg: [FAIL][100] ([Intel XE#3098]) -> [PASS][101] +1 other test pass [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-3/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [SKIP][102] ([Intel XE#7308]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@kms_hdmi_inject@inject-audio.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][104] ([Intel XE#1503]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_hdr@invalid-hdr.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-8/igt@kms_hdr@invalid-hdr.html * igt@kms_setmode@basic: - shard-bmg: [FAIL][106] ([Intel XE#6361]) -> [PASS][107] +2 other tests pass [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_setmode@basic.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-1/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-edp-1: - shard-lnl: [FAIL][108] ([Intel XE#6361]) -> [PASS][109] +1 other test pass [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-4/igt@kms_setmode@basic@pipe-a-edp-1.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-lnl-3/igt@kms_setmode@basic@pipe-a-edp-1.html * igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter: - shard-lnl: [DMESG-WARN][110] -> [PASS][111] +1 other test pass [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-1/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-lnl-7/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][112] ([Intel XE#4459]) -> [PASS][113] +1 other test pass [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_exec_system_allocator@many-stride-mmap-race: - shard-bmg: [INCOMPLETE][114] -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-mmap-race.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-mmap-race.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [FAIL][116] ([Intel XE#6569]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@xe_sriov_flr@flr-each-isolation.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-2/igt@xe_sriov_flr@flr-each-isolation.html #### Warnings #### * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-bmg: [FAIL][118] ([Intel XE#3304] / [Intel XE#7374]) -> [SKIP][119] ([Intel XE#7194]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-2/igt@kms_content_protection@atomic-dpms-hdcp14.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@atomic-hdcp14: - shard-bmg: [FAIL][120] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][121] ([Intel XE#7194]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_content_protection@atomic-hdcp14.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-3/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [SKIP][122] ([Intel XE#2341]) -> [FAIL][123] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_content_protection@lic-type-0.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: [FAIL][124] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][125] ([Intel XE#7194]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@kms_content_protection@uevent-hdcp14.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][126] ([Intel XE#2311]) -> [SKIP][127] ([Intel XE#2312]) +13 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][128] ([Intel XE#4141]) -> [SKIP][129] ([Intel XE#2312]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][130] ([Intel XE#2312]) -> [SKIP][131] ([Intel XE#4141]) +8 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][132] ([Intel XE#2312]) -> [SKIP][133] ([Intel XE#2311]) +13 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][134] ([Intel XE#2312]) -> [SKIP][135] ([Intel XE#2313]) +13 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][136] ([Intel XE#2313]) -> [SKIP][137] ([Intel XE#2312]) +13 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: [SKIP][138] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][139] ([Intel XE#4596]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][140] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][141] ([Intel XE#2426] / [Intel XE#5848]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][142] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][143] ([Intel XE#2426] / [Intel XE#5848]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6904 [Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319 [Intel XE#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320 [Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344 [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348 [Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445 [Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464 [Intel XE#7550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7550 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8806 -> IGTPW_14787 * Linux: xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820 -> xe-4734-b65472ae36d2a21ac0a1991618db1e9b09b1dcd0 IGTPW_14787: 14787 IGT_8806: 8806 xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820: a25d8c583e1e52bde77d371081a7c3fcd0a2e820 xe-4734-b65472ae36d2a21ac0a1991618db1e9b09b1dcd0: b65472ae36d2a21ac0a1991618db1e9b09b1dcd0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14787/index.html [-- Attachment #2: Type: text/html, Size: 45973 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v1] tests/kms_async_flips: Use lowest mode for crc subtest @ 2026-03-09 8:24 Santhosh Reddy Guddati 2026-03-17 4:56 ` [PATCH i-g-t v2 1/2] lib/igt_kms: Add lowclk and highclk modes Santhosh Reddy Guddati 0 siblings, 1 reply; 10+ messages in thread From: Santhosh Reddy Guddati @ 2026-03-09 8:24 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, arun.r.murthy, Santhosh Reddy Guddati Currently The CRC subtest uses mode[0] which maps to preffered high refresh mode. On panels with multiple modes, pick the lower mode to speed up crc test. Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> --- tests/kms_async_flips.c | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index a42407363..8639e2299 100644 --- a/tests/kms_async_flips.c +++ b/tests/kms_async_flips.c @@ -825,6 +825,17 @@ static void paint_fb(data_t *data, struct igt_fb *fb, } } +static drmModeModeInfoPtr get_lower_mode_for_crc(igt_output_t *output) +{ + drmModeConnector *connector = output->config.connector; + + igt_assert(connector->count_modes > 0); + + igt_sort_connector_modes(connector, sort_drm_modes_by_clk_asc); + + return &connector->modes[0]; +} + static void test_crc(data_t *data) { unsigned int frame = 0; @@ -834,8 +845,8 @@ static void test_crc(data_t *data) igt_display_commit2(&data->display, data->display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY); - /* make things faster by using a smallish mode */ - mode = &data->output->config.connector->modes[0]; + /* make things faster by using a lower bandwidth mode */ + mode = get_lower_mode_for_crc(data->output); width = mode->hdisplay; height = mode->vdisplay; -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v2 1/2] lib/igt_kms: Add lowclk and highclk modes 2026-03-09 8:24 [PATCH i-g-t v1] tests/kms_async_flips: " Santhosh Reddy Guddati @ 2026-03-17 4:56 ` Santhosh Reddy Guddati 0 siblings, 0 replies; 10+ messages in thread From: Santhosh Reddy Guddati @ 2026-03-17 4:56 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, arun.r.murthy, ramanaidu.naladala, Santhosh Reddy Guddati Introduce functions to return low clock and high clock modes when connector supports multiple modes.This sorts connector modes by display clock rather than resolution. Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> --- lib/igt_kms.c | 36 ++++++++++++++++++++++++++++++++++++ lib/igt_kms.h | 2 ++ 2 files changed, 38 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 8c42909fc..2ba34b034 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -5198,6 +5198,42 @@ drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output) return lowest_mode; } +/** + * igt_output_get_lowclk_mode: + * @output: Target output + * + * Returns: A #drmModeModeInfo struct representing the mode with the lowest + * pixel clock. + */ +drmModeModeInfo *igt_output_get_lowclk_mode(igt_output_t *output) +{ + drmModeConnector *connector = output->config.connector; + + igt_assert_f(connector->count_modes > 0, "No modes for %s\n", igt_output_name(output)); + + igt_sort_connector_modes(connector, sort_drm_modes_by_clk_asc); + + return &connector->modes[0]; +} + +/** + * igt_output_get_highclk_mode: + * @output: Target output + * + * Returns: A #drmModeModeInfo struct representing the mode with the highest + * pixel clock. + */ +drmModeModeInfo *igt_output_get_highclk_mode(igt_output_t *output) +{ + drmModeConnector *connector = output->config.connector; + + igt_assert_f(connector->count_modes > 0, "No modes for %s\n", igt_output_name(output)); + + igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); + + return &connector->modes[0]; +} + /** * igt_output_override_mode: * @output: Output of which the mode will be overridden diff --git a/lib/igt_kms.h b/lib/igt_kms.h index b3def1e73..6c8e60f02 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -604,6 +604,8 @@ bool kmstest_mode_is_valid(const drmModeModeInfo *mode); drmModeModeInfo *igt_output_get_mode(igt_output_t *output); drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output); drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output); +drmModeModeInfo *igt_output_get_lowclk_mode(igt_output_t *output); +drmModeModeInfo *igt_output_get_highclk_mode(igt_output_t *output); void igt_output_override_mode(igt_output_t *output, const drmModeModeInfo *mode); int igt_output_preferred_vrefresh(igt_output_t *output); void igt_output_set_crtc(igt_output_t *output, igt_crtc_t *crtc); -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-03-24 9:19 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-17 5:30 [PATCH i-g-t v2 0/2] Use lowest mode for crc subtest Santhosh Reddy Guddati 2026-03-17 5:30 ` [PATCH i-g-t v2 1/2] lib/igt_kms: Add lowclk and highclk modes Santhosh Reddy Guddati 2026-03-24 9:18 ` Naladala, Ramanaidu 2026-03-17 5:30 ` [PATCH i-g-t v2 2/2] tests/kms_async_flips: Use lowest mode for crc subtest Santhosh Reddy Guddati 2026-03-24 9:11 ` Naladala, Ramanaidu 2026-03-17 14:37 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-03-17 15:36 ` ✓ i915.CI.BAT: " Patchwork 2026-03-18 18:01 ` ✗ i915.CI.Full: failure " Patchwork 2026-03-18 23:01 ` ✗ Xe.CI.FULL: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2026-03-09 8:24 [PATCH i-g-t v1] tests/kms_async_flips: " Santhosh Reddy Guddati 2026-03-17 4:56 ` [PATCH i-g-t v2 1/2] lib/igt_kms: Add lowclk and highclk modes Santhosh Reddy Guddati
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox