* [PATCH i-g-t 0/2] Add sink max dsc slice count lib helper
@ 2024-12-10 13:53 Swati Sharma
2024-12-10 13:53 ` [PATCH i-g-t 1/2] lib/dsc: Add helper igt_get_dsc_sink_max_slice_count() Swati Sharma
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Swati Sharma @ 2024-12-10 13:53 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma
Lib helper is added to show max dsc slice count helper via
debugfs.
Swati Sharma (2):
lib/dsc: Add helper igt_get_dsc_sink_max_slice_count()
tests/intel/kms_joiner: Add igt_get_dsc_sink_max_slice_count()
constraint
lib/igt_dsc.c | 24 ++++++++++++++++++++++++
lib/igt_dsc.h | 1 +
tests/intel/kms_joiner.c | 3 ++-
3 files changed, 27 insertions(+), 1 deletion(-)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH i-g-t 1/2] lib/dsc: Add helper igt_get_dsc_sink_max_slice_count() 2024-12-10 13:53 [PATCH i-g-t 0/2] Add sink max dsc slice count lib helper Swati Sharma @ 2024-12-10 13:53 ` Swati Sharma 2024-12-11 2:50 ` Reddy Guddati, Santhosh 2024-12-10 13:53 ` [PATCH i-g-t 2/2] tests/intel/kms_joiner: Add igt_get_dsc_sink_max_slice_count() constraint Swati Sharma ` (4 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Swati Sharma @ 2024-12-10 13:53 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma Helper is added to return maximum dsc sink slice count from the connector debugfs. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_dsc.c | 24 ++++++++++++++++++++++++ lib/igt_dsc.h | 1 + 2 files changed, 25 insertions(+) diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c index 229cd3298..8d259b734 100644 --- a/lib/igt_dsc.c +++ b/lib/igt_dsc.c @@ -308,3 +308,27 @@ int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name) return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY); } + +/** + * igt_get_dsc_sink_max_slice_count: + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Returns: The maximum dsc sink slice count from the connector debugfs. + */ +int igt_get_dsc_sink_max_slice_count(int drmfd, char *connector_name) +{ + char file_name[128] = {0}; + char buf[512]; + char *start_loc; + int max_slice_count; + + sprintf(file_name, "%s/i915_dsc_fec_support", connector_name); + igt_debugfs_read(drmfd, file_name, buf); + + igt_assert(start_loc = strstr(buf, "DSC_Sink_Max_Slice_Count: ")); + igt_assert_eq(sscanf(start_loc, "DSC_Sink_Max_Slice_Count: %d", &max_slice_count), 1); + igt_assert(max_slice_count > 0); + + return max_slice_count; +} diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h index 7ab0917ec..3cf2d4e76 100644 --- a/lib/igt_dsc.h +++ b/lib/igt_dsc.h @@ -27,5 +27,6 @@ int igt_get_dsc_fractional_bpp_supported(int drmfd, char *connector_name); bool igt_is_force_dsc_fractional_bpp_enabled(int drmfd, char *connector_name); int igt_force_dsc_fractional_bpp_enable(int drmfd, char *connector_name); int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name); +int igt_get_dsc_sink_max_slice_count(int drmfd, char *connector_name); #endif -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/dsc: Add helper igt_get_dsc_sink_max_slice_count() 2024-12-10 13:53 ` [PATCH i-g-t 1/2] lib/dsc: Add helper igt_get_dsc_sink_max_slice_count() Swati Sharma @ 2024-12-11 2:50 ` Reddy Guddati, Santhosh 0 siblings, 0 replies; 9+ messages in thread From: Reddy Guddati, Santhosh @ 2024-12-11 2:50 UTC (permalink / raw) To: igt-dev On 10-12-2024 19:23, Swati Sharma wrote: > Helper is added to return maximum dsc sink slice count from the > connector debugfs. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > lib/igt_dsc.c | 24 ++++++++++++++++++++++++ > lib/igt_dsc.h | 1 + > 2 files changed, 25 insertions(+) > > diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c > index 229cd3298..8d259b734 100644 > --- a/lib/igt_dsc.c > +++ b/lib/igt_dsc.c > @@ -308,3 +308,27 @@ int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name) > > return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY); > } > + > +/** > + * igt_get_dsc_sink_max_slice_count: > + * @drmfd: A drm file descriptor > + * @connector_name: Name of the libdrm connector we're going to use > + * > + * Returns: The maximum dsc sink slice count from the connector debugfs. > + */ > +int igt_get_dsc_sink_max_slice_count(int drmfd, char *connector_name) > +{ > + char file_name[128] = {0}; > + char buf[512]; > + char *start_loc; > + int max_slice_count; > + > + sprintf(file_name, "%s/i915_dsc_fec_support", connector_name); > + igt_debugfs_read(drmfd, file_name, buf); > + > + igt_assert(start_loc = strstr(buf, "DSC_Sink_Max_Slice_Count: ")); > + igt_assert_eq(sscanf(start_loc, "DSC_Sink_Max_Slice_Count: %d", &max_slice_count), 1); > + igt_assert(max_slice_count > 0); > + > + return max_slice_count; > +} LGTM, Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h > index 7ab0917ec..3cf2d4e76 100644 > --- a/lib/igt_dsc.h > +++ b/lib/igt_dsc.h > @@ -27,5 +27,6 @@ int igt_get_dsc_fractional_bpp_supported(int drmfd, char *connector_name); > bool igt_is_force_dsc_fractional_bpp_enabled(int drmfd, char *connector_name); > int igt_force_dsc_fractional_bpp_enable(int drmfd, char *connector_name); > int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name); > +int igt_get_dsc_sink_max_slice_count(int drmfd, char *connector_name); > > #endif ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/kms_joiner: Add igt_get_dsc_sink_max_slice_count() constraint 2024-12-10 13:53 [PATCH i-g-t 0/2] Add sink max dsc slice count lib helper Swati Sharma 2024-12-10 13:53 ` [PATCH i-g-t 1/2] lib/dsc: Add helper igt_get_dsc_sink_max_slice_count() Swati Sharma @ 2024-12-10 13:53 ` Swati Sharma 2024-12-12 12:17 ` Bhadane, Dnyaneshwar 2024-12-10 17:55 ` ✓ i915.CI.BAT: success for Add sink max dsc slice count lib helper Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Swati Sharma @ 2024-12-10 13:53 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma For ultrajoiner min 4 pipes are required and each pipe requires atleast 2 slices, which makes minimum of 8 slices for ultrajoiner. Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3387 Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_joiner.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c index 9a353ee1b..418ff26a6 100644 --- a/tests/intel/kms_joiner.c +++ b/tests/intel/kms_joiner.c @@ -457,7 +457,8 @@ igt_main if (ultrajoiner_found) data.ultra_joiner_output[data.ultra_joiner_output_count++] = output; - else if (force_joiner_supported && is_dsc_supported_by_sink(data.drm_fd, output)) + else if (force_joiner_supported && is_dsc_supported_by_sink(data.drm_fd, output) && + igt_get_dsc_sink_max_slice_count(data.drm_fd, output->name) >= 8) data.non_ultra_joiner_output[data.non_ultra_joiner_output_count++] = output; if (bigjoiner_found) -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* RE: [PATCH i-g-t 2/2] tests/intel/kms_joiner: Add igt_get_dsc_sink_max_slice_count() constraint 2024-12-10 13:53 ` [PATCH i-g-t 2/2] tests/intel/kms_joiner: Add igt_get_dsc_sink_max_slice_count() constraint Swati Sharma @ 2024-12-12 12:17 ` Bhadane, Dnyaneshwar 0 siblings, 0 replies; 9+ messages in thread From: Bhadane, Dnyaneshwar @ 2024-12-12 12:17 UTC (permalink / raw) To: Sharma, Swati2, igt-dev@lists.freedesktop.org Cc: Nautiyal, Ankit K, Sharma, Swati2 > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Swati > Sharma > Sent: Tuesday, December 10, 2024 7:23 PM > To: igt-dev@lists.freedesktop.org > Cc: Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>; Sharma, Swati2 > <swati2.sharma@intel.com> > Subject: [PATCH i-g-t 2/2] tests/intel/kms_joiner: Add > igt_get_dsc_sink_max_slice_count() constraint > > For ultrajoiner min 4 pipes are required and each pipe requires atleast 2 slices, > which makes minimum of 8 slices for ultrajoiner. > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3387 > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/intel/kms_joiner.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c index > 9a353ee1b..418ff26a6 100644 > --- a/tests/intel/kms_joiner.c > +++ b/tests/intel/kms_joiner.c > @@ -457,7 +457,8 @@ igt_main > > if (ultrajoiner_found) > > data.ultra_joiner_output[data.ultra_joiner_output_count++] = output; > - else if (force_joiner_supported && > is_dsc_supported_by_sink(data.drm_fd, output)) > + else if (force_joiner_supported && > is_dsc_supported_by_sink(data.drm_fd, output) && > + > igt_get_dsc_sink_max_slice_count(data.drm_fd, output->name) >= 8) It Look good to me, Reviewed-by: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com> > > data.non_ultra_joiner_output[data.non_ultra_joiner_output_count++ > ] = output; > > if (bigjoiner_found) > -- > 2.25.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for Add sink max dsc slice count lib helper 2024-12-10 13:53 [PATCH i-g-t 0/2] Add sink max dsc slice count lib helper Swati Sharma 2024-12-10 13:53 ` [PATCH i-g-t 1/2] lib/dsc: Add helper igt_get_dsc_sink_max_slice_count() Swati Sharma 2024-12-10 13:53 ` [PATCH i-g-t 2/2] tests/intel/kms_joiner: Add igt_get_dsc_sink_max_slice_count() constraint Swati Sharma @ 2024-12-10 17:55 ` Patchwork 2024-12-10 19:20 ` ✗ i915.CI.Full: failure " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-12-10 17:55 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev == Series Details == Series: Add sink max dsc slice count lib helper URL : https://patchwork.freedesktop.org/series/142353/ State : success == Summary == CI Bug Log - changes from IGT_8147 -> IGTPW_12284 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12284 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_auth@basic-auth: - bat-twl-1: [PASS][1] -> [DMESG-WARN][2] ([i915#1982]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-twl-1/igt@core_auth@basic-auth.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/bat-twl-1/igt@core_auth@basic-auth.html * igt@i915_pm_rpm@module-reload: - bat-dg2-11: [PASS][3] -> [FAIL][4] ([i915#12903]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-dg2-11/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/bat-dg2-11/igt@i915_pm_rpm@module-reload.html - bat-dg1-7: [PASS][5] -> [FAIL][6] ([i915#12903]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/bat-dg1-7/igt@i915_pm_rpm@module-reload.html * igt@kms_flip@basic-flip-vs-dpms@a-dp2: - fi-cfl-8109u: [PASS][7] -> [DMESG-WARN][8] ([i915#12914]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-dpms@a-dp2.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-dpms@a-dp2.html #### Possible fixes #### * igt@dmabuf@all-tests: - bat-apl-1: [INCOMPLETE][9] ([i915#12904]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-apl-1/igt@dmabuf@all-tests.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/bat-apl-1/igt@dmabuf@all-tests.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [ABORT][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-arlh-3/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/bat-arlh-3/igt@i915_selftest@live@workarounds.html * igt@kms_chamelium_edid@dp-edid-read: - bat-dg2-13: [FAIL][13] ([i915#12505]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/bat-dg2-13/igt@kms_chamelium_edid@dp-edid-read.html #### Warnings #### * igt@kms_flip@basic-flip-vs-dpms@c-dp2: - fi-cfl-8109u: [DMESG-WARN][15] ([i915#11621]) -> [DMESG-WARN][16] ([i915#11621] / [i915#12914]) +2 other tests dmesg-warn [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-dpms@c-dp2.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-dpms@c-dp2.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12505]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12505 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#12914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12914 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8147 -> IGTPW_12284 CI-20190529: 20190529 CI_DRM_15814: 6966a52cb5531bf6cc785fadba160a71cd31e7aa @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12284: c34c6cfb6e5421c8492176f45effdbd59839b1e9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8147: df65b61f81a5cc919c10ff9c5ed516b45364135c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for Add sink max dsc slice count lib helper 2024-12-10 13:53 [PATCH i-g-t 0/2] Add sink max dsc slice count lib helper Swati Sharma ` (2 preceding siblings ...) 2024-12-10 17:55 ` ✓ i915.CI.BAT: success for Add sink max dsc slice count lib helper Patchwork @ 2024-12-10 19:20 ` Patchwork 2024-12-10 19:56 ` ✓ Xe.CI.BAT: success " Patchwork 2024-12-10 21:47 ` ✗ Xe.CI.Full: failure " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-12-10 19:20 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev == Series Details == Series: Add sink max dsc slice count lib helper URL : https://patchwork.freedesktop.org/series/142353/ State : failure == Summary == CI Bug Log - changes from IGT_8147_full -> IGTPW_12284_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12284_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12284_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_12284/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_12284_full: ### IGT changes ### #### Possible regressions #### * igt@i915_suspend@basic-s3-without-i915: - shard-snb: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-snb5/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [INCOMPLETE][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][3] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-glk8/igt@perf_pmu@rc6-suspend.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_async_flips@invalid-async-flip-atomic: - {shard-dg2-9}: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-9/igt@kms_async_flips@invalid-async-flip-atomic.html Known issues ------------ Here are the changes found in IGTPW_12284_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-12/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-1/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#6230]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-3/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#6230]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-13/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][10] ([i915#6230]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-2/igt@api_intel_bb@crc32.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-13/igt@drm_fdinfo@virtual-busy-all.html - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-3/igt@drm_fdinfo@virtual-busy-all.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-1/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-10/igt@gem_ccs@block-copy-compressed.html - shard-rkl: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html - shard-rkl: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-1/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-18/igt@gem_close_race@multigpu-basic-threads.html - shard-tglu: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-9/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#6335]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-4/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][22] ([i915#1099]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-snb1/igt@gem_ctx_persistence@engines-hostile-preempt.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-5/igt@gem_ctx_sseu@invalid-sseu.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@gem_ctx_sseu@invalid-sseu.html - shard-tglu: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-5/igt@gem_ctx_sseu@invalid-sseu.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-4/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#4525]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-10/igt@gem_exec_balancer@parallel-contexts.html - shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-13/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_reloc@basic-range: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +5 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-7/igt@gem_exec_reloc@basic-range.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +10 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-3/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281]) +8 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +5 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-6/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#7276]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4860]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-6/igt@gem_fenced_exec_thrash@2-spare-fences.html - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4860]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-18/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4613]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4613]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-random.html - shard-glk: NOTRUN -> [SKIP][40] ([i915#4613]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_mmap_gtt@basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4077]) +6 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-18/igt@gem_mmap_gtt@basic-small-copy-xy.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4077]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-3/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4077]) +6 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-4/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4083]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-10/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@read: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4083]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-6/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4083]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-12/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3282]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3282]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-13/igt@gem_partial_pwrite_pread@writes-after-reads.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3282]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-3/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3282]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-1/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][51] ([i915#2658]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-snb5/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][52] ([i915#12964]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][53] ([i915#12917] / [i915#12964]) +3 other tests timeout [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-off-3.html - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4270]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-6/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8428]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-2/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html - shard-dg2: NOTRUN -> [SKIP][57] ([i915#5190] / [i915#8428]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-8/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4079]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4079]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-12/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4079]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-2/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3297]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-4/igt@gem_userptr_blits@access-control.html - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3297]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-5/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3297]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3297]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][65] ([i915#3297]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-6/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][66] +14 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-6/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#2856]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-2/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#2527]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-7/igt@gen9_exec_parse@batch-invalid-length.html - shard-dg1: NOTRUN -> [SKIP][69] ([i915#2527]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-13/igt@gen9_exec_parse@batch-invalid-length.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#2856]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-3/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#2527] / [i915#2856]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-10/igt@gen9_exec_parse@bb-start-cmd.html * igt@i915_module_load@reload-no-display: - shard-tglu-1: NOTRUN -> [DMESG-WARN][72] ([i915#13029]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-1/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu-1: NOTRUN -> [ABORT][73] ([i915#12817] / [i915#9820]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-1/igt@i915_module_load@reload-with-fault-injection.html - shard-glk: NOTRUN -> [ABORT][74] ([i915#9820]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][75] ([i915#9820]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#8399]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-9/igt@i915_pm_freq_api@freq-basic-api.html - shard-rkl: NOTRUN -> [SKIP][77] ([i915#8399]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rps@thresholds: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#11681]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-7/igt@i915_pm_rps@thresholds.html - shard-dg2: NOTRUN -> [SKIP][79] ([i915#11681]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-4/igt@i915_pm_rps@thresholds.html - shard-dg1: NOTRUN -> [SKIP][80] ([i915#11681]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-13/igt@i915_pm_rps@thresholds.html * igt@i915_suspend@sysfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][81] ([i915#4817]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-glk4/igt@i915_suspend@sysfs-reader.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#7707]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-1/igt@intel_hwmon@hwmon-write.html - shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#7707]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-1/igt@intel_hwmon@hwmon-write.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#7707]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4212]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-12/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4212]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4212]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][88] +22 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#5286]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#5286]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#5286]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#5286]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4538] / [i915#5286]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3638]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3638]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5190]) +12 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538]) +5 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#6095]) +60 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#6095]) +39 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#10307] / [i915#6095]) +42 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#6095]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#12313]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][103] ([i915#12313]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#12313]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][105] ([i915#12313]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][106] ([i915#12313]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#12805]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][108] ([i915#12805]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-glk: NOTRUN -> [SKIP][109] +218 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-glk7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html - shard-dg2: NOTRUN -> [INCOMPLETE][110] ([i915#12796]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][111] ([i915#12796]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#6095]) +39 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#6095]) +49 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#3742]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-13/igt@kms_cdclk@mode-transition-all-outputs.html - shard-tglu: NOTRUN -> [SKIP][115] ([i915#3742]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-2/igt@kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#7213] / [i915#9010]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3742]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-7/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#7828]) +6 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-5/igt@kms_chamelium_audio@dp-audio.html - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#7828]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#7828]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-1/igt@kms_chamelium_frames@dp-crc-fast.html - shard-dg1: NOTRUN -> [SKIP][121] ([i915#7828]) +6 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#7828]) +8 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#9424]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-1/igt@kms_content_protection@mei-interface.html - shard-rkl: NOTRUN -> [SKIP][124] ([i915#9424]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@kms_content_protection@mei-interface.html - shard-tglu: NOTRUN -> [SKIP][125] ([i915#6944] / [i915#9424]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-10/igt@kms_content_protection@mei-interface.html - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#8063] / [i915#9433]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-6/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [TIMEOUT][127] ([i915#7173]) +1 other test timeout [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-10/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#7116]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][129] ([i915#12964]) +17 other tests dmesg-warn [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-64x64@pipe-b-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#8814]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#3555]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-9/igt@kms_cursor_crc@cursor-random-32x32.html - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#3555] / [i915#8814]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#13049]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-rkl: NOTRUN -> [SKIP][134] ([i915#13049]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#3555]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#13049]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-tglu: NOTRUN -> [SKIP][137] ([i915#13049]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#13049]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][139] +22 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#4213]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][141] ([i915#4103]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4103] / [i915#4213]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-tglu: NOTRUN -> [SKIP][143] ([i915#4103]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#13046] / [i915#5354]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#9067]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][146] ([i915#9067]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-10/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-snb: NOTRUN -> [FAIL][147] ([i915#12170]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][148] ([i915#11968]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#12402]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-6/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-rkl: NOTRUN -> [SKIP][150] ([i915#12402]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][151] ([i915#12402]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-18/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#8812]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#3840]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats.html - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#3840]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#3840]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html - shard-tglu: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#3840]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-10/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#1839]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-11/igt@kms_feature_discovery@display-3x.html - shard-rkl: NOTRUN -> [SKIP][158] ([i915#1839]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-2/igt@kms_feature_discovery@display-3x.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#1839]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-17/igt@kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][160] ([i915#1839]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-7/igt@kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#1839]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-4/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#9934]) +6 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-2/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#3637]) +7 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-5/igt@kms_flip@2x-nonexisting-fb.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3637]) +5 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#9934]) +6 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-7/igt@kms_flip@2x-plain-flip.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#9934]) +6 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-13/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][167] ([i915#11989]) +1 other test fail [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-10/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][169] ([i915#2672] / [i915#3555]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#2672] / [i915#8813]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#2587] / [i915#2672]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#2672] / [i915#3555] / [i915#5190]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#2672] / [i915#3555]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#2672] / [i915#3555]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-18/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-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#2672]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8810] / [i915#8813]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8810]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#2672] / [i915#3555]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#2672]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#8708]) +6 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#8708]) +16 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#1825]) +21 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-snb: [PASS][184] -> [SKIP][185] +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3023]) +20 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3458]) +10 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][188] +37 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#5354]) +21 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#8708]) +14 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#1825]) +35 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][192] +13 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3458]) +10 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][194] +67 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][195] +322 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-snb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-mtlp: NOTRUN -> [ABORT][196] ([i915#10159] / [i915#13218]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-10/igt@kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8228]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8228]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8228]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-12/igt@kms_hdr@static-toggle-suspend.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8228]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#12394]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@kms_joiner@basic-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][204] ([i915#12394]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-6/igt@kms_joiner@basic-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#10656]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-7/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#10656]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#12394]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#12339]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#12339]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][210] ([i915#12339]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][211] ([i915#12339]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][212] ([i915#12339]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-17/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#6301]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-7/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][214] ([i915#6301]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#6301]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-17/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][216] ([i915#12169]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-glk7/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][217] ([i915#10647]) +1 other test fail [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-glk7/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-none: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#11614] / [i915#3582]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-5/igt@kms_plane_lowres@tiling-none.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-5/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8806]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-4/igt@kms_plane_multiple@tiling-y.html - shard-dg2: NOTRUN -> [SKIP][221] ([i915#8806]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-5/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#9809]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - shard-dg2: NOTRUN -> [SKIP][223] ([i915#13046] / [i915#5354] / [i915#9423]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b: - shard-rkl: [PASS][224] -> [DMESG-WARN][225] ([i915#12964]) +2 other tests dmesg-warn [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#12247] / [i915#3555] / [i915#6953]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#12247]) +8 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#5354]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-4/igt@kms_pm_backlight@basic-brightness.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#5354]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-18/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#9293]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3828]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-2/igt@kms_pm_dc@dc5-retention-flops.html - shard-dg2: NOTRUN -> [SKIP][232] ([i915#3828]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-8/igt@kms_pm_dc@dc5-retention-flops.html - shard-rkl: NOTRUN -> [SKIP][233] ([i915#3828]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#3828]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-12/igt@kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][235] ([i915#3828]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-8/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [FAIL][236] ([i915#12913]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-4/igt@kms_pm_dc@dc6-dpms.html - shard-dg2: NOTRUN -> [SKIP][237] ([i915#5978]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-5/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#3361]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#8430]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][240] ([i915#8430]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-10/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#12916]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-7/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#9519]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#9519]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#9519]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#9519]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#6524]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@kms_prime@d3hot.html - shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#6524]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-1/igt@kms_prime@d3hot.html - shard-dg1: NOTRUN -> [SKIP][248] ([i915#6524]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@kms_prime@d3hot.html - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#6524]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-5/igt@kms_prime@d3hot.html - shard-dg2: NOTRUN -> [SKIP][250] ([i915#6524] / [i915#6805]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-11/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#11520]) +8 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-3/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#12316]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-6/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#11520]) +7 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#11520]) +7 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#11520]) +8 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-13/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-snb: NOTRUN -> [SKIP][256] ([i915#11520]) +6 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-snb2/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][257] ([i915#11520]) +7 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#1072] / [i915#9732]) +19 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#1072] / [i915#9732]) +10 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-10/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-sprite-blt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#9688]) +5 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-3/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#9732]) +13 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-3/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#1072] / [i915#9732]) +14 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@kms_psr@psr2-sprite-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#4077] / [i915#9688]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#9685]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-tglu: NOTRUN -> [SKIP][265] ([i915#9685]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-dg2: NOTRUN -> [SKIP][266] ([i915#9685]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-rkl: NOTRUN -> [SKIP][267] ([i915#9685]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#12755]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-5/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#5289]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#5289]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#3555]) +3 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-18/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][272] ([i915#13179]) +1 other test abort [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-snb7/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-tglu: [PASS][273] -> [FAIL][274] ([i915#5465]) +2 other tests fail [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/shard-tglu-3/igt@kms_setmode@basic.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-7/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-rkl: [PASS][275] -> [FAIL][276] ([i915#5465]) +2 other tests fail [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/shard-rkl-7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [FAIL][277] ([i915#5465]) +2 other tests fail [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-4/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#3555]) +3 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8809]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#8623]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#8623]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#9906]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-4/igt@kms_vrr@flip-basic-fastset.html - shard-dg2: NOTRUN -> [SKIP][283] ([i915#9906]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#9906]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@kms_vrr@max-min.html - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#8808] / [i915#9906]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#9906]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-3/igt@kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#9906]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-2/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#9906]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf_pmu@all-busy-check-all: - shard-dg2: NOTRUN -> [ABORT][289] ([i915#13218]) +25 other tests abort [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-6/igt@perf_pmu@all-busy-check-all.html * igt@perf_pmu@busy-hang@rcs0: - shard-glk: NOTRUN -> [ABORT][290] ([i915#13218]) +24 other tests abort [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-glk4/igt@perf_pmu@busy-hang@rcs0.html * igt@perf_pmu@busy-idle: - shard-snb: NOTRUN -> [ABORT][291] ([i915#13218]) +19 other tests abort [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-snb4/igt@perf_pmu@busy-idle.html * igt@perf_pmu@idle: - shard-rkl: NOTRUN -> [ABORT][292] ([i915#13218]) +29 other tests abort [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-3/igt@perf_pmu@idle.html * igt@perf_pmu@idle-no-semaphores@rcs0: - shard-tglu: NOTRUN -> [ABORT][293] ([i915#13218]) +27 other tests abort [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-8/igt@perf_pmu@idle-no-semaphores@rcs0.html * igt@perf_pmu@idle@rcs0: - shard-tglu-1: NOTRUN -> [ABORT][294] ([i915#13218]) +2 other tests abort [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-1/igt@perf_pmu@idle@rcs0.html * igt@perf_pmu@init-wait@rcs0: - shard-mtlp: NOTRUN -> [ABORT][295] ([i915#13218]) +26 other tests abort [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-8/igt@perf_pmu@init-wait@rcs0.html * igt@perf_pmu@rc6: - shard-dg1: NOTRUN -> [ABORT][296] ([i915#13218]) +30 other tests abort [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-17/igt@perf_pmu@rc6.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#8516]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][298] ([i915#8516]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#8516]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-17/igt@perf_pmu@rc6@other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][300] ([i915#8516]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-7/igt@perf_pmu@rc6@other-idle-gt0.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#9917]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-dg1: NOTRUN -> [SKIP][302] ([i915#9917]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6: - shard-tglu: NOTRUN -> [FAIL][303] ([i915#12910]) +9 other tests fail [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-tglu-5/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html - shard-mtlp: NOTRUN -> [FAIL][304] ([i915#12910]) +9 other tests fail [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-mtlp-4/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#9917]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-on.html #### Possible fixes #### * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-rkl: [DMESG-WARN][306] ([i915#12964]) -> [PASS][307] +1 other test pass [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8147/shard-rkl-4/igt@gem_fence_thrash@bo-write-verify-threaded-none.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/shard-rkl-5/igt@gem_fence_thrash@bo-write-verify-threaded-none.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11968 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12170]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12170 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12913]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12913 [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13218 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9010]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9010 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9293]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9293 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8147 -> IGTPW_12284 CI-20190529: 20190529 CI_DRM_15814: 6966a52cb5531bf6cc785fadba160a71cd31e7aa @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12284: c34c6cfb6e5421c8492176f45effdbd59839b1e9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8147: df65b61f81a5cc919c10ff9c5ed516b45364135c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12284/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for Add sink max dsc slice count lib helper 2024-12-10 13:53 [PATCH i-g-t 0/2] Add sink max dsc slice count lib helper Swati Sharma ` (3 preceding siblings ...) 2024-12-10 19:20 ` ✗ i915.CI.Full: failure " Patchwork @ 2024-12-10 19:56 ` Patchwork 2024-12-10 21:47 ` ✗ Xe.CI.Full: failure " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-12-10 19:56 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2150 bytes --] == Series Details == Series: Add sink max dsc slice count lib helper URL : https://patchwork.freedesktop.org/series/142353/ State : success == Summary == CI Bug Log - changes from XEIGT_8147_BAT -> XEIGTPW_12284_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12284_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - bat-lnl-1: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3729]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-dpms@a-edp1: - bat-lnl-1: [DMESG-WARN][3] ([Intel XE#3729]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html [Intel XE#3729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3729 Build changes ------------- * IGT: IGT_8147 -> IGTPW_12284 * Linux: xe-2345-afdbad14a16d9f44489fe37a05e93b24581bdc4f -> xe-2346-6966a52cb5531bf6cc785fadba160a71cd31e7aa IGTPW_12284: c34c6cfb6e5421c8492176f45effdbd59839b1e9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8147: df65b61f81a5cc919c10ff9c5ed516b45364135c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2345-afdbad14a16d9f44489fe37a05e93b24581bdc4f: afdbad14a16d9f44489fe37a05e93b24581bdc4f xe-2346-6966a52cb5531bf6cc785fadba160a71cd31e7aa: 6966a52cb5531bf6cc785fadba160a71cd31e7aa == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/index.html [-- Attachment #2: Type: text/html, Size: 2824 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for Add sink max dsc slice count lib helper 2024-12-10 13:53 [PATCH i-g-t 0/2] Add sink max dsc slice count lib helper Swati Sharma ` (4 preceding siblings ...) 2024-12-10 19:56 ` ✓ Xe.CI.BAT: success " Patchwork @ 2024-12-10 21:47 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-12-10 21:47 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 77311 bytes --] == Series Details == Series: Add sink max dsc slice count lib helper URL : https://patchwork.freedesktop.org/series/142353/ State : failure == Summary == CI Bug Log - changes from XEIGT_8147_full -> XEIGTPW_12284_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12284_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12284_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_12284_full: ### IGT changes ### #### Possible regressions #### * igt@xe_dma_buf_sync@export-dma-buf-once-read-sync: - shard-bmg: NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@xe_dma_buf_sync@export-dma-buf-once-read-sync.html Known issues ------------ Here are the changes found in XEIGTPW_12284_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#1125]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-2/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#3157]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@crc: - shard-bmg: NOTRUN -> [INCOMPLETE][4] ([Intel XE#3781]) +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@kms_async_flips@crc.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#3279]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) +6 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +11 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +16 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#2191]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367]) +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#367]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-8/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1512]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-6/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +18 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3432]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2652] / [Intel XE#787]) +9 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#3432]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +16 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-negative: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#306]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-7/igt@kms_chamelium_color@ctm-negative.html - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2325]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2252]) +11 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#373]) +14 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-5/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_content_protection@dp-mst-type-1: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#307]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-3/igt@kms_content_protection@dp-mst-type-1.html - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2390]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][26] ([Intel XE#1178]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2341]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3278]) +4 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-8/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2321]) +5 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2321]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1424]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2320]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2286]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#323]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#309]) +6 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2291]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][37] -> [DMESG-WARN][38] ([Intel XE#877]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#2291]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-bmg: NOTRUN -> [FAIL][41] ([Intel XE#2141]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1340]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#3070]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2244]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2244]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#703]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-1/igt@kms_feature_discovery@display-3x.html - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2373]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][48] ([Intel XE#3468]) +43 other tests dmesg-warn [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1421]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2316]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip@2x-nonexisting-fb.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2316]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-expired-vblank: - shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#2882]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][54] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-warn [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html * igt@kms_flip@flip-vs-suspend@c-dp2: - shard-bmg: NOTRUN -> [DMESG-FAIL][55] ([Intel XE#1727] / [Intel XE#3468]) +4 other tests dmesg-fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_flip@flip-vs-suspend@c-dp2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1401]) +8 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1397]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1397] / [Intel XE#1745]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-bmg: [PASS][59] -> [INCOMPLETE][60] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests incomplete [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1401] / [Intel XE#1745]) +8 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2293]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-connector-state: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#352]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-5/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2311]) +22 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: NOTRUN -> [FAIL][66] ([Intel XE#2333]) +10 other tests fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#656]) +55 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2352]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#651]) +19 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1469]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2313]) +17 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-lnl: NOTRUN -> [ABORT][72] ([Intel XE#3673]) +10 other tests abort [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2312]) +22 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1470] / [Intel XE#2853]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#3544]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1503]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-3/igt@kms_hdr@static-toggle.html * igt@kms_invalid_mode@clock-too-high: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1450] / [Intel XE#2568]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-6/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1450]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-6/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#3012]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2927]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [PASS][82] -> [INCOMPLETE][83] ([Intel XE#1035] / [Intel XE#3468]) +1 other test incomplete [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@kms_plane@plane-panning-bottom-right-suspend.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-bmg: [PASS][84] -> [DMESG-FAIL][85] ([Intel XE#3468]) +10 other tests dmesg-fail [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#2493]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-1/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#2763]) +29 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2763]) +9 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#736]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][90] ([Intel XE#1430]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: NOTRUN -> [FAIL][91] ([Intel XE#2029]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-6/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#1439] / [Intel XE#836]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1439] / [Intel XE#836]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1439] / [Intel XE#3141]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#1489]) +6 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#2893]) +4 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1406]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-5/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2234]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@primary-rotation-90: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#3414]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1127]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#3414]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2413]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1435]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2450]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@query-forked-busy-hang: - shard-bmg: [PASS][106] -> [INCOMPLETE][107] ([Intel XE#1727]) +1 other test incomplete [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-3/igt@kms_vblank@query-forked-busy-hang.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_vblank@query-forked-busy-hang.html * igt@kms_vblank@wait-forked@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-FAIL][108] ([Intel XE#3468]) +8 other tests dmesg-fail [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-7/igt@kms_vblank@wait-forked@pipe-a-dp-2.html * igt@kms_vrr@cmrr: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2168]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_vrr@cmrr.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#1499]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_vrr@flip-basic.html * igt@kms_vrr@negative-basic: - shard-bmg: [PASS][111] -> [SKIP][112] ([Intel XE#1499]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_vrr@negative-basic.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1499]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#756]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#756]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1091] / [Intel XE#2849]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#1091] / [Intel XE#2849]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_create@create-big-vram: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1062]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-5/igt@xe_create@create-big-vram.html * igt@xe_drm_fdinfo@utilization-single-full-load-isolation: - shard-bmg: [PASS][119] -> [DMESG-WARN][120] ([Intel XE#3468]) +49 other tests dmesg-warn [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-3/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html * igt@xe_eudebug@basic-vm-access-userptr: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2905]) +13 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@xe_eudebug@basic-vm-access-userptr.html * igt@xe_eudebug@exec-queue-placements: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2905]) +13 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-2/igt@xe_eudebug@exec-queue-placements.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: NOTRUN -> [INCOMPLETE][123] ([Intel XE#1473] / [Intel XE#3468]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-beng-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#688]) +16 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-2/igt@xe_evict@evict-beng-threads-large-multi-vm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2322]) +10 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1392]) +16 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-6/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html * igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm: - shard-bmg: [PASS][127] -> [DMESG-WARN][128] ([Intel XE#1727]) +5 other tests dmesg-warn [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm.html * igt@xe_exec_fault_mode@twice-userptr-invalidate: - shard-bmg: NOTRUN -> [DMESG-WARN][129] ([Intel XE#1727]) +2 other tests dmesg-warn [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@xe_exec_fault_mode@twice-userptr-invalidate.html * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready: - shard-bmg: [PASS][130] -> [DMESG-WARN][131] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-bmg: [PASS][132] -> [DMESG-WARN][133] ([Intel XE#3343]) +1 other test dmesg-warn [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: [PASS][134] -> [DMESG-WARN][135] ([Intel XE#3467]) +3 other tests dmesg-warn [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_gt_freq@freq_range_exec: - shard-bmg: [PASS][136] -> [DMESG-WARN][137] ([Intel XE#2705]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@xe_gt_freq@freq_range_exec.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@xe_gt_freq@freq_range_exec.html * igt@xe_gt_freq@freq_suspend: - shard-bmg: [PASS][138] -> [DMESG-FAIL][139] ([Intel XE#1727] / [Intel XE#3468]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@xe_gt_freq@freq_suspend.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-7/igt@xe_gt_freq@freq_suspend.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#2229]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#2833]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-1/igt@xe_live_ktest@xe_eudebug.html - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2833]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@xe_live_ktest@xe_eudebug.html * igt@xe_live_ktest@xe_migrate: - shard-bmg: [PASS][143] -> [SKIP][144] ([Intel XE#1192]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@xe_live_ktest@xe_migrate.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@xe_live_ktest@xe_migrate.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#2248]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-2/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pm@d3cold-basic: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#2284] / [Intel XE#366]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-2/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-mmap-vram: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2284]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#2284]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-6/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3hot-basic: - shard-bmg: [PASS][149] -> [DMESG-WARN][150] ([Intel XE#1727] / [Intel XE#3468]) +14 other tests dmesg-warn [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@xe_pm@d3hot-basic.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@xe_pm@d3hot-basic.html * igt@xe_pm@s2idle-mocs: - shard-lnl: NOTRUN -> [ABORT][151] ([Intel XE#3673] / [Intel XE#3766]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-4/igt@xe_pm@s2idle-mocs.html * igt@xe_pm@s3-exec-after: - shard-bmg: [PASS][152] -> [DMESG-WARN][153] ([Intel XE#3468] / [Intel XE#569]) +1 other test dmesg-warn [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_pm@s3-exec-after.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@xe_pm@s3-exec-after.html * igt@xe_pm@s3-mocs: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#584]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-2/igt@xe_pm@s3-mocs.html * igt@xe_query@multigpu-query-mem-usage: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#944]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#944]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-6/igt@xe_query@multigpu-query-topology-l3-bank-mask.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events: - shard-bmg: [SKIP][157] ([Intel XE#3007]) -> [PASS][158] +5 other tests pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_async_flips@async-flip-with-page-flip-events.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-bmg: [SKIP][159] ([Intel XE#2136] / [Intel XE#2231]) -> [PASS][160] +1 other test pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-bmg: [DMESG-FAIL][161] ([Intel XE#3468]) -> [PASS][162] +8 other tests pass [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-180.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][163] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: [SKIP][165] ([Intel XE#2291]) -> [PASS][166] +2 other tests pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][167] ([Intel XE#3070]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-7/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][169] ([Intel XE#3321]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip: - shard-bmg: [SKIP][171] ([Intel XE#2316]) -> [PASS][172] +1 other test pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_flip@2x-plain-flip.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-bmg: [INCOMPLETE][173] ([Intel XE#2635]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_flip@wf_vblank-ts-check-interruptible.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode: - shard-bmg: [INCOMPLETE][175] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][176] +2 other tests pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-bmg: [DMESG-WARN][177] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][178] +1 other test pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-bmg: [INCOMPLETE][179] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][180] +1 other test pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-bmg: [INCOMPLETE][181] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#3663]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_pipe_crc_basic@suspend-read-crc.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [SKIP][183] ([Intel XE#1435]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [FAIL][185] ([Intel XE#899]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3: - shard-bmg: [DMESG-WARN][187] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][188] +4 other tests pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01: - shard-bmg: [INCOMPLETE][189] -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html * igt@xe_evict@evict-threads-large-multi-vm: - shard-bmg: [SKIP][191] ([Intel XE#1130]) -> [PASS][192] +13 other tests pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_evict@evict-threads-large-multi-vm.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@xe_evict@evict-threads-large-multi-vm.html * igt@xe_exec_basic@twice-userptr-invalidate: - shard-bmg: [DMESG-WARN][193] -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_exec_basic@twice-userptr-invalidate.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@xe_exec_basic@twice-userptr-invalidate.html * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: - shard-bmg: [DMESG-WARN][195] ([Intel XE#3467]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html * igt@xe_pm@s3-vm-bind-userptr: - shard-bmg: [DMESG-WARN][197] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_pm@s3-vm-bind-userptr.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm@s4-mocs: - shard-lnl: [ABORT][199] ([Intel XE#1794]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-lnl-2/igt@xe_pm@s4-mocs.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-lnl-4/igt@xe_pm@s4-mocs.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [DMESG-WARN][201] ([Intel XE#3468]) -> [PASS][202] +45 other tests pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-7/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Warnings #### * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [DMESG-FAIL][203] ([Intel XE#3468]) -> [DMESG-WARN][204] ([Intel XE#3468]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][205] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][206] ([Intel XE#1124]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-bmg: [SKIP][207] ([Intel XE#3007]) -> [SKIP][208] ([Intel XE#367]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-bmg: [SKIP][209] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][210] ([Intel XE#2887]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt@kms_chamelium_color@gamma: - shard-bmg: [SKIP][211] ([Intel XE#3007]) -> [SKIP][212] ([Intel XE#2325]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_chamelium_color@gamma.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-bmg: [SKIP][213] ([Intel XE#3007]) -> [SKIP][214] ([Intel XE#2252]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_chamelium_frames@dp-crc-fast.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_content_protection@atomic: - shard-bmg: [INCOMPLETE][215] ([Intel XE#2715] / [Intel XE#3468]) -> [FAIL][216] ([Intel XE#1178]) +1 other test fail [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_content_protection@atomic.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [SKIP][217] ([Intel XE#2341]) -> [FAIL][218] ([Intel XE#1178]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_content_protection@lic-type-0.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-bmg: [SKIP][219] ([Intel XE#3007]) -> [SKIP][220] ([Intel XE#2320]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-bmg: [SKIP][221] ([Intel XE#3007]) -> [DMESG-WARN][222] ([Intel XE#3468]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - shard-bmg: [DMESG-WARN][223] ([Intel XE#3468]) -> [DMESG-FAIL][224] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-fail [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [DMESG-FAIL][225] ([Intel XE#3468]) -> [FAIL][226] ([Intel XE#2882]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: [DMESG-WARN][227] ([Intel XE#3468]) -> [FAIL][228] ([Intel XE#3321]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [SKIP][229] ([Intel XE#2316]) -> [DMESG-WARN][230] ([Intel XE#2955] / [Intel XE#3468]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-interruptible.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [DMESG-WARN][231] ([Intel XE#3468]) -> [SKIP][232] ([Intel XE#2316]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][233] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][234] ([Intel XE#2312]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][235] ([Intel XE#2136] / [Intel XE#2231]) -> [FAIL][236] ([Intel XE#2333]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [DMESG-FAIL][237] ([Intel XE#3468]) -> [FAIL][238] ([Intel XE#2333]) +2 other tests fail [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [FAIL][239] ([Intel XE#2333]) -> [DMESG-FAIL][240] ([Intel XE#3468]) +1 other test dmesg-fail [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][241] ([Intel XE#2312]) -> [DMESG-FAIL][242] ([Intel XE#3468]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [INCOMPLETE][243] -> [SKIP][244] ([Intel XE#2312]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][245] ([Intel XE#2333]) -> [SKIP][246] ([Intel XE#2312]) +4 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][247] ([Intel XE#2312]) -> [FAIL][248] ([Intel XE#2333]) +3 other tests fail [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move: - shard-bmg: [INCOMPLETE][249] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][250] ([Intel XE#2312]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][251] ([Intel XE#2311]) -> [SKIP][252] ([Intel XE#2312]) +15 other tests skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][253] ([Intel XE#2312]) -> [SKIP][254] ([Intel XE#2311]) +16 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][255] ([Intel XE#2313]) -> [SKIP][256] ([Intel XE#2312]) +6 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][257] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][258] ([Intel XE#2313]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-bmg: [SKIP][259] ([Intel XE#2312]) -> [SKIP][260] ([Intel XE#2313]) +9 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_pm_dc@dc6-dpms: - shard-bmg: [FAIL][261] ([Intel XE#1430]) -> [DMESG-FAIL][262] ([Intel XE#1727] / [Intel XE#3468]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_pm_dc@dc6-dpms.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][263] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][264] ([Intel XE#1489]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@psr-basic: - shard-bmg: [SKIP][265] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][266] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_psr@psr-basic.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@kms_psr@psr-basic.html * igt@kms_vblank@wait-forked: - shard-bmg: [DMESG-WARN][267] ([Intel XE#3468]) -> [DMESG-FAIL][268] ([Intel XE#3468]) +1 other test dmesg-fail [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@kms_vblank@wait-forked.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-7/igt@kms_vblank@wait-forked.html * igt@kms_vrr@lobf: - shard-bmg: [SKIP][269] ([Intel XE#3007]) -> [SKIP][270] ([Intel XE#2168]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@kms_vrr@lobf.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@kms_vrr@lobf.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: [TIMEOUT][271] ([Intel XE#1473]) -> [INCOMPLETE][272] ([Intel XE#1473]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-large.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-bmg: [FAIL][273] ([Intel XE#1000]) -> [DMESG-FAIL][274] ([Intel XE#3468]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-large-cm: - shard-bmg: [DMESG-WARN][275] ([Intel XE#3468]) -> [DMESG-WARN][276] ([Intel XE#1727]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@xe_evict@evict-large-cm.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@xe_evict@evict-large-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null: - shard-bmg: [SKIP][277] ([Intel XE#1130]) -> [SKIP][278] ([Intel XE#2322]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-bmg: [DMESG-WARN][279] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][280] ([Intel XE#3343]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_oa@stress-open-close: - shard-bmg: [SKIP][281] ([Intel XE#1130]) -> [DMESG-WARN][282] ([Intel XE#1727]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_oa@stress-open-close.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-2/igt@xe_oa@stress-open-close.html * igt@xe_pm@s2idle-basic-exec: - shard-bmg: [ABORT][283] ([Intel XE#1616]) -> [ABORT][284] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-6/igt@xe_pm@s2idle-basic-exec.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-3/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-bmg: [ABORT][285] ([Intel XE#1616]) -> [ABORT][286] ([Intel XE#1616] / [Intel XE#3468]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@xe_pm@s2idle-d3hot-basic-exec.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s2idle-mocs: - shard-bmg: [ABORT][287] ([Intel XE#3673]) -> [ABORT][288] ([Intel XE#3468] / [Intel XE#3673]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-2/igt@xe_pm@s2idle-mocs.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-4/igt@xe_pm@s2idle-mocs.html * igt@xe_pm@s2idle-multiple-execs: - shard-bmg: [SKIP][289] ([Intel XE#1130]) -> [ABORT][290] ([Intel XE#1616]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-4/igt@xe_pm@s2idle-multiple-execs.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-6/igt@xe_pm@s2idle-multiple-execs.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-bmg: [DMESG-WARN][291] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [ABORT][292] ([Intel XE#1616] / [Intel XE#3468]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8147/shard-bmg-7/igt@xe_pm@s2idle-vm-bind-unbind-all.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [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#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [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#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#3663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3766]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3766 [Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [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#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8147 -> IGTPW_12284 * Linux: xe-2345-afdbad14a16d9f44489fe37a05e93b24581bdc4f -> xe-2346-6966a52cb5531bf6cc785fadba160a71cd31e7aa IGTPW_12284: c34c6cfb6e5421c8492176f45effdbd59839b1e9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8147: df65b61f81a5cc919c10ff9c5ed516b45364135c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2345-afdbad14a16d9f44489fe37a05e93b24581bdc4f: afdbad14a16d9f44489fe37a05e93b24581bdc4f xe-2346-6966a52cb5531bf6cc785fadba160a71cd31e7aa: 6966a52cb5531bf6cc785fadba160a71cd31e7aa == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12284/index.html [-- Attachment #2: Type: text/html, Size: 94788 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-12-12 12:17 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-12-10 13:53 [PATCH i-g-t 0/2] Add sink max dsc slice count lib helper Swati Sharma 2024-12-10 13:53 ` [PATCH i-g-t 1/2] lib/dsc: Add helper igt_get_dsc_sink_max_slice_count() Swati Sharma 2024-12-11 2:50 ` Reddy Guddati, Santhosh 2024-12-10 13:53 ` [PATCH i-g-t 2/2] tests/intel/kms_joiner: Add igt_get_dsc_sink_max_slice_count() constraint Swati Sharma 2024-12-12 12:17 ` Bhadane, Dnyaneshwar 2024-12-10 17:55 ` ✓ i915.CI.BAT: success for Add sink max dsc slice count lib helper Patchwork 2024-12-10 19:20 ` ✗ i915.CI.Full: failure " Patchwork 2024-12-10 19:56 ` ✓ Xe.CI.BAT: success " Patchwork 2024-12-10 21:47 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox