* [PATCH i-g-t 0/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4
@ 2024-11-18 8:18 Pranay Samala
2024-11-18 8:18 ` [PATCH i-g-t 1/2] " Pranay Samala
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Pranay Samala @ 2024-11-18 8:18 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala
Intel display version 20 onwards, Tile4 no longer can be used with
horizontal flip.
Bspec: 69853
Pranay Samala (2):
tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do
hflip with tile4
HAX: Do not merge
tests/intel-ci/fast-feedback.testlist | 5 +++++
tests/intel-ci/xe-fast-feedback.testlist | 5 +++++
tests/intel/kms_big_fb.c | 15 +++++++++++++++
3 files changed, 25 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH i-g-t 1/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 2024-11-18 8:18 [PATCH i-g-t 0/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Pranay Samala @ 2024-11-18 8:18 ` Pranay Samala 2024-11-21 19:19 ` Sharma, Swati2 2024-11-18 8:18 ` [PATCH i-g-t 2/2] HAX: Do not merge Pranay Samala ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Pranay Samala @ 2024-11-18 8:18 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala Intel display version 20 onwards, Tile4 no longer can be used with horizontal flip. Bspec: 69853 Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/intel/kms_big_fb.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tests/intel/kms_big_fb.c b/tests/intel/kms_big_fb.c index 7da3d12d4..ab44a9a42 100644 --- a/tests/intel/kms_big_fb.c +++ b/tests/intel/kms_big_fb.c @@ -965,6 +965,19 @@ static const struct { { 0, "" }, { IGT_REFLECT_X, "-hflip" }, }; + +static bool test_requirements(data_t *data, int l) +{ + /* Intel display version 20 onwards cannot do reflect-x with tile4 */ + if (!(!is_intel_device(data->drm_fd) || + intel_display_ver(intel_get_drm_devid(data->drm_fd)) < 20 || + !(fliptab[l].flip == IGT_REFLECT_X && + data->modifier == I915_FORMAT_MOD_4_TILED))) + return false; + + return true; +} + igt_main { igt_fixture { @@ -1123,6 +1136,8 @@ igt_main igt_describe("test async flip on maximum hardware supported stride length for given bpp and modifiers."); igt_subtest_f("%s-max-hw-stride-%dbpp-rotate-%d%s-async-flip", modifiers[i].name, formats[j].bpp, rotations[k].angle, fliptab[l].flipname) { + igt_require_f(test_requirements(&data, l), + "Can't use reflect-x with Tile4 on intel display version 20+\n"); igt_require(igt_has_drm_cap(data.drm_fd, DRM_CAP_ASYNC_PAGE_FLIP)); data.max_hw_fb_width = min(data.hw_stride / (formats[j].bpp >> 3), data.max_fb_width); test_scanout(&data); -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 2024-11-18 8:18 ` [PATCH i-g-t 1/2] " Pranay Samala @ 2024-11-21 19:19 ` Sharma, Swati2 2024-11-22 5:12 ` B, Jeevan 0 siblings, 1 reply; 8+ messages in thread From: Sharma, Swati2 @ 2024-11-21 19:19 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: karthik.b.s, sameer.lattannavar LGTM Reviewed-by: Swati Sharma <swati2.sharma@intel.com> On 18-11-2024 01:48 pm, Pranay Samala wrote: > Intel display version 20 onwards, Tile4 no longer can be used with > horizontal flip. > > Bspec: 69853 > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/intel/kms_big_fb.c | 15 +++++++++++++++ > 1 file changed, 15 insertions(+) > > diff --git a/tests/intel/kms_big_fb.c b/tests/intel/kms_big_fb.c > index 7da3d12d4..ab44a9a42 100644 > --- a/tests/intel/kms_big_fb.c > +++ b/tests/intel/kms_big_fb.c > @@ -965,6 +965,19 @@ static const struct { > { 0, "" }, > { IGT_REFLECT_X, "-hflip" }, > }; > + > +static bool test_requirements(data_t *data, int l) > +{ > + /* Intel display version 20 onwards cannot do reflect-x with tile4 */ > + if (!(!is_intel_device(data->drm_fd) || > + intel_display_ver(intel_get_drm_devid(data->drm_fd)) < 20 || > + !(fliptab[l].flip == IGT_REFLECT_X && > + data->modifier == I915_FORMAT_MOD_4_TILED))) > + return false; > + > + return true; > +} > + > igt_main > { > igt_fixture { > @@ -1123,6 +1136,8 @@ igt_main > igt_describe("test async flip on maximum hardware supported stride length for given bpp and modifiers."); > igt_subtest_f("%s-max-hw-stride-%dbpp-rotate-%d%s-async-flip", modifiers[i].name, > formats[j].bpp, rotations[k].angle, fliptab[l].flipname) { > + igt_require_f(test_requirements(&data, l), > + "Can't use reflect-x with Tile4 on intel display version 20+\n"); > igt_require(igt_has_drm_cap(data.drm_fd, DRM_CAP_ASYNC_PAGE_FLIP)); > data.max_hw_fb_width = min(data.hw_stride / (formats[j].bpp >> 3), data.max_fb_width); > test_scanout(&data); ^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH i-g-t 1/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 2024-11-21 19:19 ` Sharma, Swati2 @ 2024-11-22 5:12 ` B, Jeevan 0 siblings, 0 replies; 8+ messages in thread From: B, Jeevan @ 2024-11-22 5:12 UTC (permalink / raw) To: Sharma, Swati2, Samala, Pranay, igt-dev@lists.freedesktop.org Cc: B S, Karthik, Lattannavar, Sameer Please fix the warn. before merging ../tests/intel/kms_big_fb.c: In function ‘test_requirements’: ../tests/intel/kms_big_fb.c:969:39: warning: declaration of ‘data’ shadows a global declaration [-Wshadow] 969 | static bool test_requirements(data_t *data, int l) | ~~~~~~~~^~~~ ../tests/intel/kms_big_fb.c:928:15: note: shadowed declaration is here 928 | static data_t data = {}; | ^~~~ [24/24] Generating intel-ci-tests with a custom command. > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Sharma, > Swati2 > Sent: Friday, November 22, 2024 12:50 AM > To: Samala, Pranay <pranay.samala@intel.com>; igt- > dev@lists.freedesktop.org > Cc: B S, Karthik <karthik.b.s@intel.com>; Lattannavar, Sameer > <sameer.lattannavar@intel.com> > Subject: Re: [PATCH i-g-t 1/2] tests/intel/kms_big_fb: Intel display version 20 > onwards doesn't do hflip with tile4 > > LGTM > > Reviewed-by: Swati Sharma <swati2.sharma@intel.com> > > On 18-11-2024 01:48 pm, Pranay Samala wrote: > > Intel display version 20 onwards, Tile4 no longer can be used with > > horizontal flip. > > > > Bspec: 69853 > > > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > > --- > > tests/intel/kms_big_fb.c | 15 +++++++++++++++ > > 1 file changed, 15 insertions(+) > > > > diff --git a/tests/intel/kms_big_fb.c b/tests/intel/kms_big_fb.c index > > 7da3d12d4..ab44a9a42 100644 > > --- a/tests/intel/kms_big_fb.c > > +++ b/tests/intel/kms_big_fb.c > > @@ -965,6 +965,19 @@ static const struct { > > { 0, "" }, > > { IGT_REFLECT_X, "-hflip" }, > > }; > > + > > +static bool test_requirements(data_t *data, int l) { > > + /* Intel display version 20 onwards cannot do reflect-x with tile4 */ > > + if (!(!is_intel_device(data->drm_fd) || > > + intel_display_ver(intel_get_drm_devid(data->drm_fd)) < 20 || > > + !(fliptab[l].flip == IGT_REFLECT_X && > > + data->modifier == I915_FORMAT_MOD_4_TILED))) > > + return false; > > + > > + return true; > > +} > > + > > igt_main > > { > > igt_fixture { > > @@ -1123,6 +1136,8 @@ igt_main > > igt_describe("test async flip on > maximum hardware supported stride length for given bpp and modifiers."); > > igt_subtest_f("%s-max-hw-stride- > %dbpp-rotate-%d%s-async-flip", modifiers[i].name, > > formats[j].bpp, > rotations[k].angle, fliptab[l].flipname) { > > + > igt_require_f(test_requirements(&data, l), > > + "Can't use > reflect-x with Tile4 on intel display > > +version 20+\n"); > > > igt_require(igt_has_drm_cap(data.drm_fd, > DRM_CAP_ASYNC_PAGE_FLIP)); > > > data.max_hw_fb_width = min(data.hw_stride / (formats[j].bpp >> 3), > data.max_fb_width); > > test_scanout(&data); ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t 2/2] HAX: Do not merge 2024-11-18 8:18 [PATCH i-g-t 0/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Pranay Samala 2024-11-18 8:18 ` [PATCH i-g-t 1/2] " Pranay Samala @ 2024-11-18 8:18 ` Pranay Samala 2024-11-18 20:16 ` ✗ CI.xeBAT: failure for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Pranay Samala @ 2024-11-18 8:18 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/intel-ci/fast-feedback.testlist | 5 +++++ tests/intel-ci/xe-fast-feedback.testlist | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index be0965110..00d2d6729 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -1,6 +1,11 @@ # Try to load the driver if it's not available yet. igt@i915_module_load@load +igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip +igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip +igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip +igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip + # Keep alphabetically sorted by default igt@core_auth@basic-auth igt@debugfs_test@read_all_entries diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 727be9230..20c4e9d81 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,6 +1,11 @@ # Should be the first test igt@xe_module_load@load +igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip +igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip +igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip +igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip + igt@fbdev@eof igt@fbdev@info igt@fbdev@nullptr -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✗ CI.xeBAT: failure for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 2024-11-18 8:18 [PATCH i-g-t 0/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Pranay Samala 2024-11-18 8:18 ` [PATCH i-g-t 1/2] " Pranay Samala 2024-11-18 8:18 ` [PATCH i-g-t 2/2] HAX: Do not merge Pranay Samala @ 2024-11-18 20:16 ` Patchwork 2024-11-18 20:25 ` ✗ Fi.CI.BAT: " Patchwork 2024-11-19 3:52 ` ✗ CI.xeFULL: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-11-18 20:16 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5988 bytes --] == Series Details == Series: tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 URL : https://patchwork.freedesktop.org/series/141478/ State : failure == Summary == CI Bug Log - changes from XEIGT_8115_BAT -> XEIGTPW_12120_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12120_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12120_BAT, 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 (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12120_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - bat-atsm-2: NOTRUN -> [SKIP][1] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/bat-atsm-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - bat-lnl-1: NOTRUN -> [SKIP][2] +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/bat-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html Known issues ------------ Here are the changes found in XEIGTPW_12120_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#1124] / [Intel XE#3443]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/bat-adlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-lnl-2: NOTRUN -> [SKIP][4] ([Intel XE#2235]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/bat-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - bat-adlp-vf: NOTRUN -> [SKIP][5] ([Intel XE#829]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/bat-adlp-vf/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - bat-pvc-2: NOTRUN -> [SKIP][6] ([Intel XE#829]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/bat-pvc-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#3419]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/bat-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/bat-adlp-vf/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_migrate@xe_migrate_sanity_kunit: - bat-adlp-vf: NOTRUN -> [DMESG-FAIL][9] ([Intel XE#358]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_migrate_sanity_kunit.html #### Possible fixes #### * igt@xe_live_ktest@xe_dma_buf: - bat-adlp-vf: [SKIP][10] ([Intel XE#1192]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-adlp-vf/igt@xe_live_ktest@xe_dma_buf.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/bat-adlp-vf/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_pat@pat-index-xelp@render: - bat-adlp-vf: [DMESG-WARN][12] ([Intel XE#358]) -> [PASS][13] +1 other test pass [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html #### Warnings #### * igt@xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][14] ([Intel XE#1192]) -> [SKIP][15] ([Intel XE#2229] / [Intel XE#455]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][16] ([Intel XE#1192]) -> [DMESG-FAIL][17] ([Intel XE#358]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235 [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419 [Intel XE#3443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3443 [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 Build changes ------------- * IGT: IGT_8115 -> IGTPW_12120 IGTPW_12120: 12120 IGT_8115: 4942fc57c20f9cb2195e70991c4e4df03dd3db21 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4: 6abefc8e3bf638090d5277bc3e6fd02bb25579a4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/index.html [-- Attachment #2: Type: text/html, Size: 7274 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.BAT: failure for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 2024-11-18 8:18 [PATCH i-g-t 0/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Pranay Samala ` (2 preceding siblings ...) 2024-11-18 20:16 ` ✗ CI.xeBAT: failure for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Patchwork @ 2024-11-18 20:25 ` Patchwork 2024-11-19 3:52 ` ✗ CI.xeFULL: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-11-18 20:25 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 13638 bytes --] == Series Details == Series: tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 URL : https://patchwork.freedesktop.org/series/141478/ State : failure == Summary == CI Bug Log - changes from IGT_8115 -> IGTPW_12120 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12120 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12120, 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_12120/index.html Participating hosts (46 -> 45) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12120: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@gt_lrc: - bat-twl-2: NOTRUN -> [ABORT][1] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-twl-2/igt@i915_selftest@live@gt_lrc.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - fi-cfl-8109u: [PASS][2] -> [DMESG-WARN][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/fi-cfl-8109u/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-cfl-8109u/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html Known issues ------------ Here are the changes found in IGTPW_12120 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_auth@basic-auth: - bat-dg2-14: [PASS][4] -> [DMESG-WARN][5] ([i915#11621]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-dg2-14/igt@core_auth@basic-auth.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-dg2-14/igt@core_auth@basic-auth.html * igt@i915_module_load@load: - bat-twl-1: [PASS][6] -> [DMESG-WARN][7] ([i915#1982]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-twl-1/igt@i915_module_load@load.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-twl-1/igt@i915_module_load@load.html * igt@i915_selftest@live: - bat-arlh-2: [PASS][8] -> [ABORT][9] ([i915#12829]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-arlh-2/igt@i915_selftest@live.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-2: [PASS][10] -> [ABORT][11] ([i915#12061]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-arlh-2/igt@i915_selftest@live@workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-arlh-2/igt@i915_selftest@live@workarounds.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - bat-adlp-11: NOTRUN -> [SKIP][12] ([i915#10470]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-adlp-11/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - fi-hsw-4770: NOTRUN -> [SKIP][13] +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-hsw-4770/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-adls-6: NOTRUN -> [SKIP][14] ([i915#4538] / [i915#5286]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-adls-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-jsl-1: NOTRUN -> [SKIP][15] ([i915#5286]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-jsl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-arlh-2: NOTRUN -> [SKIP][16] ([i915#11346]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-arlh-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-rkl-11600: NOTRUN -> [SKIP][17] ([i915#5286]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-rkl-11600/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-pnv-d510: NOTRUN -> [SKIP][18] +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-pnv-d510/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-dg1-7: NOTRUN -> [SKIP][19] ([i915#4538] / [i915#5286]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-dg1-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-glk-j4005: NOTRUN -> [SKIP][20] +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-glk-j4005/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-adlp-9: NOTRUN -> [SKIP][21] ([i915#4538] / [i915#5286]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-adlp-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-kbl-x1275: NOTRUN -> [SKIP][22] +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-kbl-x1275/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-rpls-4: NOTRUN -> [SKIP][23] ([i915#4538] / [i915#5286]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-rpls-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-cfl-8109u: NOTRUN -> [SKIP][24] +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-cfl-8109u/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-kbl-7567u: NOTRUN -> [SKIP][25] +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-kbl-7567u/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-twl-1: NOTRUN -> [SKIP][26] ([i915#11153]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-twl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-kbl-8809g: NOTRUN -> [SKIP][27] +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-kbl-8809g/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-apl-1: NOTRUN -> [SKIP][28] +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-apl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-rplp-1: NOTRUN -> [SKIP][29] ([i915#4538] / [i915#5286]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-rplp-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-ilk-650: NOTRUN -> [SKIP][30] +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-ilk-650/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-tgl-1115g4: NOTRUN -> [SKIP][31] ([i915#5286]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-tgl-1115g4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-cfl-guc: NOTRUN -> [SKIP][32] +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-cfl-guc/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-mtlp-6: NOTRUN -> [SKIP][33] ([i915#9792]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-adlp-11: NOTRUN -> [SKIP][34] ([i915#10470] / [i915#10501]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-adlp-11/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-dg1-6: NOTRUN -> [SKIP][35] ([i915#12311]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-dg1-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-cfl-8700k: NOTRUN -> [SKIP][36] +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-cfl-8700k/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-blb-e6850: NOTRUN -> [SKIP][37] +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-blb-e6850/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - bat-jsl-3: NOTRUN -> [SKIP][38] ([i915#5286]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-jsl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - bat-twl-2: NOTRUN -> [SKIP][39] ([i915#11153]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-twl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - fi-ivb-3770: NOTRUN -> [SKIP][40] +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-ivb-3770/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - fi-elk-e7500: NOTRUN -> [SKIP][41] +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-elk-e7500/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - fi-bsw-nick: NOTRUN -> [SKIP][42] +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-bsw-nick/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - fi-kbl-guc: NOTRUN -> [SKIP][43] +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-kbl-guc/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - bat-adlm-1: NOTRUN -> [SKIP][44] ([i915#9900]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-adlm-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - bat-kbl-2: NOTRUN -> [SKIP][45] +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-kbl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html - bat-adlp-6: NOTRUN -> [SKIP][46] ([i915#4538] / [i915#5286]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-adlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html - fi-skl-6600u: NOTRUN -> [SKIP][47] +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/fi-skl-6600u/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@runner@aborted: - bat-dg2-13: NOTRUN -> [FAIL][48] ([i915#12658]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-dg2-13/igt@runner@aborted.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-dg1-7: [FAIL][49] -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/bat-dg1-7/igt@i915_pm_rpm@module-reload.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10470 [i915#10501]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10501 [i915#11153]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11153 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#12658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12658 [i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9900]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9900 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8115 -> IGTPW_12120 CI-20190529: 20190529 CI_DRM_15716: 6abefc8e3bf638090d5277bc3e6fd02bb25579a4 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12120: 12120 IGT_8115: 4942fc57c20f9cb2195e70991c4e4df03dd3db21 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12120/index.html [-- Attachment #2: Type: text/html, Size: 15874 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ CI.xeFULL: failure for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 2024-11-18 8:18 [PATCH i-g-t 0/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Pranay Samala ` (3 preceding siblings ...) 2024-11-18 20:25 ` ✗ Fi.CI.BAT: " Patchwork @ 2024-11-19 3:52 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-11-19 3:52 UTC (permalink / raw) To: Samala, Pranay; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 133679 bytes --] == Series Details == Series: tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 URL : https://patchwork.freedesktop.org/series/141478/ State : failure == Summary == CI Bug Log - changes from XEIGT_8115_full -> XEIGTPW_12120_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12120_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12120_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12120_full: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-4/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][3] -> [INCOMPLETE][4] +3 other tests incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-dp-2: - shard-bmg: [PASS][5] -> [DMESG-FAIL][6] +18 other tests dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-dp-2.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-dp-2.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][7] +25 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html * igt@kms_flip@basic-flip-vs-modeset@a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][8] +5 other tests dmesg-warn [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-433/igt@kms_flip@basic-flip-vs-modeset@a-hdmi-a6.html * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0: - shard-lnl: [PASS][9] -> [INCOMPLETE][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html * igt@kms_psr@psr2-cursor-plane-move@edp-1: - shard-lnl: [PASS][11] -> [FAIL][12] +1 other test fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-4/igt@kms_psr@psr2-cursor-plane-move@edp-1.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-8/igt@kms_psr@psr2-cursor-plane-move@edp-1.html * igt@kms_rmfb@close-fd@pipe-b-hdmi-a-3: - shard-bmg: [PASS][13] -> [DMESG-WARN][14] +74 other tests dmesg-warn [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_rmfb@close-fd@pipe-b-hdmi-a-3.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-2/igt@kms_rmfb@close-fd@pipe-b-hdmi-a-3.html * igt@xe_pm@s2idle-exec-after: - shard-dg2-set2: [PASS][15] -> [DMESG-WARN][16] +8 other tests dmesg-warn [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_pm@s2idle-exec-after.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-433/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s2idle-mocs: - shard-bmg: NOTRUN -> [DMESG-FAIL][17] +4 other tests dmesg-fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-3/igt@xe_pm@s2idle-mocs.html #### Warnings #### * igt@core_hotunplug@hotunbind-rebind: - shard-dg2-set2: [SKIP][18] ([Intel XE#1885]) -> [DMESG-WARN][19] [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@core_hotunplug@hotunbind-rebind.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@core_hotunplug@hotunbind-rebind.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: [FAIL][20] ([Intel XE#3162]) -> [SKIP][21] +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-dg2-set2: [SKIP][22] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][23] +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][24] ([Intel XE#1695]) -> [DMESG-FAIL][25] [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@basic-flip-vs-modeset: - shard-dg2-set2: [SKIP][26] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][27] [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_flip@basic-flip-vs-modeset.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-433/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [FAIL][28] ([Intel XE#2333]) -> [DMESG-FAIL][29] [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_pm_dc@dc6-dpms: - shard-bmg: [FAIL][30] ([Intel XE#1430]) -> [DMESG-FAIL][31] [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_pm_dc@dc6-dpms.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-2/igt@kms_pm_dc@dc6-dpms.html * igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-vram01-vram01: - shard-dg2-set2: [INCOMPLETE][32] ([Intel XE#1195]) -> [DMESG-FAIL][33] [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-vram01-vram01.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-vram01-vram01.html * igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate: - shard-dg2-set2: [SKIP][34] ([Intel XE#1130]) -> [DMESG-WARN][35] +4 other tests dmesg-warn [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [DMESG-WARN][36] ([Intel XE#3467]) -> [DMESG-WARN][37] [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_module_load@many-reload: - shard-dg2-set2: [FAIL][38] ([Intel XE#2136]) -> [DMESG-WARN][39] [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_module_load@many-reload.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@xe_module_load@many-reload.html New tests --------- New tests have been introduced between XEIGT_8115_full and XEIGTPW_12120_full: ### New IGT tests (3) ### * igt@kms_async_flips@test-cursor@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.16] s * igt@kms_async_flips@test-cursor@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.16] s * igt@kms_vrr@negative-basic@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [5.44] s Known issues ------------ Here are the changes found in XEIGTPW_12120_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getstats: - shard-dg2-set2: [PASS][40] -> [SKIP][41] ([Intel XE#2423]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@core_getstats.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@core_getstats.html * igt@core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [PASS][42] -> [DMESG-WARN][43] ([Intel XE#3468]) +1 other test dmesg-warn [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@core_hotunplug@hotunplug-rescan.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@core_hotunplug@hotunplug-rescan.html * igt@core_hotunplug@unbind-rebind: - shard-bmg: [PASS][44] -> [INCOMPLETE][45] ([Intel XE#3468]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@core_hotunplug@unbind-rebind.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-3/igt@core_hotunplug@unbind-rebind.html * igt@core_hotunplug@unplug-rescan: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][46] ([Intel XE#3468]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@core_hotunplug@unplug-rescan.html * igt@core_setmaster@master-drop-set-root: - shard-dg2-set2: [PASS][47] -> [FAIL][48] ([Intel XE#3130] / [Intel XE#3249]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@core_setmaster@master-drop-set-root.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][49] -> [FAIL][50] ([Intel XE#827]) +1 other test fail [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#873]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#664]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-6/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@modeset-transition-nonblocking: - shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#1701]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-2/igt@kms_atomic_transition@modeset-transition-nonblocking.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2370]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2327]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [PASS][57] -> [INCOMPLETE][58] ([Intel XE#1195] / [Intel XE#402]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-436/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [PASS][59] -> [DMESG-WARN][60] ([Intel XE#3468]) +16 other tests dmesg-warn [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#316]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1467]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-2/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1124]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#1124]) +13 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1124]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2191]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#2191]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#367]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#367]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#2887]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#3432]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][73] -> [INCOMPLETE][74] ([Intel XE#1195]) +5 other tests incomplete [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#3432]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#2669]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2887]) +14 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#787]) +209 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#455] / [Intel XE#787]) +41 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2325]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#306]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@kms_chamelium_color@ctm-limited-range.html - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#306]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-5/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2252]) +9 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#373]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#373]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-3/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][86] ([Intel XE#1178]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2390]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#307]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-4/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#3278]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-1/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2320]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#308]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1424]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-6/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2321]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#2321]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#309]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2286]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][97] ([Intel XE#877]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#323]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2244]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#2244]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@chamelium: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#701]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-3/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1135]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][103] ([Intel XE#301]) +4 other tests fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3: - shard-bmg: [PASS][104] -> [FAIL][105] ([Intel XE#2882]) +1 other test fail [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1421]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@blocking-wf_vblank: - shard-dg2-set2: [PASS][107] -> [SKIP][108] ([Intel XE#2423] / [i915#2575]) +94 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip@blocking-wf_vblank.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@plain-flip-fb-recreate@a-edp1: - shard-lnl: [PASS][109] -> [FAIL][110] ([Intel XE#886]) +3 other tests fail [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html * igt@kms_flip@plain-flip-fb-recreate@c-edp1: - shard-lnl: [PASS][111] -> [FAIL][112] ([Intel XE#3149] / [Intel XE#886]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2136] / [Intel XE#2351]) +17 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#455]) +8 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1401]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2293]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#352]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2136]) +44 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#651]) +10 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][122] -> [SKIP][123] ([Intel XE#2136]) +39 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][124] -> [SKIP][125] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [DMESG-FAIL][126] ([Intel XE#3468]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#656]) +22 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-bmg: NOTRUN -> [FAIL][128] ([Intel XE#2333]) +9 other tests fail [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#651]) +13 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2311]) +34 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1469]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2313]) +24 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#653]) +14 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2-set2: NOTRUN -> [FAIL][134] ([Intel XE#3312] / [Intel XE#3404]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][135] ([Intel XE#3312]) +1 other test fail [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][136] ([Intel XE#3312]) +1 other test fail [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-6.html * igt@kms_hdr@static-swap: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1503]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-4/igt@kms_hdr@static-swap.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2927]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2501]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#356]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2486]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@kms_panel_fitting@legacy.html * igt@kms_plane@pixel-format-source-clamping: - shard-lnl: [PASS][142] -> [INCOMPLETE][143] ([Intel XE#2566]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@kms_plane@pixel-format-source-clamping.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-4/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][144] ([Intel XE#616]) +2 other tests fail [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#599]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-4/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#2493]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-3/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2493]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][148] ([Intel XE#361]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2763]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a: - shard-lnl: NOTRUN -> [DMESG-WARN][150] ([Intel XE#2566] / [Intel XE#3466]) +1 other test dmesg-warn [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a: - shard-lnl: [PASS][151] -> [DMESG-WARN][152] ([Intel XE#3466]) +179 other tests dmesg-warn [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#2763]) +5 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-436/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#2423] / [i915#2575]) +36 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#2763]) +11 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#870]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2392]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#1129]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-433/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][160] -> [FAIL][161] ([Intel XE#1430]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2-set2: [PASS][162] -> [ABORT][163] ([Intel XE#3468]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_pm_rpm@dpms-non-lpsp.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@legacy-planes: - shard-dg2-set2: [PASS][164] -> [SKIP][165] ([Intel XE#2446]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_pm_rpm@legacy-planes.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_pm_rpm@legacy-planes.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#2446]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#1489]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#2893]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#1489]) +11 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [DMESG-WARN][170] ([Intel XE#3466]) +2 other tests dmesg-warn [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#1406]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-3/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#2939]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#3414]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@kms_rotation_crc@primary-rotation-90.html - shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#3414]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-0: - shard-bmg: [PASS][177] -> [DMESG-FAIL][178] ([Intel XE#3468]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-2/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2330]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [FAIL][180] ([Intel XE#1729]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak: - shard-lnl: [PASS][181] -> [FAIL][182] ([Intel XE#899]) +2 other tests fail [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][183] -> [FAIL][184] ([Intel XE#2159]) +1 other test fail [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#1499]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-invalid-parameters: - shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#756]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-3/igt@kms_writeback@writeback-invalid-parameters.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#1091] / [Intel XE#2849]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#1091] / [Intel XE#2849]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-vram01: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][189] ([Intel XE#1195]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-vram01.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#1280] / [Intel XE#455]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#2504]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@basic-vm-access-parameters: - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#2905]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-8/igt@xe_eudebug@basic-vm-access-parameters.html * igt@xe_eudebug@basic-vm-bind-discovery: - shard-bmg: NOTRUN -> [SKIP][193] ([Intel XE#2905]) +10 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-discovery.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-dg2-set2: NOTRUN -> [SKIP][194] ([Intel XE#2905]) +7 other tests skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][195] ([Intel XE#1600]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-beng-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][196] ([Intel XE#688]) +4 other tests skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-4/igt@xe_evict@evict-beng-threads-large-multi-vm.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-dg2-set2: [PASS][197] -> [SKIP][198] ([Intel XE#1130]) +162 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#1130]) +66 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_exec_balancer@twice-virtual-basic.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][200] ([Intel XE#2322]) +10 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][201] ([Intel XE#1392]) +6 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm: - shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#288]) +8 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html * igt@xe_exec_fault_mode@many-userptr-rebind: - shard-lnl: NOTRUN -> [DMESG-FAIL][203] ([Intel XE#3466]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-4/igt@xe_exec_fault_mode@many-userptr-rebind.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-lnl: [PASS][204] -> [DMESG-FAIL][205] ([Intel XE#3466]) +5 other tests dmesg-fail [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-6/igt@xe_exec_fault_mode@twice-invalid-fault.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-1/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-lnl: [PASS][206] -> [FAIL][207] ([Intel XE#1630]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-2/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-6/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][208] ([Intel XE#3343]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-dg2-set2: [PASS][209] -> [DMESG-WARN][210] ([Intel XE#3467]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-bmg: NOTRUN -> [DMESG-WARN][211] ([Intel XE#3343]) +1 other test dmesg-warn [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][212] ([Intel XE#3467]) +1 other test dmesg-warn [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-bmg: [PASS][213] -> [DMESG-WARN][214] ([Intel XE#3467]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-dg2-set2: [PASS][215] -> [SKIP][216] ([Intel XE#2229]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][217] -> [SKIP][218] ([Intel XE#1192]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-3/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_module_load@load: - shard-bmg: NOTRUN -> [SKIP][219] ([Intel XE#2457]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-2/igt@xe_module_load@load.html * igt@xe_noexec_ping_pong: - shard-lnl: NOTRUN -> [SKIP][220] ([Intel XE#379]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-8/igt@xe_noexec_ping_pong.html * igt@xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][221] ([Intel XE#2541]) +4 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@xe_oa@whitelisted-registers-userspace-config.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: NOTRUN -> [SKIP][222] ([Intel XE#1337]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html * igt@xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][223] ([Intel XE#1061]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-5/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-mocs: - shard-bmg: NOTRUN -> [SKIP][224] ([Intel XE#2284]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-bmg: NOTRUN -> [DMESG-WARN][225] ([Intel XE#1616]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][226] ([Intel XE#2284] / [Intel XE#366]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-2/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pm@s4-multiple-execs: - shard-bmg: NOTRUN -> [DMESG-WARN][227] ([Intel XE#3468]) +1 other test dmesg-warn [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-4/igt@xe_pm@s4-multiple-execs.html * igt@xe_pm@s4-vm-bind-userptr: - shard-dg2-set2: [PASS][228] -> [DMESG-WARN][229] ([Intel XE#2280]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_pm@s4-vm-bind-userptr.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@xe_pm@s4-vm-bind-userptr.html - shard-bmg: [PASS][230] -> [DMESG-WARN][231] ([Intel XE#2280]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-2/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_query@multigpu-query-invalid-size: - shard-bmg: NOTRUN -> [SKIP][232] ([Intel XE#944]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@xe_query@multigpu-query-invalid-size.html * igt@xe_query@multigpu-query-oa-units: - shard-dg2-set2: NOTRUN -> [SKIP][233] ([Intel XE#944]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-436/igt@xe_query@multigpu-query-oa-units.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][234] ([Intel XE#944]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-7/igt@xe_query@multigpu-query-topology-l3-bank-mask.html #### Possible fixes #### * igt@core_hotunplug@hotrebind: - shard-dg2-set2: [SKIP][235] ([Intel XE#1885]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@core_hotunplug@hotrebind.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@core_hotunplug@hotrebind.html * igt@fbdev@read: - shard-dg2-set2: [SKIP][237] ([Intel XE#2134]) -> [PASS][238] +2 other tests pass [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@fbdev@read.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-433/igt@fbdev@read.html * igt@kms_3d: - shard-dg2-set2: [SKIP][239] ([Intel XE#2423]) -> [PASS][240] +1 other test pass [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_3d.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_3d.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-lnl: [INCOMPLETE][241] ([Intel XE#3225]) -> [PASS][242] +3 other tests pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][243] ([Intel XE#2136]) -> [PASS][244] +30 other tests pass [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@4-tiled-addfb-size-overflow.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-433/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [DMESG-FAIL][245] -> [PASS][246] +33 other tests pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_big_fb@linear-16bpp-rotate-180.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@kms_big_fb@linear-16bpp-rotate-180.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [DMESG-FAIL][247] ([Intel XE#3468]) -> [PASS][248] +11 other tests pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][249] ([Intel XE#2882]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3: - shard-bmg: [FAIL][251] ([Intel XE#3486]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3: - shard-bmg: [DMESG-WARN][253] -> [PASS][254] +185 other tests pass [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html * igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3: - shard-bmg: [DMESG-WARN][255] ([Intel XE#3468]) -> [PASS][256] +22 other tests pass [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-3/igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1: - shard-lnl: [FAIL][257] ([Intel XE#886]) -> [PASS][258] +2 other tests pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][259] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597] / [Intel XE#3468]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a6: - shard-dg2-set2: [DMESG-WARN][261] ([Intel XE#3468]) -> [PASS][262] +2 other tests pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-436/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html * igt@kms_flip@flip-vs-suspend@c-dp4: - shard-dg2-set2: [INCOMPLETE][263] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_flip@flip-vs-suspend@c-dp4.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-436/igt@kms_flip@flip-vs-suspend@c-dp4.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a6: - shard-dg2-set2: [DMESG-FAIL][265] ([Intel XE#3468]) -> [PASS][266] +3 other tests pass [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_flip@flip-vs-suspend@c-hdmi-a6.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-436/igt@kms_flip@flip-vs-suspend@c-hdmi-a6.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg2-set2: [SKIP][267] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][268] +10 other tests pass [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [INCOMPLETE][269] ([Intel XE#1195]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [INCOMPLETE][271] -> [PASS][272] +3 other tests pass [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][273] -> [PASS][274] +1 other test pass [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-436/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-6.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [SKIP][275] ([Intel XE#2423] / [i915#2575]) -> [PASS][276] +88 other tests pass [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-180.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-180.html * igt@xe_exec_compute_mode@many-rebind: - shard-lnl: [DMESG-WARN][277] -> [PASS][278] +40 other tests pass [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@xe_exec_compute_mode@many-rebind.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-4/igt@xe_exec_compute_mode@many-rebind.html * igt@xe_exec_fault_mode@once-bindexecqueue-prefetch: - shard-lnl: [DMESG-FAIL][279] ([Intel XE#3466]) -> [PASS][280] +9 other tests pass [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-3/igt@xe_exec_fault_mode@once-bindexecqueue-prefetch.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-1/igt@xe_exec_fault_mode@once-bindexecqueue-prefetch.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-dg2-set2: [DMESG-WARN][281] ([Intel XE#3467]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [TIMEOUT][283] ([Intel XE#2961] / [Intel XE#3191]) -> [PASS][284] +1 other test pass [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_live_ktest@xe_bo.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-bmg: [INCOMPLETE][285] ([Intel XE#2998]) -> [PASS][286] +1 other test pass [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_oa@stress-open-close: - shard-lnl: [DMESG-WARN][287] ([Intel XE#3466]) -> [PASS][288] +103 other tests pass [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-7/igt@xe_oa@stress-open-close.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-1/igt@xe_oa@stress-open-close.html * igt@xe_pm@s2idle-mocs: - shard-lnl: [DMESG-WARN][289] ([Intel XE#2932]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-4/igt@xe_pm@s2idle-mocs.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-6/igt@xe_pm@s2idle-mocs.html * igt@xe_pm@s2idle-multiple-execs: - shard-bmg: [DMESG-WARN][291] ([Intel XE#1616]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@xe_pm@s2idle-multiple-execs.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@xe_pm@s2idle-multiple-execs.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-bmg: [DMESG-WARN][293] ([Intel XE#1616] / [Intel XE#3468]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-prefetch.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s3-basic: - shard-bmg: [DMESG-WARN][295] ([Intel XE#569]) -> [PASS][296] +1 other test pass [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_pm@s3-basic.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-3/igt@xe_pm@s3-basic.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [DMESG-WARN][297] ([Intel XE#569]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_pm@s3-vm-bind-unbind-all.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-433/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-bmg: [DMESG-WARN][299] ([Intel XE#2280]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_pm@s4-vm-bind-unbind-all.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@xe_pm@s4-vm-bind-unbind-all.html - shard-lnl: [DMESG-WARN][301] ([Intel XE#2280]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@xe_pm@s4-vm-bind-unbind-all.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-5/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_vm@large-split-misaligned-binds-8388608: - shard-dg2-set2: [DMESG-WARN][303] -> [PASS][304] +6 other tests pass [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_vm@large-split-misaligned-binds-8388608.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@xe_vm@large-split-misaligned-binds-8388608.html * igt@xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [SKIP][305] ([Intel XE#1130]) -> [PASS][306] +158 other tests pass [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html #### Warnings #### * igt@kms_async_flips@async-flip-suspend-resume: - shard-dg2-set2: [DMESG-WARN][307] -> [SKIP][308] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_async_flips@async-flip-suspend-resume.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: [SKIP][309] ([Intel XE#316]) -> [SKIP][310] ([Intel XE#2136]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][311] ([Intel XE#316]) -> [SKIP][312] ([Intel XE#2136] / [Intel XE#2351]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][313] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][314] ([Intel XE#316]) +2 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][315] ([Intel XE#2136]) -> [SKIP][316] ([Intel XE#316]) +4 other tests skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: [DMESG-WARN][317] ([Intel XE#3466]) -> [INCOMPLETE][318] ([Intel XE#3225]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][319] ([Intel XE#1124]) -> [SKIP][320] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][321] ([Intel XE#607]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2351]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][323] ([Intel XE#610]) -> [SKIP][324] ([Intel XE#2136]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][325] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][326] ([Intel XE#1124]) +5 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][327] ([Intel XE#2136]) -> [SKIP][328] ([Intel XE#1124]) +6 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][329] ([Intel XE#1124]) -> [SKIP][330] ([Intel XE#2136]) +4 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][331] ([Intel XE#2136]) -> [SKIP][332] ([Intel XE#610]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][333] ([Intel XE#367]) -> [SKIP][334] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][335] ([Intel XE#2423] / [i915#2575]) -> [SKIP][336] ([Intel XE#2191]) +2 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][337] ([Intel XE#2191]) -> [SKIP][338] ([Intel XE#2423] / [i915#2575]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][339] ([Intel XE#2423] / [i915#2575]) -> [SKIP][340] ([Intel XE#367]) +3 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][341] ([Intel XE#2136]) -> [SKIP][342] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][343] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][344] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs: - shard-dg2-set2: [SKIP][345] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][346] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][347] ([Intel XE#2136]) -> [SKIP][348] ([Intel XE#2907]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][349] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][350] ([Intel XE#2136]) +7 other tests skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][351] -> [SKIP][352] ([Intel XE#3442]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][353] -> [SKIP][354] ([Intel XE#455] / [Intel XE#787]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][355] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][356] ([Intel XE#314]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][357] ([Intel XE#306]) -> [SKIP][358] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_chamelium_color@gamma.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-dg2-set2: [SKIP][359] ([Intel XE#2423] / [i915#2575]) -> [SKIP][360] ([Intel XE#373]) +9 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][361] ([Intel XE#373]) -> [SKIP][362] ([Intel XE#2423] / [i915#2575]) +9 other tests skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@atomic: - shard-dg2-set2: [SKIP][363] ([Intel XE#2423] / [i915#2575]) -> [FAIL][364] ([Intel XE#1178]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_content_protection@atomic.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@kms_content_protection@atomic.html * igt@kms_content_protection@legacy: - shard-bmg: [FAIL][365] ([Intel XE#1178]) -> [INCOMPLETE][366] ([Intel XE#2715]) +3 other tests incomplete [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_content_protection@legacy.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-3/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: [FAIL][367] ([Intel XE#1178]) -> [SKIP][368] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_content_protection@lic-type-0.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@uevent: - shard-dg2-set2: [FAIL][369] ([Intel XE#1188]) -> [SKIP][370] ([Intel XE#2423] / [i915#2575]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_content_protection@uevent.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_content_protection@uevent.html - shard-bmg: [DMESG-FAIL][371] -> [FAIL][372] ([Intel XE#1188]) +1 other test fail [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_content_protection@uevent.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][373] ([Intel XE#2423] / [i915#2575]) -> [SKIP][374] ([Intel XE#308]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][375] ([Intel XE#308]) -> [SKIP][376] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x170.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][377] ([Intel XE#323]) -> [SKIP][378] ([Intel XE#2423] / [i915#2575]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2-set2: [SKIP][379] ([Intel XE#2423] / [i915#2575]) -> [SKIP][380] ([Intel XE#307]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_display_modes@mst-extended-mode-negative.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-formats: - shard-dg2-set2: [SKIP][381] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][382] ([Intel XE#455]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_dsc@dsc-with-formats.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2-set2: [SKIP][383] ([Intel XE#2136]) -> [INCOMPLETE][384] ([Intel XE#1195]) +1 other test incomplete [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_fbcon_fbt@fbc-suspend.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-433/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][385] ([Intel XE#2136]) -> [SKIP][386] ([Intel XE#776]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-436/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][387] ([Intel XE#2423] / [i915#2575]) -> [SKIP][388] ([Intel XE#1137]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-dg2-set2: [SKIP][389] ([Intel XE#2423] / [i915#2575]) -> [FAIL][390] ([Intel XE#301]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][391] ([Intel XE#301]) -> [SKIP][392] ([Intel XE#2423] / [i915#2575]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@plain-flip-fb-recreate: - shard-lnl: [FAIL][393] ([Intel XE#886]) -> [FAIL][394] ([Intel XE#3149] / [Intel XE#886]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-2/igt@kms_flip@plain-flip-fb-recreate.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][395] ([Intel XE#2136]) -> [SKIP][396] ([Intel XE#455]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][397] ([Intel XE#455]) -> [SKIP][398] ([Intel XE#2136] / [Intel XE#2351]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][399] ([Intel XE#455]) -> [SKIP][400] ([Intel XE#2136]) +6 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][401] ([i915#5274]) -> [SKIP][402] ([Intel XE#2423] / [i915#2575]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_force_connector_basic@prune-stale-modes.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][403] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][404] ([Intel XE#651]) +7 other tests skip [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [INCOMPLETE][405] ([Intel XE#2050] / [Intel XE#3468]) -> [FAIL][406] ([Intel XE#2333]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: [DMESG-FAIL][407] ([Intel XE#3468]) -> [FAIL][408] ([Intel XE#2333]) +1 other test fail [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [DMESG-FAIL][409] -> [FAIL][410] ([Intel XE#2333]) +17 other tests fail [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][411] ([Intel XE#2333]) -> [DMESG-FAIL][412] ([Intel XE#3468]) +5 other tests dmesg-fail [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][413] ([Intel XE#651]) -> [SKIP][414] ([Intel XE#2136]) +19 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: [SKIP][415] ([Intel XE#2136]) -> [SKIP][416] ([Intel XE#651]) +24 other tests skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][417] ([Intel XE#651]) -> [SKIP][418] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][419] ([Intel XE#658]) -> [SKIP][420] ([Intel XE#2136] / [Intel XE#2351]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][421] ([Intel XE#2136]) -> [SKIP][422] ([Intel XE#653]) +29 other tests skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][423] ([Intel XE#653]) -> [SKIP][424] ([Intel XE#2136] / [Intel XE#2351]) +11 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][425] ([Intel XE#1158]) -> [SKIP][426] ([Intel XE#2136]) [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][427] ([Intel XE#653]) -> [SKIP][428] ([Intel XE#2136]) +29 other tests skip [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][429] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][430] ([Intel XE#653]) +10 other tests skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][431] ([Intel XE#605]) -> [SKIP][432] ([Intel XE#2423] / [i915#2575]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][433] ([Intel XE#2136]) -> [SKIP][434] ([Intel XE#346]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_joiner@basic-big-joiner.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][435] ([Intel XE#346]) -> [SKIP][436] ([Intel XE#2136]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_joiner@invalid-modeset-big-joiner.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_plane_cursor@primary: - shard-dg2-set2: [SKIP][437] ([Intel XE#2423] / [i915#2575]) -> [FAIL][438] ([Intel XE#616]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_plane_cursor@primary.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_plane_cursor@primary.html * igt@kms_plane_lowres@tiling-y: - shard-dg2-set2: [SKIP][439] ([Intel XE#455]) -> [SKIP][440] ([Intel XE#2423] / [i915#2575]) +10 other tests skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_plane_lowres@tiling-y.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [SKIP][441] ([Intel XE#2423] / [i915#2575]) -> [FAIL][442] ([Intel XE#361]) [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2-set2: [SKIP][443] ([Intel XE#2423] / [i915#2575]) -> [SKIP][444] ([Intel XE#2763] / [Intel XE#455]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-436/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#870]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_pm_backlight@bad-brightness.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][447] ([Intel XE#2136]) -> [SKIP][448] ([Intel XE#2938]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][449] ([Intel XE#870]) -> [SKIP][450] ([Intel XE#2136]) +1 other test skip [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_pm_backlight@fade-with-suspend.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][451] ([Intel XE#2136]) -> [SKIP][452] ([Intel XE#908]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2-set2: [DMESG-WARN][453] -> [SKIP][454] ([Intel XE#2446]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_pm_rpm@modeset-lpsp-stress.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][455] ([Intel XE#1489]) -> [SKIP][456] ([Intel XE#2136]) +6 other tests skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2-set2: [SKIP][457] ([Intel XE#2136]) -> [SKIP][458] ([Intel XE#1489]) +8 other tests skip [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: [SKIP][459] ([Intel XE#1122]) -> [SKIP][460] ([Intel XE#2136]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_psr2_su@frontbuffer-xrgb8888.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][461] ([Intel XE#2136]) -> [SKIP][462] ([Intel XE#1122]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr2_su@page_flip-xrgb8888.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-dg2-set2: [SKIP][463] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][464] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-move.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: [SKIP][465] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][466] ([Intel XE#2136]) +10 other tests skip [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-render.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][467] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][468] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_psr@psr-dpms.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr2-primary-render: - shard-dg2-set2: [SKIP][469] ([Intel XE#2136]) -> [SKIP][470] ([Intel XE#2850] / [Intel XE#929]) +11 other tests skip [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr@psr2-primary-render.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-434/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2-set2: [SKIP][471] ([Intel XE#3414]) -> [SKIP][472] ([Intel XE#2423] / [i915#2575]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_rotation_crc@bad-pixel-format.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][473] ([Intel XE#1127]) -> [SKIP][474] ([Intel XE#2423] / [i915#2575]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: [SKIP][475] ([Intel XE#2423] / [i915#2575]) -> [SKIP][476] ([Intel XE#3414]) +2 other tests skip [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-270.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_sequence@queue-idle: - shard-bmg: [DMESG-FAIL][477] -> [DMESG-WARN][478] ([Intel XE#877]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_sequence@queue-idle.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@kms_sequence@queue-idle.html * igt@kms_sequence@queue-idle@pipe-d-hdmi-a-3: - shard-bmg: [DMESG-WARN][479] -> [DMESG-WARN][480] ([Intel XE#877]) [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_sequence@queue-idle@pipe-d-hdmi-a-3.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@kms_sequence@queue-idle@pipe-d-hdmi-a-3.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][481] ([Intel XE#362]) -> [FAIL][482] ([Intel XE#1729]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][483] ([Intel XE#1500]) -> [SKIP][484] ([Intel XE#2423] / [i915#2575]) [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][485] ([Intel XE#330]) -> [SKIP][486] ([Intel XE#2423] / [i915#2575]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@cmrr: - shard-dg2-set2: [SKIP][487] ([Intel XE#2168]) -> [SKIP][488] ([Intel XE#2423] / [i915#2575]) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_vrr@cmrr.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_vrr@cmrr.html * igt@kms_vrr@flipline: - shard-dg2-set2: [SKIP][489] ([Intel XE#2423] / [i915#2575]) -> [SKIP][490] ([Intel XE#455]) +6 other tests skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_vrr@flipline.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: [SKIP][491] ([Intel XE#2423] / [i915#2575]) -> [SKIP][492] ([Intel XE#756]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_writeback@writeback-check-output-xrgb2101010.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-433/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][493] ([Intel XE#756]) -> [SKIP][494] ([Intel XE#2423] / [i915#2575]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_writeback@writeback-fb-id.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@kms_writeback@writeback-fb-id.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: [SKIP][495] ([Intel XE#2423] / [i915#2575]) -> [SKIP][496] ([Intel XE#1091] / [Intel XE#2849]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@sriov_basic@enable-vfs-autoprobe-off.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][497] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][498] ([Intel XE#1130]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_compute_preempt@compute-preempt.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html * igt@xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][499] ([Intel XE#1130]) -> [SKIP][500] ([Intel XE#1280] / [Intel XE#455]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_compute_preempt@compute-threadgroup-preempt.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@xe_compute_preempt@compute-threadgroup-preempt.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][501] ([Intel XE#1123]) -> [SKIP][502] ([Intel XE#1130]) +1 other test skip [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x3fff.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][503] ([Intel XE#1130]) -> [SKIP][504] ([Intel XE#1126]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x369.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][505] ([Intel XE#1126]) -> [SKIP][506] ([Intel XE#1130]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfffe.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug@sysfs-toggle: - shard-dg2-set2: [SKIP][507] ([Intel XE#2905]) -> [SKIP][508] ([Intel XE#1130]) +13 other tests skip [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_eudebug@sysfs-toggle.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_eudebug@sysfs-toggle.html * igt@xe_eudebug_online@debugger-reopen: - shard-dg2-set2: [SKIP][509] ([Intel XE#1130]) -> [SKIP][510] ([Intel XE#2905]) +11 other tests skip [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_eudebug_online@debugger-reopen.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@xe_eudebug_online@debugger-reopen.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][511] ([Intel XE#1473]) -> [SKIP][512] ([Intel XE#1130]) +1 other test skip [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: [SKIP][513] ([Intel XE#1130]) -> [SKIP][514] ([Intel XE#288]) +27 other tests skip [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-433/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: [SKIP][515] ([Intel XE#288]) -> [SKIP][516] ([Intel XE#1130]) +25 other tests skip [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: - shard-dg2-set2: [SKIP][517] ([Intel XE#1130]) -> [SKIP][518] ([Intel XE#2360]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html * igt@xe_exec_threads@threads-bal-fd-userptr: - shard-dg2-set2: [FAIL][519] -> [SKIP][520] ([Intel XE#1130]) [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_exec_threads@threads-bal-fd-userptr.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_exec_threads@threads-bal-fd-userptr.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-dg2-set2: [SKIP][521] ([Intel XE#1130]) -> [DMESG-WARN][522] ([Intel XE#3343]) +1 other test dmesg-warn [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: [DMESG-WARN][523] -> [DMESG-WARN][524] ([Intel XE#3467]) +1 other test dmesg-warn [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-dg2-set2: [SKIP][525] ([Intel XE#1130]) -> [DMESG-WARN][526] ([Intel XE#3467]) +1 other test dmesg-warn [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-dg2-set2: [DMESG-WARN][527] ([Intel XE#3343]) -> [SKIP][528] ([Intel XE#1130]) +2 other tests skip [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [DMESG-FAIL][529] ([Intel XE#3467]) -> [FAIL][530] ([Intel XE#3499]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: [SKIP][531] ([Intel XE#1130]) -> [SKIP][532] ([Intel XE#2541]) +8 other tests skip [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_oa@non-privileged-access-vaddr.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-435/igt@xe_oa@non-privileged-access-vaddr.html * igt@xe_oa@polling-small-buf: - shard-dg2-set2: [SKIP][533] ([Intel XE#2541]) -> [SKIP][534] ([Intel XE#1130]) +7 other tests skip [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_oa@polling-small-buf.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_oa@polling-small-buf.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][535] ([Intel XE#2839] / [Intel XE#977]) -> [SKIP][536] ([Intel XE#1130]) [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_pat@pat-index-xe2.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][537] ([Intel XE#979]) -> [SKIP][538] ([Intel XE#1130]) [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: [SKIP][539] ([Intel XE#1130]) -> [SKIP][540] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-464/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s2idle-basic: - shard-dg2-set2: [SKIP][541] ([Intel XE#1130]) -> [DMESG-WARN][542] ([Intel XE#3468]) [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_pm@s2idle-basic.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-463/igt@xe_pm@s2idle-basic.html * igt@xe_pm@s2idle-basic-exec: - shard-dg2-set2: [DMESG-WARN][543] -> [SKIP][544] ([Intel XE#1130]) +1 other test skip [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_pm@s2idle-basic-exec.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][545] ([Intel XE#569]) -> [SKIP][546] ([Intel XE#1130]) +2 other tests skip [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_pm@s3-basic-exec.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-dg2-set2: [SKIP][547] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][548] ([Intel XE#1130]) [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_pm@s4-d3cold-basic-exec.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [DMESG-WARN][549] ([Intel XE#2280]) -> [SKIP][550] ([Intel XE#1130]) [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_pm@s4-vm-bind-unbind-all.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][551] ([Intel XE#944]) -> [SKIP][552] ([Intel XE#1130]) +4 other tests skip [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-guc.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: [ABORT][553] ([Intel XE#3421]) -> [SKIP][554] ([Intel XE#1130]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_wedged@wedged-at-any-timeout.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1630]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1630 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3130 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3162 [Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191 [Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3404]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3404 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8115 -> IGTPW_12120 IGTPW_12120: 12120 IGT_8115: 4942fc57c20f9cb2195e70991c4e4df03dd3db21 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4: 6abefc8e3bf638090d5277bc3e6fd02bb25579a4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12120/index.html [-- Attachment #2: Type: text/html, Size: 167726 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-11-22 5:12 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-18 8:18 [PATCH i-g-t 0/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Pranay Samala 2024-11-18 8:18 ` [PATCH i-g-t 1/2] " Pranay Samala 2024-11-21 19:19 ` Sharma, Swati2 2024-11-22 5:12 ` B, Jeevan 2024-11-18 8:18 ` [PATCH i-g-t 2/2] HAX: Do not merge Pranay Samala 2024-11-18 20:16 ` ✗ CI.xeBAT: failure for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Patchwork 2024-11-18 20:25 ` ✗ Fi.CI.BAT: " Patchwork 2024-11-19 3:52 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox