* [PATCH i-g-t v2 0/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4
@ 2024-11-22 5:33 Pranay Samala
2024-11-22 5:33 ` [PATCH i-g-t v2 1/2] " Pranay Samala
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Pranay Samala @ 2024-11-22 5:33 UTC (permalink / raw)
To: igt-dev
Cc: karthik.b.s, swati2.sharma, jeevan.b, sameer.lattannavar,
pranay.samala
Intel display version 20 onwards, Tile4 no longer can be used with
horizontal flip.
Bspec: 69853
v2: Fix the shadowing global declaration warn (Jeevan)
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] 9+ messages in thread* [PATCH i-g-t v2 1/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 2024-11-22 5:33 [PATCH i-g-t v2 0/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Pranay Samala @ 2024-11-22 5:33 ` Pranay Samala 2024-11-26 4:51 ` B, Jeevan 2024-11-22 5:34 ` [PATCH i-g-t v2 2/2] HAX: Do not merge Pranay Samala ` (4 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Pranay Samala @ 2024-11-22 5:33 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, swati2.sharma, jeevan.b, sameer.lattannavar, pranay.samala Intel display version 20 onwards, Tile4 no longer can be used with horizontal flip. Bspec: 69853 v2: Fix the shadowing global declaration warn (Jeevan) 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..67ab85852 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 *input_data, int l) +{ + /* Intel display version 20 onwards cannot do reflect-x with tile4 */ + if (!(!is_intel_device(input_data->drm_fd) || + intel_display_ver(intel_get_drm_devid(input_data->drm_fd)) < 20 || + !(fliptab[l].flip == IGT_REFLECT_X && + input_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] 9+ messages in thread
* RE: [PATCH i-g-t v2 1/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 2024-11-22 5:33 ` [PATCH i-g-t v2 1/2] " Pranay Samala @ 2024-11-26 4:51 ` B, Jeevan 0 siblings, 0 replies; 9+ messages in thread From: B, Jeevan @ 2024-11-26 4:51 UTC (permalink / raw) To: Samala, Pranay, igt-dev@lists.freedesktop.org Cc: B S, Karthik, Sharma, Swati2, Lattannavar, Sameer > -----Original Message----- > From: Samala, Pranay <pranay.samala@intel.com> > Sent: Friday, November 22, 2024 11:04 AM > To: igt-dev@lists.freedesktop.org > Cc: B S, Karthik <karthik.b.s@intel.com>; Sharma, Swati2 > <swati2.sharma@intel.com>; B, Jeevan <jeevan.b@intel.com>; Lattannavar, > Sameer <sameer.lattannavar@intel.com>; Samala, Pranay > <pranay.samala@intel.com> > Subject: [PATCH i-g-t v2 1/2] tests/intel/kms_big_fb: Intel display version 20 > onwards doesn't do hflip with tile4 > > Intel display version 20 onwards, Tile4 no longer can be used with horizontal flip. > > Bspec: 69853 > > v2: Fix the shadowing global declaration warn (Jeevan) > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> LGTM Reviewed-by: Jeevan B <jeevan.b@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..67ab85852 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 *input_data, int l) { > + /* Intel display version 20 onwards cannot do reflect-x with tile4 */ > + if (!(!is_intel_device(input_data->drm_fd) || > + intel_display_ver(intel_get_drm_devid(input_data->drm_fd)) < 20 || > + !(fliptab[l].flip == IGT_REFLECT_X && > + input_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 [flat|nested] 9+ messages in thread
* [PATCH i-g-t v2 2/2] HAX: Do not merge 2024-11-22 5:33 [PATCH i-g-t v2 0/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Pranay Samala 2024-11-22 5:33 ` [PATCH i-g-t v2 1/2] " Pranay Samala @ 2024-11-22 5:34 ` Pranay Samala 2024-11-22 6:43 ` ✗ Xe.CI.BAT: failure for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 (rev2) Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Pranay Samala @ 2024-11-22 5:34 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, swati2.sharma, jeevan.b, 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] 9+ messages in thread
* ✗ Xe.CI.BAT: failure for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 (rev2) 2024-11-22 5:33 [PATCH i-g-t v2 0/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Pranay Samala 2024-11-22 5:33 ` [PATCH i-g-t v2 1/2] " Pranay Samala 2024-11-22 5:34 ` [PATCH i-g-t v2 2/2] HAX: Do not merge Pranay Samala @ 2024-11-22 6:43 ` Patchwork 2024-11-22 8:01 ` ✓ i915.CI.BAT: success " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-22 6:43 UTC (permalink / raw) To: Samala, Pranay; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5065 bytes --] == Series Details == Series: tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 (rev2) URL : https://patchwork.freedesktop.org/series/141478/ State : failure == Summary == CI Bug Log - changes from XEIGT_8121_BAT -> XEIGTPW_12170_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12170_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12170_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_12170_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_12170/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_12170/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_12170_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]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/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_12170/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_12170/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_12170/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_12170/bat-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [DMESG-WARN][8] ([Intel XE#3517]) -> [PASS][9] +2 other tests pass [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [FAIL][10] ([Intel XE#1861]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@psr-cursor-plane-move: - bat-adlp-7: [SKIP][12] ([Intel XE#455]) -> [PASS][13] +3 other tests pass [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [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#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517 [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_8121 -> IGTPW_12170 * Linux: xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380 -> xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199 IGTPW_12170: 12170 IGT_8121: 8121 xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380 xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199: bb17c42521f57b592e9ad49daca1f9f9045d3199 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/index.html [-- Attachment #2: Type: text/html, Size: 5875 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 (rev2) 2024-11-22 5:33 [PATCH i-g-t v2 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-22 6:43 ` ✗ Xe.CI.BAT: failure for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 (rev2) Patchwork @ 2024-11-22 8:01 ` Patchwork 2024-11-22 22:38 ` ✗ Xe.CI.Full: failure " Patchwork 2024-11-24 14:40 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-22 8:01 UTC (permalink / raw) To: Samala, Pranay; +Cc: igt-dev == Series Details == Series: tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 (rev2) URL : https://patchwork.freedesktop.org/series/141478/ State : success == Summary == CI Bug Log - changes from IGT_8121 -> IGTPW_12170 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12170: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1: - {bat-mtlp-9}: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-edp-1.html * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-edp-1: - {bat-mtlp-9}: NOTRUN -> [DMESG-WARN][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-mtlp-9/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-edp-1.html Known issues ------------ Here are the changes found in IGTPW_12170 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-adls-6: [PASS][3] -> [FAIL][4] ([i915#12903]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-adls-6/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-adls-6/igt@i915_pm_rpm@module-reload.html - fi-tgl-1115g4: [PASS][5] -> [FAIL][6] ([i915#12903]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - bat-adlp-11: NOTRUN -> [SKIP][7] ([i915#10470]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/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][8] +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-hsw-4770/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-adls-6: NOTRUN -> [SKIP][9] ([i915#4538] / [i915#5286]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-adls-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-jsl-1: NOTRUN -> [SKIP][10] ([i915#5286]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-jsl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-arlh-2: NOTRUN -> [SKIP][11] ([i915#11346]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-arlh-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-rkl-11600: NOTRUN -> [SKIP][12] ([i915#5286]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-rkl-11600/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-pnv-d510: NOTRUN -> [SKIP][13] +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-pnv-d510/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-dg1-7: NOTRUN -> [SKIP][14] ([i915#4538] / [i915#5286]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-dg1-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-glk-j4005: NOTRUN -> [SKIP][15] +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-glk-j4005/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-adlp-9: NOTRUN -> [SKIP][16] ([i915#4538] / [i915#5286]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-adlp-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-kbl-x1275: NOTRUN -> [SKIP][17] +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-kbl-x1275/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-rpls-4: NOTRUN -> [SKIP][18] ([i915#4538] / [i915#5286]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-rpls-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-cfl-8109u: NOTRUN -> [SKIP][19] +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-cfl-8109u/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-kbl-7567u: NOTRUN -> [SKIP][20] +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-kbl-7567u/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-kbl-8809g: NOTRUN -> [SKIP][21] +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-kbl-8809g/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-apl-1: NOTRUN -> [SKIP][22] +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-apl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-rplp-1: NOTRUN -> [SKIP][23] ([i915#4538] / [i915#5286]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-rplp-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-ilk-650: NOTRUN -> [SKIP][24] +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-ilk-650/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-tgl-1115g4: NOTRUN -> [SKIP][25] ([i915#5286]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-tgl-1115g4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-cfl-guc: NOTRUN -> [SKIP][26] +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-cfl-guc/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-mtlp-6: NOTRUN -> [SKIP][27] ([i915#9792]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-adlp-11: NOTRUN -> [SKIP][28] ([i915#10470] / [i915#10501]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-adlp-11/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - bat-dg1-6: NOTRUN -> [SKIP][29] ([i915#12311]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-dg1-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-cfl-8700k: NOTRUN -> [SKIP][30] +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-cfl-8700k/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - fi-blb-e6850: NOTRUN -> [SKIP][31] +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/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][32] ([i915#5286]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-jsl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - bat-twl-2: NOTRUN -> [SKIP][33] ([i915#11153]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-twl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - fi-ivb-3770: NOTRUN -> [SKIP][34] +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-ivb-3770/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - fi-elk-e7500: NOTRUN -> [SKIP][35] +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-elk-e7500/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - fi-bsw-nick: NOTRUN -> [SKIP][36] +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-bsw-nick/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - fi-kbl-guc: NOTRUN -> [SKIP][37] +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-kbl-guc/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - bat-adlm-1: NOTRUN -> [SKIP][38] ([i915#9900]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/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][39] +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-kbl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html - bat-adlp-6: NOTRUN -> [SKIP][40] ([i915#4538] / [i915#5286]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-adlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html - fi-skl-6600u: NOTRUN -> [SKIP][41] +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/fi-skl-6600u/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html #### Possible fixes #### * igt@i915_module_load@load: - {bat-mtlp-9}: [INCOMPLETE][42] ([i915#12601]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-mtlp-9/igt@i915_module_load@load.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-mtlp-9/igt@i915_module_load@load.html * igt@i915_pm_rpm@module-reload: - bat-dg2-11: [FAIL][44] ([i915#12903]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-dg2-11/igt@i915_pm_rpm@module-reload.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-dg2-11/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [ABORT][46] ([i915#12061]) -> [PASS][47] +1 other test pass [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-arlh-3/igt@i915_selftest@live@workarounds.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-arlh-3/igt@i915_selftest@live@workarounds.html * igt@kms_chamelium_edid@hdmi-edid-read: - bat-dg2-13: [DMESG-WARN][48] ([i915#12253]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-dg2-11: [SKIP][50] ([i915#9197]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1: - bat-apl-1: [DMESG-WARN][52] ([i915#12921]) -> [PASS][53] +1 other test pass [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8121/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-b-dp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [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#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#12601]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12601 [i915#12695]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12695 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12921]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12921 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [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_8121 -> IGTPW_12170 * Linux: CI_DRM_15725 -> CI_DRM_15727 CI-20190529: 20190529 CI_DRM_15725: e46649e7764a9f6868ccbcba7b8b23b413303380 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15727: bb17c42521f57b592e9ad49daca1f9f9045d3199 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12170: 12170 IGT_8121: 8121 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 (rev2) 2024-11-22 5:33 [PATCH i-g-t v2 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-22 8:01 ` ✓ i915.CI.BAT: success " Patchwork @ 2024-11-22 22:38 ` Patchwork 2024-11-26 23:21 ` Matt Roper 2024-11-24 14:40 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2024-11-22 22:38 UTC (permalink / raw) To: Samala, Pranay; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 132672 bytes --] == Series Details == Series: tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 (rev2) URL : https://patchwork.freedesktop.org/series/141478/ State : failure == Summary == CI Bug Log - changes from XEIGT_8121_full -> XEIGTPW_12170_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12170_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12170_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_12170_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_color@deep-color: - shard-bmg: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_color@deep-color.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_color@deep-color.html * igt@kms_color@deep-color@pipe-d-dp-2-gamma: - shard-bmg: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_color@deep-color@pipe-d-dp-2-gamma.html * igt@xe_compute_preempt@compute-preempt-many: - shard-bmg: [PASS][5] -> [FAIL][6] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_compute_preempt@compute-preempt-many.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute: - shard-lnl: [PASS][7] -> [FAIL][8] +2 other tests fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-8/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-3/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: - shard-bmg: [PASS][9] -> [DMESG-WARN][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html #### Warnings #### * igt@core_hotunplug@unbind-rebind: - shard-bmg: [INCOMPLETE][11] ([Intel XE#3468]) -> [INCOMPLETE][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@core_hotunplug@unbind-rebind.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@core_hotunplug@unbind-rebind.html * igt@core_hotunplug@unplug-rescan: - shard-bmg: [DMESG-WARN][13] ([Intel XE#3468]) -> [INCOMPLETE][14] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@core_hotunplug@unplug-rescan.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@core_hotunplug@unplug-rescan.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: [FAIL][15] ([Intel XE#3162]) -> [SKIP][16] +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@xe_exec_balancer@no-exec-parallel-userptr-invalidate-race: - shard-dg2-set2: [SKIP][17] ([Intel XE#1130]) -> [DMESG-WARN][18] [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_exec_balancer@no-exec-parallel-userptr-invalidate-race.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_exec_balancer@no-exec-parallel-userptr-invalidate-race.html * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate: - shard-bmg: [DMESG-WARN][19] ([Intel XE#3371] / [Intel XE#3515]) -> [DMESG-WARN][20] [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html * igt@xe_module_load@reload: - shard-bmg: [DMESG-WARN][21] ([Intel XE#3467]) -> [DMESG-WARN][22] [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_module_load@reload.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_module_load@reload.html * igt@xe_wedged@wedged-mode-toggle: - shard-bmg: [DMESG-WARN][23] ([Intel XE#3468]) -> [DMESG-WARN][24] [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_wedged@wedged-mode-toggle.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_wedged@wedged-mode-toggle.html Known issues ------------ Here are the changes found in XEIGTPW_12170_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getclient: - shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#2423]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@core_getclient.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@core_getclient.html * igt@core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#1885]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@core_hotunplug@hotreplug-lateclose.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@core_hotunplug@hotreplug-lateclose.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][29] -> [SKIP][30] ([Intel XE#3453]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@core_setmaster@master-drop-set-shared-fd.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html * igt@core_setmaster@master-drop-set-user: - shard-dg2-set2: [PASS][31] -> [FAIL][32] ([Intel XE#3339]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@core_setmaster@master-drop-set-user.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@core_setmaster@master-drop-set-user.html * igt@fbdev@info: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#2134]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@fbdev@info.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][34] -> [SKIP][35] ([Intel XE#2423] / [i915#2575]) +125 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2327]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1407]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-4/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-bmg: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#3225]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_big_fb@linear-64bpp-rotate-180.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1124]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1124]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1124]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2314] / [Intel XE#2894]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#367]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#787]) +132 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][48] -> [SKIP][49] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2887]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2887]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2652] / [Intel XE#787]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-hdmi-a-3.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#455] / [Intel XE#787]) +18 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#2692] / [Intel XE#3468]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: [PASS][56] -> [INCOMPLETE][57] ([Intel XE#3468]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#314]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#373]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#373]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@dp-hpd-after-hibernate: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2252]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html * igt@kms_color@ctm-0-50@pipe-d-hdmi-a-3: - shard-bmg: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#877]) +3 other tests dmesg-warn [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_color@ctm-0-50@pipe-d-hdmi-a-3.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_color@ctm-0-50@pipe-d-hdmi-a-3.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2390]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#307]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#1178]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][67] ([Intel XE#1178]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#1188]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#2321]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2321]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#308]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2320]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_cursor_crc@cursor-random-64x21.html - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1424]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-6/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-sliding-256x256: - shard-bmg: [PASS][74] -> [DMESG-FAIL][75] ([Intel XE#3468]) +3 other tests dmesg-fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-256x256.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-256x256.html * igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-a-edp-1: - shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#2577]) +1 other test fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-7/igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-a-edp-1.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-5/igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-a-edp-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2423] / [i915#2575]) +13 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#2291]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#309]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][82] -> [SKIP][83] ([Intel XE#2425]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_display_modes@extended-mode-basic.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#2244]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2136]) +10 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#2373]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_feature_discovery@display-2x.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: [PASS][88] -> [DMESG-WARN][89] ([Intel XE#3468]) +85 other tests dmesg-warn [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][90] -> [SKIP][91] ([Intel XE#2316]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@blocking-wf_vblank: - shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#3149] / [Intel XE#886]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-7/igt@kms_flip@blocking-wf_vblank.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-1/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-wf_vblank-interruptible: - shard-lnl: [PASS][94] -> [FAIL][95] ([Intel XE#886]) +2 other tests fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-6/igt@kms_flip@flip-vs-wf_vblank-interruptible.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-8/igt@kms_flip@flip-vs-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#455]) +7 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#651]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#651]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render: - shard-dg2-set2: [PASS][99] -> [SKIP][100] ([Intel XE#2136]) +40 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2312]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [FAIL][102] ([Intel XE#2333]) +2 other tests fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#656]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2311]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#653]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2313]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2934]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2927]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2486]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - shard-dg2-set2: [PASS][110] -> [INCOMPLETE][111] ([Intel XE#1727]) +1 other test incomplete [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt@kms_plane@pixel-format-source-clamping: - shard-bmg: NOTRUN -> [DMESG-WARN][112] ([Intel XE#2566] / [Intel XE#3468]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0: - shard-bmg: NOTRUN -> [DMESG-WARN][113] ([Intel XE#3468]) +12 other tests dmesg-warn [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html * igt@kms_plane_multiple@tiling-x@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][114] ([Intel XE#1727]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_plane_multiple@tiling-x@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][115] ([Intel XE#361]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2763]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][118] -> [FAIL][119] ([Intel XE#718]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2392]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2-set2: [PASS][121] -> [DMESG-WARN][122] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_pm_rpm@cursor-dpms.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_pm_rpm@cursor-dpms.html - shard-bmg: [PASS][123] -> [INCOMPLETE][124] ([Intel XE#1727] / [Intel XE#3468]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_pm_rpm@cursor-dpms.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2-set2: [PASS][125] -> [ABORT][126] ([Intel XE#3468]) +1 other test abort [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_pm_rpm@dpms-non-lpsp.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-bmg: [PASS][127] -> [DMESG-WARN][128] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@universal-planes: - shard-dg2-set2: [PASS][129] -> [SKIP][130] ([Intel XE#2446]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_pm_rpm@universal-planes.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_pm_rpm@universal-planes.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#2893]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#1489]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@psr2-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_psr@psr2-cursor-blt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#3414]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#3414]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2413]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-none.html - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2413] / [Intel XE#374]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-8/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#374]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-8/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][140] ([Intel XE#3468]) +1 other test dmesg-warn [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-6.html * igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][141] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-6.html * igt@kms_vrr@max-min: - shard-lnl: [PASS][142] -> [FAIL][143] ([Intel XE#1522]) +1 other test fail [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-6/igt@kms_vrr@max-min.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-4/igt@kms_vrr@max-min.html * igt@xe_drm_fdinfo@utilization-others-full-load: - shard-lnl: [PASS][144] -> [FAIL][145] ([Intel XE#3512]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-5/igt@xe_drm_fdinfo@utilization-others-full-load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-2/igt@xe_drm_fdinfo@utilization-others-full-load.html * igt@xe_eudebug@basic-read-event: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2905]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_eudebug@basic-read-event.html * igt@xe_eudebug@multigpu-basic-client-many: - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#2905]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-4/igt@xe_eudebug@multigpu-basic-client-many.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2905]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][149] -> [TIMEOUT][150] ([Intel XE#1473] / [Intel XE#2472]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html - shard-dg2-set2: [PASS][151] -> [TIMEOUT][152] ([Intel XE#1473]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-small-cm: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#688]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-7/igt@xe_evict@evict-small-cm.html * igt@xe_exec_balancer@once-parallel-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1130]) +19 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_exec_balancer@once-parallel-userptr.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2322]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html * igt@xe_exec_basic@twice-userptr: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][156] ([Intel XE#1727]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_exec_basic@twice-userptr.html * igt@xe_exec_fault_mode@many-execqueues-invalid-fault: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#288]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-invalid-fault.html * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate: - shard-lnl: [PASS][158] -> [DMESG-WARN][159] ([Intel XE#3371]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-3/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html - shard-bmg: [PASS][160] -> [DMESG-FAIL][161] ([Intel XE#3371]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-bmg: [PASS][162] -> [DMESG-WARN][163] ([Intel XE#3343] / [Intel XE#3468]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-dg2-set2: [PASS][164] -> [DMESG-WARN][165] ([Intel XE#3467]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-bmg: NOTRUN -> [DMESG-FAIL][166] ([Intel XE#3467]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][167] ([Intel XE#3467]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-dg2-set2: [PASS][168] -> [SKIP][169] ([Intel XE#2229]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_migrate: - shard-bmg: [PASS][170] -> [SKIP][171] ([Intel XE#1192]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_live_ktest@xe_migrate.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_live_ktest@xe_migrate.html * igt@xe_mmap@vram: - shard-dg2-set2: [PASS][172] -> [DMESG-WARN][173] ([Intel XE#1727]) +1 other test dmesg-warn [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_mmap@vram.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_mmap@vram.html * igt@xe_module_load@many-reload: - shard-bmg: [PASS][174] -> [DMESG-WARN][175] ([Intel XE#3467]) +2 other tests dmesg-warn [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_module_load@many-reload.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_module_load@many-reload.html - shard-dg2-set2: [PASS][176] -> [FAIL][177] ([Intel XE#3546]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_module_load@many-reload.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_module_load@many-reload.html * igt@xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#3573]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@xe_oa@syncs-ufence-wait-cfg.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2248]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pm@s2idle-exec-after: - shard-dg2-set2: [PASS][180] -> [SKIP][181] ([Intel XE#1130]) +218 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_pm@s2idle-exec-after.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s3-basic-exec: - shard-bmg: [PASS][182] -> [DMESG-WARN][183] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_pm@s3-basic-exec.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-exec-after: - shard-bmg: [PASS][184] -> [DMESG-WARN][185] ([Intel XE#3468] / [Intel XE#569]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_pm@s3-exec-after.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_pm@s3-exec-after.html * igt@xe_pm_residency@gt-c6-freeze@gt1: - shard-bmg: [PASS][186] -> [DMESG-FAIL][187] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_pm_residency@gt-c6-freeze@gt1.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@xe_pm_residency@gt-c6-freeze@gt1.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#3342]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-7/igt@xe_sriov_flr@flr-vf1-clear.html - shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#3342]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@core_getstats: - shard-dg2-set2: [SKIP][190] ([Intel XE#2423]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@core_getstats.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@core_getstats.html * igt@core_hotunplug@hotrebind-lateclose: - shard-lnl: [DMESG-WARN][192] -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-3/igt@core_hotunplug@hotrebind-lateclose.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-2/igt@core_hotunplug@hotrebind-lateclose.html * igt@fbdev@nullptr: - shard-dg2-set2: [SKIP][194] ([Intel XE#2134]) -> [PASS][195] +1 other test pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@fbdev@nullptr.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@fbdev@nullptr.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][196] ([Intel XE#827]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: [DMESG-WARN][198] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [SKIP][200] ([Intel XE#2291]) -> [PASS][201] +4 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_dp_aux_dev: - shard-bmg: [SKIP][202] ([Intel XE#3009]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_dp_aux_dev.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][204] ([Intel XE#3070]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [SKIP][206] ([Intel XE#2316]) -> [PASS][207] +6 other tests pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][208] ([Intel XE#3486]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@busy-flip: - shard-dg2-set2: [SKIP][210] ([Intel XE#2423] / [i915#2575]) -> [PASS][211] +90 other tests pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_flip@busy-flip.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_flip@busy-flip.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1: - shard-lnl: [FAIL][212] ([Intel XE#886]) -> [PASS][213] +1 other test pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [SKIP][214] ([Intel XE#2136]) -> [PASS][215] +26 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: - shard-dg2-set2: [SKIP][216] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][217] +13 other tests pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-bmg: [INCOMPLETE][218] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][219] +3 other tests pass [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_force_connector_basic@force-edid: - shard-dg2-set2: [DMESG-WARN][220] ([Intel XE#1727]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_force_connector_basic@force-edid.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@basic: - shard-dg2-set2: [SKIP][222] ([Intel XE#2351]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_frontbuffer_tracking@basic.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-dg2-set2: [INCOMPLETE][224] ([Intel XE#1727]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256: - shard-bmg: [DMESG-FAIL][226] -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256.html * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64: - shard-bmg: [DMESG-FAIL][228] ([Intel XE#3468]) -> [PASS][229] +12 other tests pass [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][230] ([Intel XE#2571]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][232] ([Intel XE#1430]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@legacy-planes: - shard-dg2-set2: [SKIP][234] ([Intel XE#2446]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_pm_rpm@legacy-planes.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_pm_rpm@legacy-planes.html * igt@kms_pm_rpm@legacy-planes-dpms@plane-59: - shard-lnl: [DMESG-WARN][236] ([Intel XE#3184]) -> [PASS][237] +1 other test pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-1/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-3/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-bmg: [DMESG-WARN][238] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_pm_rpm@system-suspend-modeset.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_sequence@get-busy: - shard-bmg: [DMESG-WARN][240] ([Intel XE#3468]) -> [PASS][241] +38 other tests pass [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_sequence@get-busy.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_sequence@get-busy.html * igt@kms_setmode@basic@pipe-a-hdmi-a-3: - shard-bmg: [FAIL][242] ([Intel XE#3559]) -> [PASS][243] +4 other tests pass [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_setmode@basic@pipe-a-hdmi-a-3.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_setmode@basic@pipe-a-hdmi-a-3.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][244] ([Intel XE#1435]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: [INCOMPLETE][246] ([Intel XE#1727]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@xe_compute@ccs-mode-basic.html * igt@xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: [SKIP][248] ([Intel XE#1130]) -> [PASS][249] +160 other tests pass [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_exec_balancer@twice-virtual-basic.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_exec_balancer@twice-virtual-basic.html * igt@xe_exercise_blt@fast-copy: - shard-bmg: [INCOMPLETE][250] -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_exercise_blt@fast-copy.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_exercise_blt@fast-copy.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [DMESG-WARN][252] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][253] +2 other tests pass [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-bmg: [DMESG-WARN][254] ([Intel XE#3521]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [TIMEOUT][256] ([Intel XE#2961] / [Intel XE#3191]) -> [PASS][257] +1 other test pass [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_live_ktest@xe_bo.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_live_ktest@xe_bo.html * igt@xe_module_load@reload-no-display: - shard-bmg: [DMESG-WARN][258] ([Intel XE#3467]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_module_load@reload-no-display.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_module_load@reload-no-display.html * igt@xe_oa@oa-regs-whitelisted: - shard-lnl: [FAIL][260] ([Intel XE#2514]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted.html - shard-bmg: [FAIL][262] ([Intel XE#2514]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-bmg: [DMESG-WARN][264] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_pm@s3-vm-bind-prefetch.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm@s4-basic: - shard-lnl: [ABORT][266] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-2/igt@xe_pm@s4-basic.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-4/igt@xe_pm@s4-basic.html * igt@xe_pm@s4-mocs: - shard-dg2-set2: [DMESG-WARN][268] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_pm@s4-mocs.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_pm@s4-mocs.html #### Warnings #### * igt@core_hotunplug@hotrebind-lateclose: - shard-dg2-set2: [DMESG-WARN][270] ([Intel XE#3468]) -> [SKIP][271] ([Intel XE#1885]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@core_hotunplug@hotrebind-lateclose.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@core_hotunplug@hotrebind-lateclose.html * igt@kms_addfb_basic@bad-pitch-256: - shard-dg2-set2: [SKIP][272] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][273] ([Intel XE#1727]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_addfb_basic@bad-pitch-256.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_addfb_basic@bad-pitch-256.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][274] ([Intel XE#2423] / [i915#2575]) -> [SKIP][275] ([Intel XE#873]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_async_flips@invalid-async-flip.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][276] ([Intel XE#316]) -> [SKIP][277] ([Intel XE#2136] / [Intel XE#2351]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][278] ([Intel XE#2136]) -> [SKIP][279] ([Intel XE#316]) +3 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][280] ([Intel XE#316]) -> [SKIP][281] ([Intel XE#2136]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][282] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][283] ([Intel XE#316]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][284] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][285] ([Intel XE#1124]) +7 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-set2: [SKIP][286] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][287] ([Intel XE#619]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][288] ([Intel XE#607]) -> [SKIP][289] ([Intel XE#2136] / [Intel XE#2351]) [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][290] ([Intel XE#1124]) -> [SKIP][291] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][292] ([Intel XE#619]) -> [SKIP][293] ([Intel XE#2136] / [Intel XE#2351]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][294] ([Intel XE#607]) -> [SKIP][295] ([Intel XE#2136]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: [SKIP][296] ([Intel XE#2136]) -> [SKIP][297] ([Intel XE#1124]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][298] ([Intel XE#1124]) -> [SKIP][299] ([Intel XE#2136]) +9 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][300] ([Intel XE#2423] / [i915#2575]) -> [SKIP][301] ([Intel XE#367]) +2 other tests skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][302] ([Intel XE#2191]) -> [SKIP][303] ([Intel XE#2423] / [i915#2575]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: [SKIP][304] ([Intel XE#2423] / [i915#2575]) -> [SKIP][305] ([Intel XE#2191]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][306] ([Intel XE#367]) -> [SKIP][307] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][308] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][309] ([Intel XE#2136]) +12 other tests skip [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][310] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][311] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][312] ([Intel XE#2136]) -> [SKIP][313] ([Intel XE#2907]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][314] ([Intel XE#3442]) -> [SKIP][315] ([Intel XE#2136]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][316] ([Intel XE#2136]) -> [SKIP][317] ([Intel XE#3442]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [FAIL][318] ([Intel XE#616]) -> [SKIP][319] ([Intel XE#2136]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][320] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][321] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][322] ([Intel XE#2907]) -> [SKIP][323] ([Intel XE#2136]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][324] ([Intel XE#2136]) -> [SKIP][325] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][326] ([Intel XE#2423] / [i915#2575]) -> [SKIP][327] ([Intel XE#306]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@degamma: - shard-dg2-set2: [SKIP][328] ([Intel XE#306]) -> [SKIP][329] ([Intel XE#2423] / [i915#2575]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_chamelium_color@degamma.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][330] ([Intel XE#373]) -> [SKIP][331] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-dg2-set2: [SKIP][332] ([Intel XE#2423] / [i915#2575]) -> [SKIP][333] ([Intel XE#373]) +6 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_chamelium_hpd@dp-hpd-fast.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_content_protection@atomic: - shard-bmg: [FAIL][334] ([Intel XE#1178]) -> [SKIP][335] ([Intel XE#2341]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_content_protection@atomic.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_content_protection@atomic.html - shard-dg2-set2: [FAIL][336] ([Intel XE#1178]) -> [SKIP][337] ([Intel XE#2423] / [i915#2575]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_content_protection@atomic.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][338] ([Intel XE#2423] / [i915#2575]) -> [SKIP][339] ([Intel XE#307]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2-set2: [SKIP][340] ([Intel XE#2423] / [i915#2575]) -> [FAIL][341] ([Intel XE#1178]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_content_protection@legacy.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][342] ([Intel XE#2341]) -> [FAIL][343] ([Intel XE#1178]) [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_content_protection@srm.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-bmg: [SKIP][344] ([Intel XE#2341]) -> [FAIL][345] ([Intel XE#1188]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_content_protection@uevent.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][346] ([Intel XE#2423] / [i915#2575]) -> [SKIP][347] ([Intel XE#308]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2-set2: [SKIP][348] ([Intel XE#308]) -> [SKIP][349] ([Intel XE#2423] / [i915#2575]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2-set2: [SKIP][350] ([Intel XE#323]) -> [SKIP][351] ([Intel XE#2423] / [i915#2575]) [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-bmg: [DMESG-WARN][352] -> [SKIP][353] ([Intel XE#2291]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [SKIP][354] ([Intel XE#2423] / [i915#2575]) -> [SKIP][355] ([Intel XE#323]) +2 other tests skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][356] ([Intel XE#776]) -> [SKIP][357] ([Intel XE#2136]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_fbcon_fbt@psr-suspend.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][358] ([Intel XE#701]) -> [SKIP][359] ([Intel XE#2423] / [i915#2575]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_feature_discovery@chamelium.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][360] ([Intel XE#1135]) -> [SKIP][361] ([Intel XE#2423] / [i915#2575]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_feature_discovery@psr1.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][362] ([Intel XE#2423] / [i915#2575]) -> [SKIP][363] ([Intel XE#1135]) [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_feature_discovery@psr2.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: [FAIL][364] ([Intel XE#3321] / [Intel XE#3487]) -> [DMESG-WARN][365] ([Intel XE#3468]) +1 other test dmesg-warn [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: [FAIL][366] ([Intel XE#2882]) -> [DMESG-WARN][367] ([Intel XE#3468]) +2 other tests dmesg-warn [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2-set2: [DMESG-WARN][368] ([Intel XE#1727]) -> [SKIP][369] ([Intel XE#2136]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg2-set2: [INCOMPLETE][370] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][371] ([Intel XE#2136] / [Intel XE#2351]) [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][372] ([Intel XE#2136]) -> [SKIP][373] ([Intel XE#455]) +5 other tests skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-dg2-set2: [SKIP][374] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][375] ([Intel XE#455]) +2 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][376] ([Intel XE#455]) -> [SKIP][377] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/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][378] ([Intel XE#455]) -> [SKIP][379] ([Intel XE#2136]) +5 other tests skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/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][380] ([Intel XE#2423] / [i915#2575]) -> [SKIP][381] ([i915#5274]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_force_connector_basic@prune-stale-modes.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][382] ([Intel XE#2311]) -> [SKIP][383] ([Intel XE#2312]) +18 other tests skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][384] ([Intel XE#2312]) -> [SKIP][385] ([Intel XE#2311]) +15 other tests skip [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][386] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][387] ([Intel XE#651]) +11 other tests skip [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][388] ([Intel XE#2312]) -> [FAIL][389] ([Intel XE#2333]) +7 other tests fail [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [DMESG-FAIL][390] ([Intel XE#3468]) -> [SKIP][391] ([Intel XE#2312]) [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [FAIL][392] ([Intel XE#2333]) -> [DMESG-FAIL][393] ([Intel XE#3468]) +5 other tests dmesg-fail [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [DMESG-FAIL][394] ([Intel XE#3468]) -> [FAIL][395] ([Intel XE#2333]) +4 other tests fail [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/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][396] ([Intel XE#2333]) -> [SKIP][397] ([Intel XE#2312]) +8 other tests skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/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][398] ([Intel XE#2136]) -> [SKIP][399] ([Intel XE#651]) +17 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: [SKIP][400] ([Intel XE#651]) -> [SKIP][401] ([Intel XE#2136]) +25 other tests skip [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][402] ([Intel XE#651]) -> [SKIP][403] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][404] ([Intel XE#653]) -> [SKIP][405] ([Intel XE#2136]) +30 other tests skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][406] ([Intel XE#653]) -> [SKIP][407] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-bmg: [FAIL][408] ([Intel XE#2333]) -> [INCOMPLETE][409] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2: - shard-bmg: [FAIL][410] ([Intel XE#2333]) -> [INCOMPLETE][411] ([Intel XE#1727] / [Intel XE#3468]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][412] ([Intel XE#2136]) -> [SKIP][413] ([Intel XE#1158]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][414] ([Intel XE#2312]) -> [SKIP][415] ([Intel XE#2313]) +14 other tests skip [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][416] ([Intel XE#2136]) -> [SKIP][417] ([Intel XE#653]) +18 other tests skip [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][418] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][419] ([Intel XE#653]) +15 other tests skip [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][420] ([Intel XE#2313]) -> [SKIP][421] ([Intel XE#2312]) +20 other tests skip [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][422] ([Intel XE#2423] / [i915#2575]) -> [SKIP][423] ([Intel XE#605]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2-set2: [SKIP][424] ([Intel XE#2423] / [i915#2575]) -> [SKIP][425] ([Intel XE#455]) +8 other tests skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_hdr@brightness-with-hdr.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_hdr@brightness-with-hdr.html - shard-bmg: [SKIP][426] ([Intel XE#3544]) -> [SKIP][427] ([Intel XE#3374] / [Intel XE#3544]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][428] ([Intel XE#346]) -> [SKIP][429] ([Intel XE#2136]) +1 other test skip [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: [SKIP][430] ([Intel XE#2136]) -> [SKIP][431] ([Intel XE#2925]) +1 other test skip [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_plane_cursor@overlay: - shard-dg2-set2: [FAIL][432] ([Intel XE#616]) -> [SKIP][433] ([Intel XE#2423] / [i915#2575]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_plane_cursor@overlay.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_plane_cursor@overlay.html * igt@kms_plane_multiple@tiling-x: - shard-dg2-set2: [SKIP][434] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][435] ([Intel XE#1727]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_plane_multiple@tiling-x.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_plane_multiple@tiling-x.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [SKIP][436] ([Intel XE#2423] / [i915#2575]) -> [FAIL][437] ([Intel XE#361]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2-set2: [SKIP][438] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][439] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][440] ([Intel XE#870]) -> [SKIP][441] ([Intel XE#2136]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][442] ([Intel XE#2136]) -> [SKIP][443] ([Intel XE#870]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][444] ([Intel XE#908]) -> [SKIP][445] ([Intel XE#2136] / [Intel XE#2351]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_pm_dc@dc6-dpms.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_pm_dc@dc6-dpms.html - shard-bmg: [FAIL][446] ([Intel XE#1430]) -> [DMESG-FAIL][447] ([Intel XE#3468]) [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][448] ([Intel XE#1129]) -> [SKIP][449] ([Intel XE#2136] / [Intel XE#2351]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_pm_dc@dc6-psr.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2-set2: [SKIP][450] ([Intel XE#2446]) -> [DMESG-WARN][451] ([Intel XE#1727] / [Intel XE#3468]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [ABORT][452] ([Intel XE#3468]) -> [SKIP][453] ([Intel XE#2446]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_pm_rpm@system-suspend-modeset.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][454] ([Intel XE#2136]) -> [SKIP][455] ([Intel XE#1489]) +7 other tests skip [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][456] ([Intel XE#1489]) -> [SKIP][457] ([Intel XE#2136]) +7 other tests skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][458] ([Intel XE#2136]) -> [SKIP][459] ([Intel XE#1122]) +2 other tests skip [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-set2: [SKIP][460] ([Intel XE#1122]) -> [SKIP][461] ([Intel XE#2136]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_psr2_su@page_flip-p010.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: [SKIP][462] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][463] ([Intel XE#2136]) +16 other tests skip [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][464] ([Intel XE#2136]) -> [SKIP][465] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@pr-primary-page-flip: - shard-dg2-set2: [SKIP][466] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][467] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_psr@pr-primary-page-flip.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_psr@pr-primary-page-flip.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][468] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][469] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_psr@pr-sprite-plane-onoff.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][470] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][471] ([Intel XE#2351]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_psr@psr-sprite-plane-onoff.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2-set2: [SKIP][472] ([Intel XE#3414]) -> [SKIP][473] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_rotation_crc@bad-pixel-format.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][474] ([Intel XE#1127]) -> [SKIP][475] ([Intel XE#2423] / [i915#2575]) [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][476] ([Intel XE#2423] / [i915#2575]) -> [SKIP][477] ([Intel XE#3414]) +4 other tests skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][478] ([Intel XE#2423] / [i915#2575]) -> [SKIP][479] ([Intel XE#1127]) [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][480] ([Intel XE#2426]) -> [FAIL][481] ([Intel XE#1729]) [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][482] ([Intel XE#2423] / [i915#2575]) -> [SKIP][483] ([Intel XE#362]) [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][484] ([Intel XE#2423] / [i915#2575]) -> [SKIP][485] ([Intel XE#330]) [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@ts-continuation-dpms-rpm: - shard-dg2-set2: [DMESG-WARN][486] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][487] ([Intel XE#2423] / [i915#2575]) [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_vblank@ts-continuation-dpms-rpm.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_vblank@ts-continuation-dpms-rpm.html * igt@kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [SKIP][488] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][489] ([Intel XE#1727] / [Intel XE#3468]) [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_vblank@ts-continuation-suspend.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][490] ([Intel XE#455]) -> [SKIP][491] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_vrr@flip-dpms.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][492] ([Intel XE#756]) -> [SKIP][493] ([Intel XE#2423] / [i915#2575]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: [SKIP][494] ([Intel XE#2423] / [i915#2575]) -> [SKIP][495] ([Intel XE#756]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_writeback@writeback-pixel-formats.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_writeback@writeback-pixel-formats.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][496] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][497] ([Intel XE#1130]) [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][498] ([Intel XE#1123]) -> [SKIP][499] ([Intel XE#1130]) [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: [SKIP][500] ([Intel XE#1130]) -> [SKIP][501] ([Intel XE#1123]) [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfd.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][502] ([Intel XE#1130]) -> [SKIP][503] ([Intel XE#1126]) [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][504] ([Intel XE#2905]) -> [SKIP][505] ([Intel XE#1130]) +12 other tests skip [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_eudebug@basic-close.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_eudebug@basic-close.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-bmg: [FAIL][506] ([Intel XE#2364]) -> [DMESG-FAIL][507] ([Intel XE#3468]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_evict@evict-beng-large-multi-vm-cm.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_evict@evict-beng-large-multi-vm-cm.html - shard-dg2-set2: [FAIL][508] ([Intel XE#1600]) -> [SKIP][509] ([Intel XE#1130]) [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [SKIP][510] ([Intel XE#1130]) -> [TIMEOUT][511] ([Intel XE#1473]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: [SKIP][512] ([Intel XE#288]) -> [SKIP][513] ([Intel XE#1130]) +33 other tests skip [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][514] ([Intel XE#1130]) -> [SKIP][515] ([Intel XE#288]) +30 other tests skip [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: - shard-dg2-set2: [SKIP][516] ([Intel XE#2360]) -> [SKIP][517] ([Intel XE#1130]) [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: [SKIP][518] ([Intel XE#1130]) -> [SKIP][519] ([Intel XE#2905]) +12 other tests skip [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate: - shard-dg2-set2: [SKIP][520] ([Intel XE#1130]) -> [DMESG-FAIL][521] ([Intel XE#3371]) [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-dg2-set2: [DMESG-WARN][522] ([Intel XE#1727] / [Intel XE#3343]) -> [DMESG-WARN][523] ([Intel XE#3343]) [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-bmg: [DMESG-WARN][524] ([Intel XE#3343]) -> [DMESG-WARN][525] ([Intel XE#3343] / [Intel XE#3468]) [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-dg2-set2: [DMESG-WARN][526] ([Intel XE#3467]) -> [SKIP][527] ([Intel XE#1130]) +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [FAIL][528] ([Intel XE#3499]) -> [DMESG-FAIL][529] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-fail [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [DMESG-WARN][530] ([Intel XE#3467]) -> [DMESG-WARN][531] ([Intel XE#3467] / [Intel XE#3468]) [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-dg2-set2: [SKIP][532] ([Intel XE#1130]) -> [DMESG-WARN][533] ([Intel XE#3467]) +2 other tests dmesg-warn [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][534] ([Intel XE#1130]) -> [SKIP][535] ([Intel XE#255]) [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_huc_copy@huc_copy.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][536] ([Intel XE#1192]) -> [SKIP][537] ([Intel XE#2833]) [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html * igt@xe_mmap@small-bar: - shard-dg2-set2: [SKIP][538] ([Intel XE#512]) -> [SKIP][539] ([Intel XE#1130]) [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_mmap@small-bar.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_mmap@small-bar.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [DMESG-WARN][540] ([Intel XE#3467]) -> [FAIL][541] ([Intel XE#3546]) [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_module_load@reload-no-display.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_module_load@reload-no-display.html * igt@xe_oa@invalid-create-userspace-config: - shard-dg2-set2: [SKIP][542] ([Intel XE#1130]) -> [SKIP][543] ([Intel XE#3573]) +10 other tests skip [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_oa@invalid-create-userspace-config.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_oa@invalid-create-userspace-config.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: [SKIP][544] ([Intel XE#3573]) -> [SKIP][545] ([Intel XE#1130]) +11 other tests skip [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][546] ([Intel XE#1337]) -> [SKIP][547] ([Intel XE#1130]) [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_pat@display-vs-wb-transient.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pm@d3cold-basic: - shard-dg2-set2: [SKIP][548] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][549] ([Intel XE#1130]) [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_pm@d3cold-basic.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][550] ([Intel XE#1130]) -> [SKIP][551] ([Intel XE#2284]) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_pm@d3cold-mocs.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3hot-mmap-vram: - shard-dg2-set2: [DMESG-WARN][552] ([Intel XE#3468]) -> [SKIP][553] ([Intel XE#1130]) [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_pm@d3hot-mmap-vram.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [SKIP][554] ([Intel XE#1130]) -> [DMESG-WARN][555] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_pm@s3-basic-exec.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-mocs: - shard-dg2-set2: [DMESG-WARN][556] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][557] ([Intel XE#1130]) [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_pm@s3-mocs.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_pm@s3-mocs.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-bmg: [DMESG-WARN][558] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [DMESG-WARN][559] ([Intel XE#3468] / [Intel XE#569]) [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_pm@s3-vm-bind-unbind-all.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm@s4-basic: - shard-dg2-set2: [SKIP][560] ([Intel XE#1130]) -> [DMESG-WARN][561] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_pm@s4-basic.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_pm@s4-basic.html * igt@xe_query@multigpu-query-oa-units: - shard-dg2-set2: [SKIP][562] ([Intel XE#1130]) -> [SKIP][563] ([Intel XE#944]) +3 other tests skip [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_query@multigpu-query-oa-units.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@xe_query@multigpu-query-oa-units.html * igt@xe_query@multigpu-query-topology: - shard-dg2-set2: [SKIP][564] ([Intel XE#944]) -> [SKIP][565] ([Intel XE#1130]) +2 other tests skip [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_query@multigpu-query-topology.html [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_query@multigpu-query-topology.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][566] ([Intel XE#1130]) -> [SKIP][567] ([Intel XE#3342]) [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_tlb@basic-tlb: - shard-dg2-set2: [FAIL][568] ([Intel XE#2922]) -> [SKIP][569] ([Intel XE#1130]) [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_tlb@basic-tlb.html [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_tlb@basic-tlb.html * igt@xe_wedged@basic-wedged: - shard-dg2-set2: [DMESG-WARN][570] ([Intel XE#2919]) -> [SKIP][571] ([Intel XE#1130]) [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_wedged@basic-wedged.html [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_wedged@basic-wedged.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [ABORT][572] ([Intel XE#3421]) -> [ABORT][573] ([Intel XE#3421] / [Intel XE#3521]) [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_wedged@wedged-at-any-timeout.html [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_wedged@wedged-at-any-timeout.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [SKIP][574] ([Intel XE#1130]) -> [ABORT][575] ([Intel XE#3075] / [Intel XE#3084]) [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.html [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@xe_wedged@wedged-mode-toggle.html [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#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#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [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#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [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#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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [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#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [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#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [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#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [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#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [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#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3512 [Intel XE#3515]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515 [Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [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#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [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#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 [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_8121 -> IGTPW_12170 * Linux: xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380 -> xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199 IGTPW_12170: 12170 IGT_8121: 8121 xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380 xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199: bb17c42521f57b592e9ad49daca1f9f9045d3199 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/index.html [-- Attachment #2: Type: text/html, Size: 170531 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ Xe.CI.Full: failure for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 (rev2) 2024-11-22 22:38 ` ✗ Xe.CI.Full: failure " Patchwork @ 2024-11-26 23:21 ` Matt Roper 0 siblings, 0 replies; 9+ messages in thread From: Matt Roper @ 2024-11-26 23:21 UTC (permalink / raw) To: igt-dev; +Cc: Samala, Pranay On Fri, Nov 22, 2024 at 10:38:37PM -0000, Patchwork wrote: > == Series Details == > > Series: tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 (rev2) > URL : https://patchwork.freedesktop.org/series/141478/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8121_full -> XEIGTPW_12170_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_12170_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_12170_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_12170_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: > - shard-lnl: NOTRUN -> [SKIP][1] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html Skipping now as expected. The other failures below are unrelated to this change. Applied to master. Thanks for the patch and review. Matt > > * igt@kms_color@deep-color: > - shard-bmg: [PASS][2] -> [INCOMPLETE][3] > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_color@deep-color.html > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_color@deep-color.html > > * igt@kms_color@deep-color@pipe-d-dp-2-gamma: > - shard-bmg: NOTRUN -> [INCOMPLETE][4] > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_color@deep-color@pipe-d-dp-2-gamma.html > > * igt@xe_compute_preempt@compute-preempt-many: > - shard-bmg: [PASS][5] -> [FAIL][6] +1 other test fail > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_compute_preempt@compute-preempt-many.html > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_compute_preempt@compute-preempt-many.html > > * igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute: > - shard-lnl: [PASS][7] -> [FAIL][8] +2 other tests fail > [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-8/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html > [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-3/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html > > * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: > - shard-bmg: [PASS][9] -> [DMESG-WARN][10] > [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html > [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html > > > #### Warnings #### > > * igt@core_hotunplug@unbind-rebind: > - shard-bmg: [INCOMPLETE][11] ([Intel XE#3468]) -> [INCOMPLETE][12] > [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@core_hotunplug@unbind-rebind.html > [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@core_hotunplug@unbind-rebind.html > > * igt@core_hotunplug@unplug-rescan: > - shard-bmg: [DMESG-WARN][13] ([Intel XE#3468]) -> [INCOMPLETE][14] > [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@core_hotunplug@unplug-rescan.html > [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@core_hotunplug@unplug-rescan.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: > - shard-lnl: [FAIL][15] ([Intel XE#3162]) -> [SKIP][16] +2 other tests skip > [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html > [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html > > * igt@xe_exec_balancer@no-exec-parallel-userptr-invalidate-race: > - shard-dg2-set2: [SKIP][17] ([Intel XE#1130]) -> [DMESG-WARN][18] > [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_exec_balancer@no-exec-parallel-userptr-invalidate-race.html > [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_exec_balancer@no-exec-parallel-userptr-invalidate-race.html > > * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate: > - shard-bmg: [DMESG-WARN][19] ([Intel XE#3371] / [Intel XE#3515]) -> [DMESG-WARN][20] > [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html > [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html > > * igt@xe_module_load@reload: > - shard-bmg: [DMESG-WARN][21] ([Intel XE#3467]) -> [DMESG-WARN][22] > [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_module_load@reload.html > [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_module_load@reload.html > > * igt@xe_wedged@wedged-mode-toggle: > - shard-bmg: [DMESG-WARN][23] ([Intel XE#3468]) -> [DMESG-WARN][24] > [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_wedged@wedged-mode-toggle.html > [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_wedged@wedged-mode-toggle.html > > > Known issues > ------------ > > Here are the changes found in XEIGTPW_12170_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@core_getclient: > - shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#2423]) > [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@core_getclient.html > [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@core_getclient.html > > * igt@core_hotunplug@hotreplug-lateclose: > - shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#1885]) +1 other test skip > [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@core_hotunplug@hotreplug-lateclose.html > [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@core_hotunplug@hotreplug-lateclose.html > > * igt@core_setmaster@master-drop-set-shared-fd: > - shard-dg2-set2: [PASS][29] -> [SKIP][30] ([Intel XE#3453]) > [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@core_setmaster@master-drop-set-shared-fd.html > [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html > > * igt@core_setmaster@master-drop-set-user: > - shard-dg2-set2: [PASS][31] -> [FAIL][32] ([Intel XE#3339]) > [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@core_setmaster@master-drop-set-user.html > [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@core_setmaster@master-drop-set-user.html > > * igt@fbdev@info: > - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#2134]) > [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@fbdev@info.html > > * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: > - shard-dg2-set2: [PASS][34] -> [SKIP][35] ([Intel XE#2423] / [i915#2575]) +125 other tests skip > [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html > [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html > > * igt@kms_big_fb@linear-16bpp-rotate-90: > - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2327]) > [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_big_fb@linear-16bpp-rotate-90.html > > * igt@kms_big_fb@linear-32bpp-rotate-270: > - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1407]) > [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-4/igt@kms_big_fb@linear-32bpp-rotate-270.html > > * igt@kms_big_fb@linear-64bpp-rotate-180: > - shard-bmg: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#3225]) > [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_big_fb@linear-64bpp-rotate-180.html > [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_big_fb@linear-64bpp-rotate-180.html > > * igt@kms_big_fb@y-tiled-64bpp-rotate-270: > - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1124]) > [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html > > * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: > - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1124]) +1 other test skip > [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html > > * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: > - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip > [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: > - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1124]) +2 other tests skip > [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html > > * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: > - shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2314] / [Intel XE#2894]) > [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html > [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html > - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#367]) > [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html > > * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: > - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#787]) +132 other tests skip > [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html > > * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: > - shard-dg2-set2: [PASS][48] -> [SKIP][49] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip > [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html > [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html > > * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: > - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2887]) > [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html > > * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: > - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2887]) > [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html > > * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-hdmi-a-3: > - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2652] / [Intel XE#787]) +4 other tests skip > [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-hdmi-a-3.html > > * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: > - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#455] / [Intel XE#787]) +18 other tests skip > [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html > > * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: > - shard-dg2-set2: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#2692] / [Intel XE#3468]) > [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html > [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html > > * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: > - shard-dg2-set2: [PASS][56] -> [INCOMPLETE][57] ([Intel XE#3468]) > [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html > [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html > > * igt@kms_cdclk@mode-transition@pipe-d-dp-4: > - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#314]) +3 other tests skip > [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html > > * igt@kms_chamelium_edid@dp-edid-resolution-list: > - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#373]) +2 other tests skip > [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html > > * igt@kms_chamelium_frames@hdmi-aspect-ratio: > - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#373]) > [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_chamelium_frames@hdmi-aspect-ratio.html > > * igt@kms_chamelium_hpd@dp-hpd-after-hibernate: > - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2252]) +3 other tests skip > [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html > > * igt@kms_color@ctm-0-50@pipe-d-hdmi-a-3: > - shard-bmg: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#877]) +3 other tests dmesg-warn > [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_color@ctm-0-50@pipe-d-hdmi-a-3.html > [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_color@ctm-0-50@pipe-d-hdmi-a-3.html > > * igt@kms_content_protection@dp-mst-lic-type-0: > - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2390]) > [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-0.html > > * igt@kms_content_protection@dp-mst-type-1: > - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#307]) > [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1.html > > * igt@kms_content_protection@legacy@pipe-a-dp-4: > - shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#1178]) > [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_content_protection@legacy@pipe-a-dp-4.html > > * igt@kms_content_protection@srm@pipe-a-dp-2: > - shard-bmg: NOTRUN -> [FAIL][67] ([Intel XE#1178]) > [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_content_protection@srm@pipe-a-dp-2.html > > * igt@kms_content_protection@uevent@pipe-a-dp-2: > - shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#1188]) > [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_content_protection@uevent@pipe-a-dp-2.html > > * igt@kms_cursor_crc@cursor-offscreen-512x170: > - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#2321]) > [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html > - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2321]) > [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html > > * igt@kms_cursor_crc@cursor-random-512x512: > - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#308]) > [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_cursor_crc@cursor-random-512x512.html > > * igt@kms_cursor_crc@cursor-random-64x21: > - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2320]) +3 other tests skip > [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_cursor_crc@cursor-random-64x21.html > - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1424]) > [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-6/igt@kms_cursor_crc@cursor-random-64x21.html > > * igt@kms_cursor_crc@cursor-sliding-256x256: > - shard-bmg: [PASS][74] -> [DMESG-FAIL][75] ([Intel XE#3468]) +3 other tests dmesg-fail > [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-256x256.html > [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-256x256.html > > * igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-a-edp-1: > - shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#2577]) +1 other test fail > [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-7/igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-a-edp-1.html > [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-5/igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-a-edp-1.html > > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2423] / [i915#2575]) +13 other tests skip > [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html > > * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: > - shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#2291]) +4 other tests skip > [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html > [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html > > * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: > - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#309]) +1 other test skip > [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html > > * igt@kms_display_modes@extended-mode-basic: > - shard-bmg: [PASS][82] -> [SKIP][83] ([Intel XE#2425]) > [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_display_modes@extended-mode-basic.html > [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html > > * igt@kms_dsc@dsc-with-bpc: > - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#2244]) > [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-5/igt@kms_dsc@dsc-with-bpc.html > > * igt@kms_dsc@dsc-with-output-formats-with-bpc: > - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2136]) +10 other tests skip > [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats-with-bpc.html > > * igt@kms_feature_discovery@display-2x: > - shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#2373]) > [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_feature_discovery@display-2x.html > [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_feature_discovery@display-2x.html > > * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: > - shard-bmg: [PASS][88] -> [DMESG-WARN][89] ([Intel XE#3468]) +85 other tests dmesg-warn > [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html > [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html > > * igt@kms_flip@2x-plain-flip-ts-check-interruptible: > - shard-bmg: [PASS][90] -> [SKIP][91] ([Intel XE#2316]) +3 other tests skip > [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html > [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html > > * igt@kms_flip@blocking-wf_vblank: > - shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#3149] / [Intel XE#886]) > [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-7/igt@kms_flip@blocking-wf_vblank.html > [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-1/igt@kms_flip@blocking-wf_vblank.html > > * igt@kms_flip@flip-vs-wf_vblank-interruptible: > - shard-lnl: [PASS][94] -> [FAIL][95] ([Intel XE#886]) +2 other tests fail > [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-6/igt@kms_flip@flip-vs-wf_vblank-interruptible.html > [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-8/igt@kms_flip@flip-vs-wf_vblank-interruptible.html > > * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: > - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#455]) +7 other tests skip > [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html > > * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt: > - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#651]) +1 other test skip > [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html > > * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy: > - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#651]) +1 other test skip > [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render: > - shard-dg2-set2: [PASS][99] -> [SKIP][100] ([Intel XE#2136]) +40 other tests skip > [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html > [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: > - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2312]) +1 other test skip > [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: > - shard-bmg: NOTRUN -> [FAIL][102] ([Intel XE#2333]) +2 other tests fail > [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render: > - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#656]) +2 other tests skip > [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt: > - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2311]) +4 other tests skip > [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: > - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#653]) +3 other tests skip > [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html > > * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: > - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2313]) > [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html > > * igt@kms_joiner@basic-force-ultra-joiner: > - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2934]) > [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_joiner@basic-force-ultra-joiner.html > > * igt@kms_joiner@invalid-modeset-ultra-joiner: > - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2927]) > [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html > > * igt@kms_panel_fitting@legacy: > - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2486]) > [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_panel_fitting@legacy.html > > * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: > - shard-dg2-set2: [PASS][110] -> [INCOMPLETE][111] ([Intel XE#1727]) +1 other test incomplete > [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html > [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html > > * igt@kms_plane@pixel-format-source-clamping: > - shard-bmg: NOTRUN -> [DMESG-WARN][112] ([Intel XE#2566] / [Intel XE#3468]) > [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_plane@pixel-format-source-clamping.html > > * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0: > - shard-bmg: NOTRUN -> [DMESG-WARN][113] ([Intel XE#3468]) +12 other tests dmesg-warn > [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html > > * igt@kms_plane_multiple@tiling-x@pipe-a-hdmi-a-6: > - shard-dg2-set2: NOTRUN -> [INCOMPLETE][114] ([Intel XE#1727]) > [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_plane_multiple@tiling-x@pipe-a-hdmi-a-6.html > > * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: > - shard-dg2-set2: NOTRUN -> [FAIL][115] ([Intel XE#361]) > [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html > > * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: > - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip > [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html > > * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: > - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2763]) +2 other tests skip > [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html > > * igt@kms_pm_dc@dc5-dpms: > - shard-lnl: [PASS][118] -> [FAIL][119] ([Intel XE#718]) > [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html > [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html > > * igt@kms_pm_dc@dc5-psr: > - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2392]) > [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html > > * igt@kms_pm_rpm@cursor-dpms: > - shard-dg2-set2: [PASS][121] -> [DMESG-WARN][122] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn > [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_pm_rpm@cursor-dpms.html > [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_pm_rpm@cursor-dpms.html > - shard-bmg: [PASS][123] -> [INCOMPLETE][124] ([Intel XE#1727] / [Intel XE#3468]) > [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_pm_rpm@cursor-dpms.html > [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_pm_rpm@cursor-dpms.html > > * igt@kms_pm_rpm@dpms-non-lpsp: > - shard-dg2-set2: [PASS][125] -> [ABORT][126] ([Intel XE#3468]) +1 other test abort > [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_pm_rpm@dpms-non-lpsp.html > [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_pm_rpm@dpms-non-lpsp.html > > * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: > - shard-bmg: [PASS][127] -> [DMESG-WARN][128] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn > [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html > [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html > > * igt@kms_pm_rpm@universal-planes: > - shard-dg2-set2: [PASS][129] -> [SKIP][130] ([Intel XE#2446]) +2 other tests skip > [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_pm_rpm@universal-planes.html > [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_pm_rpm@universal-planes.html > > * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: > - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#2893]) +1 other test skip > [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html > > * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: > - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#1489]) +2 other tests skip > [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html > > * igt@kms_psr@fbc-psr2-sprite-plane-onoff: > - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip > [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html > > * igt@kms_psr@psr2-cursor-blt: > - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip > [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_psr@psr2-cursor-blt.html > > * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: > - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#3414]) +1 other test skip > [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html > > * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: > - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#3414]) +1 other test skip > [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html > > * igt@kms_scaling_modes@scaling-mode-none: > - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2413]) > [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-none.html > - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2413] / [Intel XE#374]) > [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-8/igt@kms_scaling_modes@scaling-mode-none.html > > * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: > - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#374]) +2 other tests skip > [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-8/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html > > * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-6: > - shard-dg2-set2: NOTRUN -> [DMESG-WARN][140] ([Intel XE#3468]) +1 other test dmesg-warn > [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-6.html > > * igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-6: > - shard-dg2-set2: NOTRUN -> [DMESG-WARN][141] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn > [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-6.html > > * igt@kms_vrr@max-min: > - shard-lnl: [PASS][142] -> [FAIL][143] ([Intel XE#1522]) +1 other test fail > [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-6/igt@kms_vrr@max-min.html > [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-4/igt@kms_vrr@max-min.html > > * igt@xe_drm_fdinfo@utilization-others-full-load: > - shard-lnl: [PASS][144] -> [FAIL][145] ([Intel XE#3512]) > [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-5/igt@xe_drm_fdinfo@utilization-others-full-load.html > [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-2/igt@xe_drm_fdinfo@utilization-others-full-load.html > > * igt@xe_eudebug@basic-read-event: > - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2905]) +2 other tests skip > [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_eudebug@basic-read-event.html > > * igt@xe_eudebug@multigpu-basic-client-many: > - shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#2905]) +2 other tests skip > [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-4/igt@xe_eudebug@multigpu-basic-client-many.html > > * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: > - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2905]) +1 other test skip > [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html > > * igt@xe_evict@evict-mixed-many-threads-small: > - shard-bmg: [PASS][149] -> [TIMEOUT][150] ([Intel XE#1473] / [Intel XE#2472]) > [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html > [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html > - shard-dg2-set2: [PASS][151] -> [TIMEOUT][152] ([Intel XE#1473]) > [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html > [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html > > * igt@xe_evict@evict-small-cm: > - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#688]) +1 other test skip > [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-7/igt@xe_evict@evict-small-cm.html > > * igt@xe_exec_balancer@once-parallel-userptr: > - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1130]) +19 other tests skip > [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_exec_balancer@once-parallel-userptr.html > > * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null: > - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2322]) +1 other test skip > [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html > > * igt@xe_exec_basic@twice-userptr: > - shard-dg2-set2: NOTRUN -> [DMESG-WARN][156] ([Intel XE#1727]) > [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_exec_basic@twice-userptr.html > > * igt@xe_exec_fault_mode@many-execqueues-invalid-fault: > - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#288]) > [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-invalid-fault.html > > * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate: > - shard-lnl: [PASS][158] -> [DMESG-WARN][159] ([Intel XE#3371]) > [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html > [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-3/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html > - shard-bmg: [PASS][160] -> [DMESG-FAIL][161] ([Intel XE#3371]) > [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html > [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html > > * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: > - shard-bmg: [PASS][162] -> [DMESG-WARN][163] ([Intel XE#3343] / [Intel XE#3468]) > [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html > [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html > > * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: > - shard-dg2-set2: [PASS][164] -> [DMESG-WARN][165] ([Intel XE#3467]) > [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html > [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html > > * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: > - shard-bmg: NOTRUN -> [DMESG-FAIL][166] ([Intel XE#3467]) > [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html > > * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: > - shard-dg2-set2: NOTRUN -> [DMESG-WARN][167] ([Intel XE#3467]) > [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html > > * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: > - shard-dg2-set2: [PASS][168] -> [SKIP][169] ([Intel XE#2229]) +1 other test skip > [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html > [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html > > * igt@xe_live_ktest@xe_migrate: > - shard-bmg: [PASS][170] -> [SKIP][171] ([Intel XE#1192]) > [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_live_ktest@xe_migrate.html > [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_live_ktest@xe_migrate.html > > * igt@xe_mmap@vram: > - shard-dg2-set2: [PASS][172] -> [DMESG-WARN][173] ([Intel XE#1727]) +1 other test dmesg-warn > [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_mmap@vram.html > [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_mmap@vram.html > > * igt@xe_module_load@many-reload: > - shard-bmg: [PASS][174] -> [DMESG-WARN][175] ([Intel XE#3467]) +2 other tests dmesg-warn > [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_module_load@many-reload.html > [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_module_load@many-reload.html > - shard-dg2-set2: [PASS][176] -> [FAIL][177] ([Intel XE#3546]) > [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_module_load@many-reload.html > [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_module_load@many-reload.html > > * igt@xe_oa@syncs-ufence-wait-cfg: > - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#3573]) > [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@xe_oa@syncs-ufence-wait-cfg.html > > * igt@xe_oa@unprivileged-single-ctx-counters: > - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2248]) > [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_oa@unprivileged-single-ctx-counters.html > > * igt@xe_pm@s2idle-exec-after: > - shard-dg2-set2: [PASS][180] -> [SKIP][181] ([Intel XE#1130]) +218 other tests skip > [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_pm@s2idle-exec-after.html > [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_pm@s2idle-exec-after.html > > * igt@xe_pm@s3-basic-exec: > - shard-bmg: [PASS][182] -> [DMESG-WARN][183] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) > [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_pm@s3-basic-exec.html > [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@xe_pm@s3-basic-exec.html > > * igt@xe_pm@s3-exec-after: > - shard-bmg: [PASS][184] -> [DMESG-WARN][185] ([Intel XE#3468] / [Intel XE#569]) > [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_pm@s3-exec-after.html > [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_pm@s3-exec-after.html > > * igt@xe_pm_residency@gt-c6-freeze@gt1: > - shard-bmg: [PASS][186] -> [DMESG-FAIL][187] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail > [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_pm_residency@gt-c6-freeze@gt1.html > [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@xe_pm_residency@gt-c6-freeze@gt1.html > > * igt@xe_sriov_flr@flr-vf1-clear: > - shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#3342]) > [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-7/igt@xe_sriov_flr@flr-vf1-clear.html > - shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#3342]) > [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html > > > #### Possible fixes #### > > * igt@core_getstats: > - shard-dg2-set2: [SKIP][190] ([Intel XE#2423]) -> [PASS][191] > [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@core_getstats.html > [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@core_getstats.html > > * igt@core_hotunplug@hotrebind-lateclose: > - shard-lnl: [DMESG-WARN][192] -> [PASS][193] > [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-3/igt@core_hotunplug@hotrebind-lateclose.html > [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-2/igt@core_hotunplug@hotrebind-lateclose.html > > * igt@fbdev@nullptr: > - shard-dg2-set2: [SKIP][194] ([Intel XE#2134]) -> [PASS][195] +1 other test pass > [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@fbdev@nullptr.html > [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@fbdev@nullptr.html > > * igt@kms_async_flips@alternate-sync-async-flip: > - shard-bmg: [FAIL][196] ([Intel XE#827]) -> [PASS][197] > [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html > [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html > > * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: > - shard-bmg: [DMESG-WARN][198] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][199] > [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html > [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html > > * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: > - shard-bmg: [SKIP][200] ([Intel XE#2291]) -> [PASS][201] +4 other tests pass > [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html > [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html > > * igt@kms_dp_aux_dev: > - shard-bmg: [SKIP][202] ([Intel XE#3009]) -> [PASS][203] > [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_dp_aux_dev.html > [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_dp_aux_dev.html > > * igt@kms_dp_linktrain_fallback@dp-fallback: > - shard-bmg: [SKIP][204] ([Intel XE#3070]) -> [PASS][205] > [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html > [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html > > * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: > - shard-bmg: [SKIP][206] ([Intel XE#2316]) -> [PASS][207] +6 other tests pass > [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html > [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html > > * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: > - shard-bmg: [FAIL][208] ([Intel XE#3486]) -> [PASS][209] > [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html > [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html > > * igt@kms_flip@busy-flip: > - shard-dg2-set2: [SKIP][210] ([Intel XE#2423] / [i915#2575]) -> [PASS][211] +90 other tests pass > [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_flip@busy-flip.html > [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_flip@busy-flip.html > > * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1: > - shard-lnl: [FAIL][212] ([Intel XE#886]) -> [PASS][213] +1 other test pass > [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html > [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html > > * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: > - shard-dg2-set2: [SKIP][214] ([Intel XE#2136]) -> [PASS][215] +26 other tests pass > [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html > [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html > > * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: > - shard-dg2-set2: [SKIP][216] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][217] +13 other tests pass > [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html > [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html > > * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: > - shard-bmg: [INCOMPLETE][218] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][219] +3 other tests pass > [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html > [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html > > * igt@kms_force_connector_basic@force-edid: > - shard-dg2-set2: [DMESG-WARN][220] ([Intel XE#1727]) -> [PASS][221] > [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_force_connector_basic@force-edid.html > [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_force_connector_basic@force-edid.html > > * igt@kms_frontbuffer_tracking@basic: > - shard-dg2-set2: [SKIP][222] ([Intel XE#2351]) -> [PASS][223] > [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html > [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_frontbuffer_tracking@basic.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: > - shard-dg2-set2: [INCOMPLETE][224] ([Intel XE#1727]) -> [PASS][225] > [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html > [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html > > * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256: > - shard-bmg: [DMESG-FAIL][226] -> [PASS][227] > [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256.html > [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-256.html > > * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64: > - shard-bmg: [DMESG-FAIL][228] ([Intel XE#3468]) -> [PASS][229] +12 other tests pass > [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html > [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html > > * igt@kms_plane_scaling@2x-scaler-multi-pipe: > - shard-bmg: [SKIP][230] ([Intel XE#2571]) -> [PASS][231] > [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html > [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html > > * igt@kms_pm_dc@dc6-psr: > - shard-lnl: [FAIL][232] ([Intel XE#1430]) -> [PASS][233] > [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html > [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html > > * igt@kms_pm_rpm@legacy-planes: > - shard-dg2-set2: [SKIP][234] ([Intel XE#2446]) -> [PASS][235] > [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_pm_rpm@legacy-planes.html > [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_pm_rpm@legacy-planes.html > > * igt@kms_pm_rpm@legacy-planes-dpms@plane-59: > - shard-lnl: [DMESG-WARN][236] ([Intel XE#3184]) -> [PASS][237] +1 other test pass > [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-1/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html > [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-3/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html > > * igt@kms_pm_rpm@system-suspend-modeset: > - shard-bmg: [DMESG-WARN][238] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][239] > [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_pm_rpm@system-suspend-modeset.html > [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_pm_rpm@system-suspend-modeset.html > > * igt@kms_sequence@get-busy: > - shard-bmg: [DMESG-WARN][240] ([Intel XE#3468]) -> [PASS][241] +38 other tests pass > [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_sequence@get-busy.html > [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_sequence@get-busy.html > > * igt@kms_setmode@basic@pipe-a-hdmi-a-3: > - shard-bmg: [FAIL][242] ([Intel XE#3559]) -> [PASS][243] +4 other tests pass > [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_setmode@basic@pipe-a-hdmi-a-3.html > [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_setmode@basic@pipe-a-hdmi-a-3.html > > * igt@kms_setmode@invalid-clone-single-crtc: > - shard-bmg: [SKIP][244] ([Intel XE#1435]) -> [PASS][245] > [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html > [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html > > * igt@xe_compute@ccs-mode-basic: > - shard-bmg: [INCOMPLETE][246] ([Intel XE#1727]) -> [PASS][247] > [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html > [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@xe_compute@ccs-mode-basic.html > > * igt@xe_exec_balancer@twice-virtual-basic: > - shard-dg2-set2: [SKIP][248] ([Intel XE#1130]) -> [PASS][249] +160 other tests pass > [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_exec_balancer@twice-virtual-basic.html > [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_exec_balancer@twice-virtual-basic.html > > * igt@xe_exercise_blt@fast-copy: > - shard-bmg: [INCOMPLETE][250] -> [PASS][251] > [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_exercise_blt@fast-copy.html > [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_exercise_blt@fast-copy.html > > * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: > - shard-bmg: [DMESG-WARN][252] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][253] +2 other tests pass > [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html > [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html > > * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: > - shard-bmg: [DMESG-WARN][254] ([Intel XE#3521]) -> [PASS][255] > [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html > [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html > > * igt@xe_live_ktest@xe_bo: > - shard-dg2-set2: [TIMEOUT][256] ([Intel XE#2961] / [Intel XE#3191]) -> [PASS][257] +1 other test pass > [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_live_ktest@xe_bo.html > [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_live_ktest@xe_bo.html > > * igt@xe_module_load@reload-no-display: > - shard-bmg: [DMESG-WARN][258] ([Intel XE#3467]) -> [PASS][259] > [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_module_load@reload-no-display.html > [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_module_load@reload-no-display.html > > * igt@xe_oa@oa-regs-whitelisted: > - shard-lnl: [FAIL][260] ([Intel XE#2514]) -> [PASS][261] > [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted.html > [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted.html > - shard-bmg: [FAIL][262] ([Intel XE#2514]) -> [PASS][263] > [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted.html > [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted.html > > * igt@xe_pm@s3-vm-bind-prefetch: > - shard-bmg: [DMESG-WARN][264] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][265] > [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@xe_pm@s3-vm-bind-prefetch.html > [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@xe_pm@s3-vm-bind-prefetch.html > > * igt@xe_pm@s4-basic: > - shard-lnl: [ABORT][266] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][267] > [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-lnl-2/igt@xe_pm@s4-basic.html > [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-lnl-4/igt@xe_pm@s4-basic.html > > * igt@xe_pm@s4-mocs: > - shard-dg2-set2: [DMESG-WARN][268] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][269] > [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_pm@s4-mocs.html > [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_pm@s4-mocs.html > > > #### Warnings #### > > * igt@core_hotunplug@hotrebind-lateclose: > - shard-dg2-set2: [DMESG-WARN][270] ([Intel XE#3468]) -> [SKIP][271] ([Intel XE#1885]) > [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@core_hotunplug@hotrebind-lateclose.html > [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@core_hotunplug@hotrebind-lateclose.html > > * igt@kms_addfb_basic@bad-pitch-256: > - shard-dg2-set2: [SKIP][272] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][273] ([Intel XE#1727]) > [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_addfb_basic@bad-pitch-256.html > [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_addfb_basic@bad-pitch-256.html > > * igt@kms_async_flips@invalid-async-flip: > - shard-dg2-set2: [SKIP][274] ([Intel XE#2423] / [i915#2575]) -> [SKIP][275] ([Intel XE#873]) > [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_async_flips@invalid-async-flip.html > [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_async_flips@invalid-async-flip.html > > * igt@kms_big_fb@4-tiled-64bpp-rotate-270: > - shard-dg2-set2: [SKIP][276] ([Intel XE#316]) -> [SKIP][277] ([Intel XE#2136] / [Intel XE#2351]) > [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html > [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html > > * igt@kms_big_fb@4-tiled-8bpp-rotate-270: > - shard-dg2-set2: [SKIP][278] ([Intel XE#2136]) -> [SKIP][279] ([Intel XE#316]) +3 other tests skip > [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html > [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html > > * igt@kms_big_fb@x-tiled-8bpp-rotate-270: > - shard-dg2-set2: [SKIP][280] ([Intel XE#316]) -> [SKIP][281] ([Intel XE#2136]) +4 other tests skip > [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html > [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html > > * igt@kms_big_fb@x-tiled-8bpp-rotate-90: > - shard-dg2-set2: [SKIP][282] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][283] ([Intel XE#316]) +3 other tests skip > [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html > [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html > > * igt@kms_big_fb@y-tiled-64bpp-rotate-180: > - shard-dg2-set2: [SKIP][284] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][285] ([Intel XE#1124]) +7 other tests skip > [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html > [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html > > * igt@kms_big_fb@y-tiled-addfb: > - shard-dg2-set2: [SKIP][286] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][287] ([Intel XE#619]) > [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb.html > [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html > > * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: > - shard-dg2-set2: [SKIP][288] ([Intel XE#607]) -> [SKIP][289] ([Intel XE#2136] / [Intel XE#2351]) > [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html > [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: > - shard-dg2-set2: [SKIP][290] ([Intel XE#1124]) -> [SKIP][291] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip > [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html > [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html > > * igt@kms_big_fb@yf-tiled-addfb: > - shard-dg2-set2: [SKIP][292] ([Intel XE#619]) -> [SKIP][293] ([Intel XE#2136] / [Intel XE#2351]) > [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html > [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html > > * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: > - shard-dg2-set2: [SKIP][294] ([Intel XE#607]) -> [SKIP][295] ([Intel XE#2136]) > [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html > [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: > - shard-dg2-set2: [SKIP][296] ([Intel XE#2136]) -> [SKIP][297] ([Intel XE#1124]) +2 other tests skip > [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html > [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: > - shard-dg2-set2: [SKIP][298] ([Intel XE#1124]) -> [SKIP][299] ([Intel XE#2136]) +9 other tests skip > [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html > [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html > > * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: > - shard-dg2-set2: [SKIP][300] ([Intel XE#2423] / [i915#2575]) -> [SKIP][301] ([Intel XE#367]) +2 other tests skip > [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html > [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html > > * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: > - shard-dg2-set2: [SKIP][302] ([Intel XE#2191]) -> [SKIP][303] ([Intel XE#2423] / [i915#2575]) +1 other test skip > [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html > [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html > > * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: > - shard-dg2-set2: [SKIP][304] ([Intel XE#2423] / [i915#2575]) -> [SKIP][305] ([Intel XE#2191]) +2 other tests skip > [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html > [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html > > * igt@kms_bw@linear-tiling-1-displays-1920x1080p: > - shard-dg2-set2: [SKIP][306] ([Intel XE#367]) -> [SKIP][307] ([Intel XE#2423] / [i915#2575]) +6 other tests skip > [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html > [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html > > * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: > - shard-dg2-set2: [SKIP][308] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][309] ([Intel XE#2136]) +12 other tests skip > [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html > [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html > > * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: > - shard-dg2-set2: [SKIP][310] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][311] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip > [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html > [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html > > * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: > - shard-dg2-set2: [SKIP][312] ([Intel XE#2136]) -> [SKIP][313] ([Intel XE#2907]) +1 other test skip > [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html > [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html > > * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: > - shard-dg2-set2: [SKIP][314] ([Intel XE#3442]) -> [SKIP][315] ([Intel XE#2136]) > [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html > [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html > > * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: > - shard-dg2-set2: [SKIP][316] ([Intel XE#2136]) -> [SKIP][317] ([Intel XE#3442]) > [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html > [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html > > * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: > - shard-dg2-set2: [FAIL][318] ([Intel XE#616]) -> [SKIP][319] ([Intel XE#2136]) > [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html > [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html > > * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: > - shard-dg2-set2: [SKIP][320] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][321] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip > [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html > [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html > > * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: > - shard-dg2-set2: [SKIP][322] ([Intel XE#2907]) -> [SKIP][323] ([Intel XE#2136]) +1 other test skip > [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html > [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html > > * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs: > - shard-dg2-set2: [SKIP][324] ([Intel XE#2136]) -> [SKIP][325] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip > [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html > [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html > > * igt@kms_chamelium_color@ctm-limited-range: > - shard-dg2-set2: [SKIP][326] ([Intel XE#2423] / [i915#2575]) -> [SKIP][327] ([Intel XE#306]) +1 other test skip > [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html > [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_chamelium_color@ctm-limited-range.html > > * igt@kms_chamelium_color@degamma: > - shard-dg2-set2: [SKIP][328] ([Intel XE#306]) -> [SKIP][329] ([Intel XE#2423] / [i915#2575]) +1 other test skip > [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_chamelium_color@degamma.html > [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_chamelium_color@degamma.html > > * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: > - shard-dg2-set2: [SKIP][330] ([Intel XE#373]) -> [SKIP][331] ([Intel XE#2423] / [i915#2575]) +6 other tests skip > [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html > [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html > > * igt@kms_chamelium_hpd@dp-hpd-fast: > - shard-dg2-set2: [SKIP][332] ([Intel XE#2423] / [i915#2575]) -> [SKIP][333] ([Intel XE#373]) +6 other tests skip > [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_chamelium_hpd@dp-hpd-fast.html > [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_chamelium_hpd@dp-hpd-fast.html > > * igt@kms_content_protection@atomic: > - shard-bmg: [FAIL][334] ([Intel XE#1178]) -> [SKIP][335] ([Intel XE#2341]) > [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_content_protection@atomic.html > [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_content_protection@atomic.html > - shard-dg2-set2: [FAIL][336] ([Intel XE#1178]) -> [SKIP][337] ([Intel XE#2423] / [i915#2575]) +1 other test skip > [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_content_protection@atomic.html > [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_content_protection@atomic.html > > * igt@kms_content_protection@dp-mst-type-1: > - shard-dg2-set2: [SKIP][338] ([Intel XE#2423] / [i915#2575]) -> [SKIP][339] ([Intel XE#307]) +1 other test skip > [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html > [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_content_protection@dp-mst-type-1.html > > * igt@kms_content_protection@legacy: > - shard-dg2-set2: [SKIP][340] ([Intel XE#2423] / [i915#2575]) -> [FAIL][341] ([Intel XE#1178]) > [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_content_protection@legacy.html > [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_content_protection@legacy.html > > * igt@kms_content_protection@srm: > - shard-bmg: [SKIP][342] ([Intel XE#2341]) -> [FAIL][343] ([Intel XE#1178]) > [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_content_protection@srm.html > [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_content_protection@srm.html > > * igt@kms_content_protection@uevent: > - shard-bmg: [SKIP][344] ([Intel XE#2341]) -> [FAIL][345] ([Intel XE#1188]) > [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_content_protection@uevent.html > [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_content_protection@uevent.html > > * igt@kms_cursor_crc@cursor-onscreen-512x170: > - shard-dg2-set2: [SKIP][346] ([Intel XE#2423] / [i915#2575]) -> [SKIP][347] ([Intel XE#308]) +1 other test skip > [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html > [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-512x170.html > > * igt@kms_cursor_crc@cursor-rapid-movement-512x512: > - shard-dg2-set2: [SKIP][348] ([Intel XE#308]) -> [SKIP][349] ([Intel XE#2423] / [i915#2575]) > [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html > [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html > > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: > - shard-dg2-set2: [SKIP][350] ([Intel XE#323]) -> [SKIP][351] ([Intel XE#2423] / [i915#2575]) > [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html > [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html > > * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: > - shard-bmg: [DMESG-WARN][352] -> [SKIP][353] ([Intel XE#2291]) > [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html > [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html > > * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: > - shard-dg2-set2: [SKIP][354] ([Intel XE#2423] / [i915#2575]) -> [SKIP][355] ([Intel XE#323]) +2 other tests skip > [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html > [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html > > * igt@kms_fbcon_fbt@psr-suspend: > - shard-dg2-set2: [SKIP][356] ([Intel XE#776]) -> [SKIP][357] ([Intel XE#2136]) > [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_fbcon_fbt@psr-suspend.html > [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html > > * igt@kms_feature_discovery@chamelium: > - shard-dg2-set2: [SKIP][358] ([Intel XE#701]) -> [SKIP][359] ([Intel XE#2423] / [i915#2575]) > [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_feature_discovery@chamelium.html > [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_feature_discovery@chamelium.html > > * igt@kms_feature_discovery@psr1: > - shard-dg2-set2: [SKIP][360] ([Intel XE#1135]) -> [SKIP][361] ([Intel XE#2423] / [i915#2575]) > [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_feature_discovery@psr1.html > [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_feature_discovery@psr1.html > > * igt@kms_feature_discovery@psr2: > - shard-dg2-set2: [SKIP][362] ([Intel XE#2423] / [i915#2575]) -> [SKIP][363] ([Intel XE#1135]) > [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_feature_discovery@psr2.html > [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_feature_discovery@psr2.html > > * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: > - shard-bmg: [FAIL][364] ([Intel XE#3321] / [Intel XE#3487]) -> [DMESG-WARN][365] ([Intel XE#3468]) +1 other test dmesg-warn > [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html > [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html > > * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: > - shard-bmg: [FAIL][366] ([Intel XE#2882]) -> [DMESG-WARN][367] ([Intel XE#3468]) +2 other tests dmesg-warn > [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html > [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html > > * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: > - shard-dg2-set2: [DMESG-WARN][368] ([Intel XE#1727]) -> [SKIP][369] ([Intel XE#2136]) > [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html > [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html > > * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: > - shard-dg2-set2: [INCOMPLETE][370] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][371] ([Intel XE#2136] / [Intel XE#2351]) > [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html > [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html > > * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: > - shard-dg2-set2: [SKIP][372] ([Intel XE#2136]) -> [SKIP][373] ([Intel XE#455]) +5 other tests skip > [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html > [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: > - shard-dg2-set2: [SKIP][374] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][375] ([Intel XE#455]) +2 other tests skip > [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html > [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html > > * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: > - shard-dg2-set2: [SKIP][376] ([Intel XE#455]) -> [SKIP][377] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip > [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html > [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/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][378] ([Intel XE#455]) -> [SKIP][379] ([Intel XE#2136]) +5 other tests skip > [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html > [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/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][380] ([Intel XE#2423] / [i915#2575]) -> [SKIP][381] ([i915#5274]) > [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_force_connector_basic@prune-stale-modes.html > [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_force_connector_basic@prune-stale-modes.html > > * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: > - shard-bmg: [SKIP][382] ([Intel XE#2311]) -> [SKIP][383] ([Intel XE#2312]) +18 other tests skip > [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html > [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render: > - shard-bmg: [SKIP][384] ([Intel XE#2312]) -> [SKIP][385] ([Intel XE#2311]) +15 other tests skip > [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html > [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@drrs-suspend: > - shard-dg2-set2: [SKIP][386] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][387] ([Intel XE#651]) +11 other tests skip > [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html > [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html > > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: > - shard-bmg: [SKIP][388] ([Intel XE#2312]) -> [FAIL][389] ([Intel XE#2333]) +7 other tests fail > [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html > [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: > - shard-bmg: [DMESG-FAIL][390] ([Intel XE#3468]) -> [SKIP][391] ([Intel XE#2312]) > [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html > [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: > - shard-bmg: [FAIL][392] ([Intel XE#2333]) -> [DMESG-FAIL][393] ([Intel XE#3468]) +5 other tests dmesg-fail > [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html > [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: > - shard-bmg: [DMESG-FAIL][394] ([Intel XE#3468]) -> [FAIL][395] ([Intel XE#2333]) +4 other tests fail > [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html > [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/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][396] ([Intel XE#2333]) -> [SKIP][397] ([Intel XE#2312]) +8 other tests skip > [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html > [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/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][398] ([Intel XE#2136]) -> [SKIP][399] ([Intel XE#651]) +17 other tests skip > [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html > [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: > - shard-dg2-set2: [SKIP][400] ([Intel XE#651]) -> [SKIP][401] ([Intel XE#2136]) +25 other tests skip > [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html > [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html > > * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt: > - shard-dg2-set2: [SKIP][402] ([Intel XE#651]) -> [SKIP][403] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip > [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html > [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: > - shard-dg2-set2: [SKIP][404] ([Intel XE#653]) -> [SKIP][405] ([Intel XE#2136]) +30 other tests skip > [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html > [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: > - shard-dg2-set2: [SKIP][406] ([Intel XE#653]) -> [SKIP][407] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip > [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html > [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html > > * igt@kms_frontbuffer_tracking@pipe-fbc-rte: > - shard-bmg: [FAIL][408] ([Intel XE#2333]) -> [INCOMPLETE][409] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468]) > [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html > [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html > > * igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2: > - shard-bmg: [FAIL][410] ([Intel XE#2333]) -> [INCOMPLETE][411] ([Intel XE#1727] / [Intel XE#3468]) > [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html > [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html > > * igt@kms_frontbuffer_tracking@plane-fbc-rte: > - shard-dg2-set2: [SKIP][412] ([Intel XE#2136]) -> [SKIP][413] ([Intel XE#1158]) > [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html > [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_frontbuffer_tracking@plane-fbc-rte.html > > * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: > - shard-bmg: [SKIP][414] ([Intel XE#2312]) -> [SKIP][415] ([Intel XE#2313]) +14 other tests skip > [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html > [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html > > * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: > - shard-dg2-set2: [SKIP][416] ([Intel XE#2136]) -> [SKIP][417] ([Intel XE#653]) +18 other tests skip > [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html > [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html > > * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: > - shard-dg2-set2: [SKIP][418] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][419] ([Intel XE#653]) +15 other tests skip > [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html > [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html > > * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: > - shard-bmg: [SKIP][420] ([Intel XE#2313]) -> [SKIP][421] ([Intel XE#2312]) +20 other tests skip > [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html > [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html > > * igt@kms_getfb@getfb-reject-ccs: > - shard-dg2-set2: [SKIP][422] ([Intel XE#2423] / [i915#2575]) -> [SKIP][423] ([Intel XE#605]) > [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html > [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html > > * igt@kms_hdr@brightness-with-hdr: > - shard-dg2-set2: [SKIP][424] ([Intel XE#2423] / [i915#2575]) -> [SKIP][425] ([Intel XE#455]) +8 other tests skip > [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_hdr@brightness-with-hdr.html > [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_hdr@brightness-with-hdr.html > - shard-bmg: [SKIP][426] ([Intel XE#3544]) -> [SKIP][427] ([Intel XE#3374] / [Intel XE#3544]) > [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html > [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html > > * igt@kms_joiner@basic-big-joiner: > - shard-dg2-set2: [SKIP][428] ([Intel XE#346]) -> [SKIP][429] ([Intel XE#2136]) +1 other test skip > [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html > [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html > > * igt@kms_joiner@basic-force-ultra-joiner: > - shard-dg2-set2: [SKIP][430] ([Intel XE#2136]) -> [SKIP][431] ([Intel XE#2925]) +1 other test skip > [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html > [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_joiner@basic-force-ultra-joiner.html > > * igt@kms_plane_cursor@overlay: > - shard-dg2-set2: [FAIL][432] ([Intel XE#616]) -> [SKIP][433] ([Intel XE#2423] / [i915#2575]) > [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_plane_cursor@overlay.html > [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_plane_cursor@overlay.html > > * igt@kms_plane_multiple@tiling-x: > - shard-dg2-set2: [SKIP][434] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][435] ([Intel XE#1727]) > [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_plane_multiple@tiling-x.html > [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_plane_multiple@tiling-x.html > > * igt@kms_plane_scaling@intel-max-src-size: > - shard-dg2-set2: [SKIP][436] ([Intel XE#2423] / [i915#2575]) -> [FAIL][437] ([Intel XE#361]) > [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html > [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25: > - shard-dg2-set2: [SKIP][438] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][439] ([Intel XE#2423] / [i915#2575]) +2 other tests skip > [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25.html > [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25.html > > * igt@kms_pm_backlight@bad-brightness: > - shard-dg2-set2: [SKIP][440] ([Intel XE#870]) -> [SKIP][441] ([Intel XE#2136]) > [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_pm_backlight@bad-brightness.html > [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html > > * igt@kms_pm_backlight@fade-with-suspend: > - shard-dg2-set2: [SKIP][442] ([Intel XE#2136]) -> [SKIP][443] ([Intel XE#870]) > [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html > [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_pm_backlight@fade-with-suspend.html > > * igt@kms_pm_dc@dc6-dpms: > - shard-dg2-set2: [SKIP][444] ([Intel XE#908]) -> [SKIP][445] ([Intel XE#2136] / [Intel XE#2351]) > [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_pm_dc@dc6-dpms.html > [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_pm_dc@dc6-dpms.html > - shard-bmg: [FAIL][446] ([Intel XE#1430]) -> [DMESG-FAIL][447] ([Intel XE#3468]) > [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html > [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@kms_pm_dc@dc6-dpms.html > > * igt@kms_pm_dc@dc6-psr: > - shard-dg2-set2: [SKIP][448] ([Intel XE#1129]) -> [SKIP][449] ([Intel XE#2136] / [Intel XE#2351]) > [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_pm_dc@dc6-psr.html > [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html > > * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: > - shard-dg2-set2: [SKIP][450] ([Intel XE#2446]) -> [DMESG-WARN][451] ([Intel XE#1727] / [Intel XE#3468]) > [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html > [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html > > * igt@kms_pm_rpm@system-suspend-modeset: > - shard-dg2-set2: [ABORT][452] ([Intel XE#3468]) -> [SKIP][453] ([Intel XE#2446]) > [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_pm_rpm@system-suspend-modeset.html > [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html > > * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: > - shard-dg2-set2: [SKIP][454] ([Intel XE#2136]) -> [SKIP][455] ([Intel XE#1489]) +7 other tests skip > [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html > [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html > > * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: > - shard-dg2-set2: [SKIP][456] ([Intel XE#1489]) -> [SKIP][457] ([Intel XE#2136]) +7 other tests skip > [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html > [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html > > * igt@kms_psr2_su@page_flip-nv12: > - shard-dg2-set2: [SKIP][458] ([Intel XE#2136]) -> [SKIP][459] ([Intel XE#1122]) +2 other tests skip > [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_psr2_su@page_flip-nv12.html > [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_psr2_su@page_flip-nv12.html > > * igt@kms_psr2_su@page_flip-p010: > - shard-dg2-set2: [SKIP][460] ([Intel XE#1122]) -> [SKIP][461] ([Intel XE#2136]) > [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_psr2_su@page_flip-p010.html > [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html > > * igt@kms_psr@fbc-psr-sprite-render: > - shard-dg2-set2: [SKIP][462] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][463] ([Intel XE#2136]) +16 other tests skip > [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html > [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html > > * igt@kms_psr@fbc-psr2-sprite-plane-move: > - shard-dg2-set2: [SKIP][464] ([Intel XE#2136]) -> [SKIP][465] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip > [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html > [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-move.html > > * igt@kms_psr@pr-primary-page-flip: > - shard-dg2-set2: [SKIP][466] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][467] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip > [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_psr@pr-primary-page-flip.html > [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_psr@pr-primary-page-flip.html > > * igt@kms_psr@pr-sprite-plane-onoff: > - shard-dg2-set2: [SKIP][468] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][469] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip > [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_psr@pr-sprite-plane-onoff.html > [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_psr@pr-sprite-plane-onoff.html > > * igt@kms_psr@psr-sprite-plane-onoff: > - shard-dg2-set2: [SKIP][470] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][471] ([Intel XE#2351]) +1 other test skip > [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_psr@psr-sprite-plane-onoff.html > [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html > > * igt@kms_rotation_crc@bad-pixel-format: > - shard-dg2-set2: [SKIP][472] ([Intel XE#3414]) -> [SKIP][473] ([Intel XE#2423] / [i915#2575]) +3 other tests skip > [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@kms_rotation_crc@bad-pixel-format.html > [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_rotation_crc@bad-pixel-format.html > > * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: > - shard-dg2-set2: [SKIP][474] ([Intel XE#1127]) -> [SKIP][475] ([Intel XE#2423] / [i915#2575]) > [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html > [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html > > * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: > - shard-dg2-set2: [SKIP][476] ([Intel XE#2423] / [i915#2575]) -> [SKIP][477] ([Intel XE#3414]) +4 other tests skip > [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html > [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html > > * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: > - shard-dg2-set2: [SKIP][478] ([Intel XE#2423] / [i915#2575]) -> [SKIP][479] ([Intel XE#1127]) > [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html > [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html > > * igt@kms_tiled_display@basic-test-pattern: > - shard-bmg: [SKIP][480] ([Intel XE#2426]) -> [FAIL][481] ([Intel XE#1729]) > [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html > [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html > > * igt@kms_tiled_display@basic-test-pattern-with-chamelium: > - shard-dg2-set2: [SKIP][482] ([Intel XE#2423] / [i915#2575]) -> [SKIP][483] ([Intel XE#362]) > [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html > [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html > > * igt@kms_tv_load_detect@load-detect: > - shard-dg2-set2: [SKIP][484] ([Intel XE#2423] / [i915#2575]) -> [SKIP][485] ([Intel XE#330]) > [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html > [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_tv_load_detect@load-detect.html > > * igt@kms_vblank@ts-continuation-dpms-rpm: > - shard-dg2-set2: [DMESG-WARN][486] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][487] ([Intel XE#2423] / [i915#2575]) > [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@kms_vblank@ts-continuation-dpms-rpm.html > [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_vblank@ts-continuation-dpms-rpm.html > > * igt@kms_vblank@ts-continuation-suspend: > - shard-dg2-set2: [SKIP][488] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][489] ([Intel XE#1727] / [Intel XE#3468]) > [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_vblank@ts-continuation-suspend.html > [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@kms_vblank@ts-continuation-suspend.html > > * igt@kms_vrr@flip-dpms: > - shard-dg2-set2: [SKIP][490] ([Intel XE#455]) -> [SKIP][491] ([Intel XE#2423] / [i915#2575]) +8 other tests skip > [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_vrr@flip-dpms.html > [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@kms_vrr@flip-dpms.html > > * igt@kms_writeback@writeback-fb-id-xrgb2101010: > - shard-dg2-set2: [SKIP][492] ([Intel XE#756]) -> [SKIP][493] ([Intel XE#2423] / [i915#2575]) > [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@kms_writeback@writeback-fb-id-xrgb2101010.html > [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@kms_writeback@writeback-fb-id-xrgb2101010.html > > * igt@kms_writeback@writeback-pixel-formats: > - shard-dg2-set2: [SKIP][494] ([Intel XE#2423] / [i915#2575]) -> [SKIP][495] ([Intel XE#756]) > [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@kms_writeback@writeback-pixel-formats.html > [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@kms_writeback@writeback-pixel-formats.html > > * igt@xe_compute_preempt@compute-preempt: > - shard-dg2-set2: [SKIP][496] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][497] ([Intel XE#1130]) > [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html > [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html > > * igt@xe_copy_basic@mem-copy-linear-0x369: > - shard-dg2-set2: [SKIP][498] ([Intel XE#1123]) -> [SKIP][499] ([Intel XE#1130]) > [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html > [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html > > * igt@xe_copy_basic@mem-copy-linear-0xfd: > - shard-dg2-set2: [SKIP][500] ([Intel XE#1130]) -> [SKIP][501] ([Intel XE#1123]) > [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html > [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfd.html > > * igt@xe_copy_basic@mem-set-linear-0xfd: > - shard-dg2-set2: [SKIP][502] ([Intel XE#1130]) -> [SKIP][503] ([Intel XE#1126]) > [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html > [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html > > * igt@xe_eudebug@basic-close: > - shard-dg2-set2: [SKIP][504] ([Intel XE#2905]) -> [SKIP][505] ([Intel XE#1130]) +12 other tests skip > [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_eudebug@basic-close.html > [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_eudebug@basic-close.html > > * igt@xe_evict@evict-beng-large-multi-vm-cm: > - shard-bmg: [FAIL][506] ([Intel XE#2364]) -> [DMESG-FAIL][507] ([Intel XE#3468]) > [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_evict@evict-beng-large-multi-vm-cm.html > [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_evict@evict-beng-large-multi-vm-cm.html > - shard-dg2-set2: [FAIL][508] ([Intel XE#1600]) -> [SKIP][509] ([Intel XE#1130]) > [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html > [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html > > * igt@xe_evict@evict-beng-mixed-many-threads-large: > - shard-dg2-set2: [SKIP][510] ([Intel XE#1130]) -> [TIMEOUT][511] ([Intel XE#1473]) > [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html > [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html > > * igt@xe_exec_fault_mode@once-bindexecqueue-imm: > - shard-dg2-set2: [SKIP][512] ([Intel XE#288]) -> [SKIP][513] ([Intel XE#1130]) +33 other tests skip > [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html > [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html > > * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: > - shard-dg2-set2: [SKIP][514] ([Intel XE#1130]) -> [SKIP][515] ([Intel XE#288]) +30 other tests skip > [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html > [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html > > * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: > - shard-dg2-set2: [SKIP][516] ([Intel XE#2360]) -> [SKIP][517] ([Intel XE#1130]) > [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html > [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html > > * igt@xe_exec_sip_eudebug@breakpoint-writesip: > - shard-dg2-set2: [SKIP][518] ([Intel XE#1130]) -> [SKIP][519] ([Intel XE#2905]) +12 other tests skip > [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html > [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-writesip.html > > * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate: > - shard-dg2-set2: [SKIP][520] ([Intel XE#1130]) -> [DMESG-FAIL][521] ([Intel XE#3371]) > [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html > [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html > > * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: > - shard-dg2-set2: [DMESG-WARN][522] ([Intel XE#1727] / [Intel XE#3343]) -> [DMESG-WARN][523] ([Intel XE#3343]) > [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html > [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html > > * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: > - shard-bmg: [DMESG-WARN][524] ([Intel XE#3343]) -> [DMESG-WARN][525] ([Intel XE#3343] / [Intel XE#3468]) > [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html > [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html > > * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: > - shard-dg2-set2: [DMESG-WARN][526] ([Intel XE#3467]) -> [SKIP][527] ([Intel XE#1130]) +1 other test skip > [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html > [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html > > * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: > - shard-bmg: [FAIL][528] ([Intel XE#3499]) -> [DMESG-FAIL][529] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-fail > [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html > [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html > > * igt@xe_fault_injection@vm-create-fail-xe_pt_create: > - shard-bmg: [DMESG-WARN][530] ([Intel XE#3467]) -> [DMESG-WARN][531] ([Intel XE#3467] / [Intel XE#3468]) > [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html > [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html > > * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: > - shard-dg2-set2: [SKIP][532] ([Intel XE#1130]) -> [DMESG-WARN][533] ([Intel XE#3467]) +2 other tests dmesg-warn > [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html > [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html > > * igt@xe_huc_copy@huc_copy: > - shard-dg2-set2: [SKIP][534] ([Intel XE#1130]) -> [SKIP][535] ([Intel XE#255]) > [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_huc_copy@huc_copy.html > [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-463/igt@xe_huc_copy@huc_copy.html > > * igt@xe_live_ktest@xe_eudebug: > - shard-bmg: [SKIP][536] ([Intel XE#1192]) -> [SKIP][537] ([Intel XE#2833]) > [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html > [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html > > * igt@xe_mmap@small-bar: > - shard-dg2-set2: [SKIP][538] ([Intel XE#512]) -> [SKIP][539] ([Intel XE#1130]) > [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_mmap@small-bar.html > [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_mmap@small-bar.html > > * igt@xe_module_load@reload-no-display: > - shard-dg2-set2: [DMESG-WARN][540] ([Intel XE#3467]) -> [FAIL][541] ([Intel XE#3546]) > [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_module_load@reload-no-display.html > [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_module_load@reload-no-display.html > > * igt@xe_oa@invalid-create-userspace-config: > - shard-dg2-set2: [SKIP][542] ([Intel XE#1130]) -> [SKIP][543] ([Intel XE#3573]) +10 other tests skip > [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_oa@invalid-create-userspace-config.html > [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_oa@invalid-create-userspace-config.html > > * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: > - shard-dg2-set2: [SKIP][544] ([Intel XE#3573]) -> [SKIP][545] ([Intel XE#1130]) +11 other tests skip > [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html > [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html > > * igt@xe_pat@display-vs-wb-transient: > - shard-dg2-set2: [SKIP][546] ([Intel XE#1337]) -> [SKIP][547] ([Intel XE#1130]) > [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_pat@display-vs-wb-transient.html > [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html > > * igt@xe_pm@d3cold-basic: > - shard-dg2-set2: [SKIP][548] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][549] ([Intel XE#1130]) > [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_pm@d3cold-basic.html > [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_pm@d3cold-basic.html > > * igt@xe_pm@d3cold-mocs: > - shard-dg2-set2: [SKIP][550] ([Intel XE#1130]) -> [SKIP][551] ([Intel XE#2284]) > [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_pm@d3cold-mocs.html > [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@xe_pm@d3cold-mocs.html > > * igt@xe_pm@d3hot-mmap-vram: > - shard-dg2-set2: [DMESG-WARN][552] ([Intel XE#3468]) -> [SKIP][553] ([Intel XE#1130]) > [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_pm@d3hot-mmap-vram.html > [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_pm@d3hot-mmap-vram.html > > * igt@xe_pm@s3-basic-exec: > - shard-dg2-set2: [SKIP][554] ([Intel XE#1130]) -> [DMESG-WARN][555] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) > [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_pm@s3-basic-exec.html > [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@xe_pm@s3-basic-exec.html > > * igt@xe_pm@s3-mocs: > - shard-dg2-set2: [DMESG-WARN][556] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][557] ([Intel XE#1130]) > [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-436/igt@xe_pm@s3-mocs.html > [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_pm@s3-mocs.html > > * igt@xe_pm@s3-vm-bind-unbind-all: > - shard-bmg: [DMESG-WARN][558] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [DMESG-WARN][559] ([Intel XE#3468] / [Intel XE#569]) > [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-1/igt@xe_pm@s3-vm-bind-unbind-all.html > [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_pm@s3-vm-bind-unbind-all.html > > * igt@xe_pm@s4-basic: > - shard-dg2-set2: [SKIP][560] ([Intel XE#1130]) -> [DMESG-WARN][561] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn > [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_pm@s4-basic.html > [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-435/igt@xe_pm@s4-basic.html > > * igt@xe_query@multigpu-query-oa-units: > - shard-dg2-set2: [SKIP][562] ([Intel XE#1130]) -> [SKIP][563] ([Intel XE#944]) +3 other tests skip > [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_query@multigpu-query-oa-units.html > [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@xe_query@multigpu-query-oa-units.html > > * igt@xe_query@multigpu-query-topology: > - shard-dg2-set2: [SKIP][564] ([Intel XE#944]) -> [SKIP][565] ([Intel XE#1130]) +2 other tests skip > [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_query@multigpu-query-topology.html > [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_query@multigpu-query-topology.html > > * igt@xe_sriov_flr@flr-vf1-clear: > - shard-dg2-set2: [SKIP][566] ([Intel XE#1130]) -> [SKIP][567] ([Intel XE#3342]) > [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html > [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-436/igt@xe_sriov_flr@flr-vf1-clear.html > > * igt@xe_tlb@basic-tlb: > - shard-dg2-set2: [FAIL][568] ([Intel XE#2922]) -> [SKIP][569] ([Intel XE#1130]) > [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-463/igt@xe_tlb@basic-tlb.html > [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_tlb@basic-tlb.html > > * igt@xe_wedged@basic-wedged: > - shard-dg2-set2: [DMESG-WARN][570] ([Intel XE#2919]) -> [SKIP][571] ([Intel XE#1130]) > [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-433/igt@xe_wedged@basic-wedged.html > [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-434/igt@xe_wedged@basic-wedged.html > > * igt@xe_wedged@wedged-at-any-timeout: > - shard-bmg: [ABORT][572] ([Intel XE#3421]) -> [ABORT][573] ([Intel XE#3421] / [Intel XE#3521]) > [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-bmg-6/igt@xe_wedged@wedged-at-any-timeout.html > [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-bmg-6/igt@xe_wedged@wedged-at-any-timeout.html > > * igt@xe_wedged@wedged-mode-toggle: > - shard-dg2-set2: [SKIP][574] ([Intel XE#1130]) -> [ABORT][575] ([Intel XE#3075] / [Intel XE#3084]) > [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8121/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.html > [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/shard-dg2-433/igt@xe_wedged@wedged-mode-toggle.html > > > [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#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#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 > [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 > [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 > [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 > [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 > [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#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 > [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 > [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 > [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 > [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 > [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 > [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#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#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 > [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 > [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 > [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 > [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 > [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 > [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 > [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 > [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 > [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 > [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 > [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 > [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 > [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#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 > [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 > [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#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 > [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 > [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 > [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 > [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 > [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 > [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 > [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 > [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 > [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 > [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 > [Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577 > [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 > [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 > [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 > [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 > [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 > [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#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 > [Intel XE#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922 > [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 > [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 > [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 > [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 > [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 > [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 > [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 > [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 > [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 > [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 > [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#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 > [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#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 > [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 > [Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339 > [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 > [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 > [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371 > [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 > [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#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 > [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 > [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 > [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#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 > [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 > [Intel XE#3512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3512 > [Intel XE#3515]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515 > [Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521 > [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 > [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 > [Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559 > [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 > [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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 > [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 > [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 > [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 > [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#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 > [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 > [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 > [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 > [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 > [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#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 > [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_8121 -> IGTPW_12170 > * Linux: xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380 -> xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199 > > IGTPW_12170: 12170 > IGT_8121: 8121 > xe-2257-e46649e7764a9f6868ccbcba7b8b23b413303380: e46649e7764a9f6868ccbcba7b8b23b413303380 > xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199: bb17c42521f57b592e9ad49daca1f9f9045d3199 > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12170/index.html -- Matt Roper Graphics Software Engineer Linux GPU Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 (rev2) 2024-11-22 5:33 [PATCH i-g-t v2 0/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Pranay Samala ` (4 preceding siblings ...) 2024-11-22 22:38 ` ✗ Xe.CI.Full: failure " Patchwork @ 2024-11-24 14:40 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-24 14:40 UTC (permalink / raw) To: Samala, Pranay; +Cc: igt-dev == Series Details == Series: tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 (rev2) URL : https://patchwork.freedesktop.org/series/141478/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15727_full -> IGTPW_12170_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12170_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12170_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12170_full: ### IGT changes ### #### Possible regressions #### * igt@core_getversion@all-cards: - shard-tglu: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-9/igt@core_getversion@all-cards.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-10/igt@core_getversion@all-cards.html * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [PASS][3] -> [DMESG-FAIL][4] +3 other tests dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-7/igt@gem_ctx_isolation@preservation-s3.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_tiled_swapping@non-threaded: - shard-snb: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb2/igt@gem_tiled_swapping@non-threaded.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-snb1/igt@gem_tiled_swapping@non-threaded.html * igt@i915_module_load@reload-no-display: - shard-tglu: [PASS][7] -> [DMESG-WARN][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-4/igt@i915_module_load@reload-no-display.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-4/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rpm@sysfs-read: - shard-dg2: [PASS][9] -> [SKIP][10] +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-6/igt@i915_pm_rpm@sysfs-read.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@i915_pm_rpm@sysfs-read.html * igt@i915_pm_rpm@system-suspend-devices: - shard-rkl: [PASS][11] -> [SKIP][12] +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-2/igt@i915_pm_rpm@system-suspend-devices.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-5/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rps@engine-order: - shard-dg2: [PASS][13] -> [FAIL][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-7/igt@i915_pm_rps@engine-order.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-1/igt@i915_pm_rps@engine-order.html * igt@i915_selftest@live@sanitycheck: - shard-tglu-1: NOTRUN -> [ABORT][15] +1 other test abort [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@i915_selftest@live@sanitycheck.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][16] +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-7/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-rkl: [PASS][17] -> [DMESG-WARN][18] +40 other tests dmesg-warn [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][19] +9 other tests dmesg-warn [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-3/igt@kms_vblank@wait-forked-busy-hang@pipe-a-hdmi-a-2.html #### Warnings #### * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: [SKIP][20] ([i915#11078]) -> [SKIP][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-10/igt@device_reset@unbind-cold-reset-rebind.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html * igt@i915_selftest@live: - shard-rkl: [ABORT][22] -> [DMESG-FAIL][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-7/igt@i915_selftest@live.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-4/igt@i915_selftest@live.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: [SKIP][24] ([i915#2575]) -> [SKIP][25] +7 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-8/igt@kms_flip@2x-modeset-vs-vblank-race.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@2x-flip-vs-panning-vs-hang: - {shard-dg2-9}: NOTRUN -> [SKIP][26] +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-9/igt@kms_flip@2x-flip-vs-panning-vs-hang.html Known issues ------------ Here are the changes found in IGTPW_12170_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_allocator@default-alignment: - shard-dg2: [PASS][27] -> [SKIP][28] +27 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-7/igt@api_intel_allocator@default-alignment.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@api_intel_allocator@default-alignment.html * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#8411]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-18/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@debugfs_test@basic-hwmon: - shard-tglu: NOTRUN -> [SKIP][30] ([i915#9318]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-3/igt@debugfs_test@basic-hwmon.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#11078]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-18/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#8414]) +8 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-7/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#8414]) +11 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@drm_fdinfo@busy@vcs1.html * igt@fbdev@eof: - shard-dg2: [PASS][34] -> [SKIP][35] ([i915#2582]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-4/igt@fbdev@eof.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@fbdev@eof.html * igt@gem_ccs@block-multicopy-inplace: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3555] / [i915#9323]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][37] ([i915#9323]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-9/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#7697]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-18/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-set-pat: - shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#8562]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#8555]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-7/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#8555]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][42] ([i915#1099]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-snb4/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#280]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-2/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4771]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-4/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4812]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-1/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4771]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_capture@capture-invisible: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#6334]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-8/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +7 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-6/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3281]) +14 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s4-devices: - shard-rkl: NOTRUN -> [ABORT][55] ([i915#7975] / [i915#8213]) +1 other test abort [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4860]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-dg2: [PASS][58] -> [SKIP][59] ([i915#12936]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-4/igt@gem_lmem_swapping@heavy-verify-multi.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@random: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-glk1/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-8/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#12936]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_lmem_swapping@verify-random.html - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#12193]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4565]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4083]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-12/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +13 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_gtt@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-2/igt@gem_mmap_gtt@pf-nonblock.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-6/igt@gem_mmap_wc@bad-size.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][72] ([i915#2658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-9/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][73] ([i915#12917]) +1 other test timeout [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-5/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#4270]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-3/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4270]) +9 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-10/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-2/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4079]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4885]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4885]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-10/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4079]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#3323]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-8/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-10/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-8/igt@gen9_exec_parse@batch-without-end.html - shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-secure: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-9/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#2527]) +5 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-12/igt@gen9_exec_parse@bb-start-cmd.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#8399]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-9/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#8399]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#6590]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu: NOTRUN -> [SKIP][97] ([i915#6590]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-9/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#11681] / [i915#6621]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#4387]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][100] ([i915#4387]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-8/igt@i915_pm_sseu@full-enable.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#5723]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html - shard-dg1: NOTRUN -> [SKIP][102] ([i915#5723]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][103] ([i915#9311]) +1 other test dmesg-warn [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4212]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#2575] / [i915#5190]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@addfb25-yf-tiled-legacy: - shard-dg2: [PASS][106] -> [SKIP][107] ([i915#2575] / [i915#5190]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-5/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@kms_addfb_basic@addfb25-yf-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4212]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#12454] / [i915#12712]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#8709]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#8709]) +7 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#8709]) +11 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#6228]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-3/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#5286]) +5 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#5286]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-12/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#5286]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#5190]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3638]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-rkl: NOTRUN -> [ABORT][121] ([i915#10354]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5190]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][125] +44 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#12313]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#10307] / [i915#6095]) +117 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-10/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-dp-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#6095]) +169 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#6095]) +84 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#12313]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#12805]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-18/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][132] ([i915#12805]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#6095]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#12313]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#6095]) +34 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#12313]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#6095]) +75 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#3742]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-18/igt@kms_cdclk@mode-transition-all-outputs.html - shard-dg2: NOTRUN -> [SKIP][140] ([i915#11616] / [i915#7213]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-5/igt@kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3742]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#7828]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#7828]) +12 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-18/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#7828]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#7828]) +8 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-dg2: NOTRUN -> [SKIP][146] ([i915#7828]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-10/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#9979]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#7118] / [i915#9424]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#6944] / [i915#9424]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-2/igt@kms_content_protection@content-type-change.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#9424]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-18/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#3116] / [i915#3299]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3299]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-4/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#7118] / [i915#9424]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-3/igt@kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][154] ([i915#7116] / [i915#9424]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-256x256: - shard-rkl: [PASS][155] -> [DMESG-WARN][156] ([i915#12917]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-256x256.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-256x256.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#12976]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#12976]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3555]) +5 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][160] ([i915#12917]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#3555]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#3555]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#4103] / [i915#4213]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-tglu: NOTRUN -> [SKIP][164] ([i915#4103]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg2: NOTRUN -> [SKIP][165] ([i915#4103] / [i915#4213]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#4103]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#9833]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#9723]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#9723]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#8588]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-10/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][171] ([i915#8588]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-3/igt@kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#8588]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3804]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#1257]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#1257]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-12/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#3840]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3840]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][178] ([i915#3840]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#3840]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-9/igt@kms_dsc@dsc-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#3840] / [i915#9053]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#1839]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-4/igt@kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#1839]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#9934]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-5/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#3637]) +8 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-plain-flip: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#3637]) +5 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#9934]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@blocking-wf_vblank: - shard-rkl: [PASS][189] -> [FAIL][190] ([i915#11989] / [i915#12840] / [i915#2122]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-5/igt@kms_flip@blocking-wf_vblank.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-3/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@a-hdmi-a2: - shard-rkl: [PASS][191] -> [FAIL][192] ([i915#11989]) +1 other test fail [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-5/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-3/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-WARN][193] ([i915#12964]) +1 other test dmesg-warn [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-3/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-rkl: [PASS][194] -> [DMESG-WARN][195] ([i915#12964]) +7 other tests dmesg-warn [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-2/igt@kms_flip@flip-vs-panning-interruptible.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-4/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1: - shard-rkl: NOTRUN -> [FAIL][196] ([i915#2122]) +1 other test fail [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-rkl: [PASS][197] -> [FAIL][198] ([i915#12840] / [i915#2122]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-1/igt@kms_flip@wf_vblank-ts-check-interruptible.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-1/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a2: - shard-rkl: [PASS][199] -> [FAIL][200] ([i915#11989] / [i915#12840]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a2.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a2.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1: - shard-snb: [PASS][201] -> [FAIL][202] ([i915#2122]) +8 other tests fail [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-snb7/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1: - shard-tglu: [PASS][203] -> [FAIL][204] ([i915#2122]) +2 other tests fail [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-10/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-5/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][205] ([i915#2672] / [i915#3555]) +3 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#2587] / [i915#2672]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#2672]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-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-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#2587] / [i915#2672]) +7 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#2587] / [i915#2672]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#2672] / [i915#3555]) +7 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#2672] / [i915#3555]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#2672]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#5274]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-3/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#8708]) +24 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [PASS][217] -> [INCOMPLETE][218] ([i915#10056]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#10055]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#10433] / [i915#3458]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3458]) +10 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#8708]) +10 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][223] +50 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#5354]) +22 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html - shard-rkl: NOTRUN -> [SKIP][225] ([i915#1825]) +16 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][226] +107 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#3458]) +24 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#5439]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][229] ([i915#5439]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#9766]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][231] ([i915#9766]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#3023]) +10 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#12713]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-8/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-3/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-3/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#10656]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: [PASS][240] -> [SKIP][241] ([i915#12388]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#12339]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-8/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#10656]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][244] ([i915#10656]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-10/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#12388]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][246] ([i915#12388]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-18/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][247] ([i915#12388]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#12394]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#12339]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][250] ([i915#12339]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][251] ([i915#12339]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][252] ([i915#12169]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][253] ([i915#10647]) +1 other test fail [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#3555]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8806]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-8/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][256] ([i915#8292]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#12247]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#2575] / [i915#9423]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-dg2: [PASS][259] -> [SKIP][260] ([i915#2575] / [i915#9423]) +5 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#12247]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#12247]) +9 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#12247] / [i915#6953]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#12247]) +17 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#12247] / [i915#6953]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#12247]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#5354]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-12/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#9812]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#9812]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-4/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#9685]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-dg1: NOTRUN -> [SKIP][271] ([i915#9685]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-psr: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#9685]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][273] +36 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#8430]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][275] ([i915#8430]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-10/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][276] -> [SKIP][277] ([i915#9519]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#9519]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][279] -> [SKIP][280] ([i915#9519]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-10/igt@kms_pm_rpm@dpms-non-lpsp.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#9519]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][282] -> [SKIP][283] ([i915#12937]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#6524]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][285] ([i915#6524]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-8/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][286] ([i915#11520]) +3 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-snb4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#11520]) +6 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#11520]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html - shard-rkl: NOTRUN -> [SKIP][289] ([i915#11520]) +3 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-glk: NOTRUN -> [SKIP][290] ([i915#11520]) +7 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-glk8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#11520]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][292] ([i915#11520]) +11 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-12/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#9683]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-2/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-sprite-render: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#1072] / [i915#9732]) +28 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr2-no-drrs: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#9732]) +23 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-9/igt@kms_psr@fbc-psr2-no-drrs.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#1072] / [i915#9732]) +11 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#1072] / [i915#9732]) +14 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-7/igt@kms_psr@psr-cursor-mmap-cpu.html - shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#9732]) +10 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][299] +345 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-glk8/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#9685]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#12755]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#5289]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#5289]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#5289]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#3555]) +6 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][306] ([i915#12231]) +1 other test abort [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-4/igt@kms_selftest@drm_framebuffer.html * igt@kms_sysfs_edid_timing: - shard-snb: [PASS][307] -> [FAIL][308] ([IGT#2] / [i915#6493]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb6/igt@kms_sysfs_edid_timing.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-snb2/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#8623]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#9906]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-7/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][311] ([i915#9906]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-2/igt@kms_vrr@flip-basic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#9906]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][313] ([i915#9906]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-12/igt@kms_vrr@flip-basic-fastset.html * igt@kms_writeback@writeback-check-output: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#2437]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-8/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#2437] / [i915#9412]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][316] ([i915#2437]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-glk1/igt@kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][317] ([i915#2437]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#2437]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#2433]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy: - shard-dg2: [PASS][320] -> [SKIP][321] ([i915#12506]) +9 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-4/igt@perf_pmu@busy.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@perf_pmu@busy.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][322] ([i915#4349]) +4 other tests fail [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@cpu-hotplug: - shard-dg1: NOTRUN -> [SKIP][323] ([i915#8850]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@enable-race: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#12506]) +3 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@perf_pmu@enable-race.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#8516]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#8516]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-8/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_reprime: - shard-dg2: [PASS][327] -> [SKIP][328] ([i915#2575]) +152 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-6/igt@prime_mmap@test_reprime.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@prime_mmap@test_reprime.html * igt@prime_vgem@basic-fence-mmap: - shard-dg1: NOTRUN -> [SKIP][329] ([i915#3708] / [i915#4077]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#3291] / [i915#3708]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-5/igt@prime_vgem@basic-read.html * igt@sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#9917]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-17/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][332] ([i915#12910]) +9 other tests fail [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random: - shard-tglu: NOTRUN -> [FAIL][333] ([i915#12910]) +8 other tests fail [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-4/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html * igt@syncobj_timeline@wait-all-for-submit-delayed-submit: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#2575]) +54 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html * igt@sysfs_heartbeat_interval@precise: - shard-snb: NOTRUN -> [SKIP][335] +154 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-snb2/igt@sysfs_heartbeat_interval@precise.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][336] +8 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-1/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][337] ([i915#4818]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][338] ([i915#2575] / [i915#4818]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - shard-snb: [ABORT][339] ([i915#11703]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb7/igt@core_hotunplug@unbind-rebind.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-snb7/igt@core_hotunplug@unbind-rebind.html * igt@core_setmaster@master-drop-set-user: - shard-dg2: [FAIL][341] -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@core_setmaster@master-drop-set-user.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-3/igt@core_setmaster@master-drop-set-user.html * igt@dmabuf@all-tests@dma_fence_chain: - shard-rkl: [DMESG-WARN][343] -> [PASS][344] +46 other tests pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-5/igt@dmabuf@all-tests@dma_fence_chain.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@dmabuf@all-tests@dma_fence_chain.html * igt@fbdev@unaligned-read: - shard-dg2: [SKIP][345] ([i915#2582]) -> [PASS][346] +1 other test pass [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@fbdev@unaligned-read.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-5/igt@fbdev@unaligned-read.html * igt@gem_exec_whisper@basic-queues-priority-all: - shard-rkl: [DMESG-WARN][347] ([i915#12964]) -> [PASS][348] +12 other tests pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-7/igt@gem_exec_whisper@basic-queues-priority-all.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-1/igt@gem_exec_whisper@basic-queues-priority-all.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-dg2: [SKIP][349] ([i915#12936]) -> [PASS][350] +2 other tests pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_lmem_swapping@parallel-random-engines.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-5/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_pxp@create-protected-buffer: - shard-tglu: [SKIP][351] ([i915#4270]) -> [PASS][352] +1 other test pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-3/igt@gem_pxp@create-protected-buffer.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-10/igt@gem_pxp@create-protected-buffer.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][353] ([i915#9820]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-dg1: [FAIL][355] ([i915#12548] / [i915#3591]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][357] ([i915#12739] / [i915#3591]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_selftest@live@guc_multi_lrc: - shard-rkl: [ABORT][359] -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-7/igt@i915_selftest@live@guc_multi_lrc.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-4/igt@i915_selftest@live@guc_multi_lrc.html * igt@i915_selftest@perf: - shard-tglu: [ABORT][361] -> [PASS][362] +1 other test pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-5/igt@i915_selftest@perf.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-3/igt@i915_selftest@perf.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [WARN][363] -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs: - shard-dg2: [SKIP][365] -> [PASS][366] +27 other tests pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [FAIL][367] ([i915#2346]) -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [DMESG-WARN][369] ([i915#12917]) -> [PASS][370] +2 other tests pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-7/igt@kms_flip@absolute-wf_vblank-interruptible.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-7/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1: - shard-tglu: [FAIL][371] ([i915#2122]) -> [PASS][372] +5 other tests pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [FAIL][373] ([i915#2122]) -> [PASS][374] +7 other tests pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-rkl: [FAIL][375] ([i915#11989] / [i915#2122]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-2/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-dg1: [FAIL][377] ([i915#11989] / [i915#12517] / [i915#2122]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg1-12/igt@kms_flip@plain-flip-ts-check-interruptible.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-12/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1: - shard-rkl: [FAIL][379] ([i915#2122]) -> [PASS][380] +2 other tests pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-2/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html - shard-tglu-1: [FAIL][381] ([i915#2122]) -> [PASS][382] +3 other tests pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-1/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-1/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a3: - shard-dg1: [FAIL][383] ([i915#11989]) -> [PASS][384] +2 other tests pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg1-12/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a3.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-12/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a3.html * igt@kms_getfb@getfb-handle-closed: - shard-dg2: [SKIP][385] ([i915#2575]) -> [PASS][386] +153 other tests pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@kms_getfb@getfb-handle-closed.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-8/igt@kms_getfb@getfb-handle-closed.html * igt@kms_hdmi_inject@inject-audio: - shard-rkl: [SKIP][387] -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-4/igt@kms_hdmi_inject@inject-audio.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-dg2: [SKIP][389] ([i915#2575] / [i915#9423]) -> [PASS][390] +1 other test pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][391] ([i915#9295]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2: [SKIP][393] ([i915#12937]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@kms_pm_rpm@cursor-dpms.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-10/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][395] ([i915#9519]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_setmode@clone-exclusive-crtc: - shard-snb: [SKIP][397] -> [PASS][398] +6 other tests pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-snb6/igt@kms_setmode@clone-exclusive-crtc.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-snb7/igt@kms_setmode@clone-exclusive-crtc.html * igt@perf@invalid-remove-userspace-config: - shard-dg2: [SKIP][399] ([i915#12506]) -> [PASS][400] +7 other tests pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@perf@invalid-remove-userspace-config.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-1/igt@perf@invalid-remove-userspace-config.html * igt@perf@polling@0-rcs0: - shard-rkl: [FAIL][401] ([i915#10538]) -> [PASS][402] +1 other test pass [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-1/igt@perf@polling@0-rcs0.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-rkl-2/igt@perf@polling@0-rcs0.html * igt@syncobj_timeline@multi-wait-for-submit-unsubmitted-submitted-signaled: - shard-dg1: [DMESG-WARN][403] ([i915#4423]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg1-17/igt@syncobj_timeline@multi-wait-for-submit-unsubmitted-submitted-signaled.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg1-14/igt@syncobj_timeline@multi-wait-for-submit-unsubmitted-submitted-signaled.html #### Warnings #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: [SKIP][405] ([i915#8411]) -> [SKIP][406] ([i915#2575]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-10/igt@api_intel_bb@blit-reloc-purge-cache.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@drm_fdinfo@busy-hang: - shard-dg2: [SKIP][407] ([i915#12506]) -> [SKIP][408] ([i915#8414]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@drm_fdinfo@busy-hang.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-7/igt@drm_fdinfo@busy-hang.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg2: [SKIP][409] ([i915#8414]) -> [SKIP][410] ([i915#12506]) +2 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-4/igt@drm_fdinfo@virtual-busy-idle-all.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@gem_ctx_freq@sysfs: - shard-dg2: [FAIL][411] ([i915#9561]) -> [SKIP][412] ([i915#2575]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-7/igt@gem_ctx_freq@sysfs.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_ctx_freq@sysfs.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: [SKIP][413] ([i915#2575]) -> [SKIP][414] ([i915#8555]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-close.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: [SKIP][415] ([i915#8555]) -> [SKIP][416] ([i915#2575]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-stop.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: [SKIP][417] ([i915#5882]) -> [SKIP][418] ([i915#2575]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-6/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@engines: - shard-dg2: [SKIP][419] ([i915#2575]) -> [SKIP][420] ([i915#280]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_ctx_sseu@engines.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-3/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: [SKIP][421] ([i915#280]) -> [SKIP][422] ([i915#2575]) +1 other test skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-6/igt@gem_ctx_sseu@invalid-sseu.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: [SKIP][423] ([i915#4812]) -> [SKIP][424] ([i915#2575]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-7/igt@gem_exec_balancer@bonded-true-hang.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: [SKIP][425] ([i915#3539] / [i915#4852]) -> [SKIP][426] ([i915#2575]) +1 other test skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-1/igt@gem_exec_flush@basic-uc-ro-default.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg2: [SKIP][427] ([i915#2575]) -> [SKIP][428] ([i915#3539] / [i915#4852]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_exec_flush@basic-uc-rw-default.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-7/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: [SKIP][429] ([i915#2575]) -> [SKIP][430] ([i915#3281]) +7 other tests skip [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-read.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-write-gtt-noreloc: - shard-dg2: [SKIP][431] ([i915#3281]) -> [SKIP][432] ([i915#2575]) +8 other tests skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-7/igt@gem_exec_reloc@basic-write-gtt-noreloc.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: [SKIP][433] ([i915#4537] / [i915#4812]) -> [SKIP][434] ([i915#2575]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-3/igt@gem_exec_schedule@preempt-queue.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_exec_schedule@preempt-queue.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: [SKIP][435] ([i915#4860]) -> [SKIP][436] ([i915#2575]) +1 other test skip [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-4/igt@gem_fence_thrash@bo-write-verify-y.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2: [SKIP][437] ([i915#2575]) -> [SKIP][438] ([i915#4860]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_fenced_exec_thrash@too-many-fences.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-6/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_mmap_gtt@basic-write-gtt: - shard-dg2: [SKIP][439] ([i915#4077]) -> [SKIP][440] ([i915#2575]) +6 other tests skip [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-2/igt@gem_mmap_gtt@basic-write-gtt.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_mmap_gtt@basic-write-gtt.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: [SKIP][441] ([i915#2575]) -> [SKIP][442] ([i915#4077]) +8 other tests skip [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-3/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@close: - shard-dg2: [SKIP][443] ([i915#4083]) -> [SKIP][444] ([i915#2575]) +5 other tests skip [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-6/igt@gem_mmap_wc@close.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: [SKIP][445] ([i915#2575]) -> [SKIP][446] ([i915#4083]) +3 other tests skip [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_mmap_wc@write-wc-read-gtt.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-6/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: [SKIP][447] ([i915#3282]) -> [SKIP][448] ([i915#2575]) +5 other tests skip [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-uncached.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-11/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: [SKIP][449] ([i915#2575]) -> [SKIP][450] ([i915#3282]) [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-dg2-11/igt@gem_partial_pwrite_pread@write-uncached.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/shard-dg2-10/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: [SKIP][451] ([i915#4270]) -> [TIMEOUT][452] ([i915#12964]) [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15727/shard-rkl-4/igt@gem_pxp@create-protected-buffer.html [452 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12170/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-11-26 23:21 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-22 5:33 [PATCH i-g-t v2 0/2] tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 Pranay Samala 2024-11-22 5:33 ` [PATCH i-g-t v2 1/2] " Pranay Samala 2024-11-26 4:51 ` B, Jeevan 2024-11-22 5:34 ` [PATCH i-g-t v2 2/2] HAX: Do not merge Pranay Samala 2024-11-22 6:43 ` ✗ Xe.CI.BAT: failure for tests/intel/kms_big_fb: Intel display version 20 onwards doesn't do hflip with tile4 (rev2) Patchwork 2024-11-22 8:01 ` ✓ i915.CI.BAT: success " Patchwork 2024-11-22 22:38 ` ✗ Xe.CI.Full: failure " Patchwork 2024-11-26 23:21 ` Matt Roper 2024-11-24 14:40 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox