* [PATCH v4 0/2] Wa_14026633728
@ 2026-05-05 5:47 Shekhar Chauhan
2026-05-05 5:47 ` [PATCH v4 1/2] lib/intel_wa: Add workaround check for a wa within debugfs file Shekhar Chauhan
` (5 more replies)
0 siblings, 6 replies; 12+ messages in thread
From: Shekhar Chauhan @ 2026-05-05 5:47 UTC (permalink / raw)
To: igt-dev; +Cc: shekhar.chauhan, ashutosh.dixit, gustavo.sousa
This series introduces Wa_14026633728. For it's introduction, changes
are made in lib/intel_wa to ensure we check from debugfs whether a
workaround is enabled via the KMD or not.
v1: Add workaround patch.
v2: Fix commit title, description and code description.
v3: Check if the wa exists and reuse it, also, fix a warning for C90
rule.
v4: Introduce changes in lib/intel_wa to ensure we are properly checking
the debugfs file for the workaround.
Shekhar Chauhan (2):
lib/intel_wa: Add workaround check for a wa within debugfs file
tests/intel/xe_oa: Wa_14026633728
lib/intel_wa.c | 40 ++++++++++++++++++++++++++--------------
tests/intel/xe_oa.c | 12 ++++++++++--
2 files changed, 36 insertions(+), 16 deletions(-)
--
2.53.0
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH v4 1/2] lib/intel_wa: Add workaround check for a wa within debugfs file 2026-05-05 5:47 [PATCH v4 0/2] Wa_14026633728 Shekhar Chauhan @ 2026-05-05 5:47 ` Shekhar Chauhan 2026-05-05 13:34 ` Gustavo Sousa 2026-05-05 5:47 ` [PATCH v4 2/2] tests/intel/xe_oa: Wa_14026633728 Shekhar Chauhan ` (4 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Shekhar Chauhan @ 2026-05-05 5:47 UTC (permalink / raw) To: igt-dev; +Cc: shekhar.chauhan, ashutosh.dixit, gustavo.sousa Add a check to see if a workaround exists in the debugfs file. Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> --- lib/intel_wa.c | 40 ++++++++++++++++++++++++++-------------- 1 file changed, 26 insertions(+), 14 deletions(-) diff --git a/lib/intel_wa.c b/lib/intel_wa.c index 685df106f..727dd6c98 100644 --- a/lib/intel_wa.c +++ b/lib/intel_wa.c @@ -12,6 +12,27 @@ #include "intel_wa.h" #include "xe/xe_query.h" +static int debugfs_file_has_wa(int drm_fd, int debugfs_fd, + const char *debugfs_name, const char *wa) +{ + char *debugfs_dump; + + if (!igt_debugfs_exists(drm_fd, debugfs_name, O_RDONLY)) + return -1; + + debugfs_dump = igt_sysfs_get(debugfs_fd, debugfs_name); + if (debugfs_dump) { + char *has_wa = strstr(debugfs_dump, wa); + + free(debugfs_dump); + + if (has_wa) + return 1; + } + + return 0; +} + /** * igt_has_intel_wa: * @drm_fd: A drm file descriptor @@ -25,7 +46,6 @@ int igt_has_intel_wa(int drm_fd, const char *check_wa) int debugfs_fd; unsigned int xe; char name[256]; - char *debugfs_dump, *has_wa; debugfs_fd = igt_debugfs_dir(drm_fd); if (debugfs_fd == -1) @@ -33,22 +53,14 @@ int igt_has_intel_wa(int drm_fd, const char *check_wa) xe_for_each_gt(drm_fd, xe) { sprintf(name, "gt%d/workarounds", xe); - if (!igt_debugfs_exists(drm_fd, name, O_RDONLY)) { - ret = -1; + ret = debugfs_file_has_wa(drm_fd, debugfs_fd, name, check_wa); + if (ret) break; - } - - debugfs_dump = igt_sysfs_get(debugfs_fd, name); - if (debugfs_dump) { - has_wa = strstr(debugfs_dump, check_wa); - free(debugfs_dump); - if (has_wa) { - ret = 1; - break; - } - } } + if (!ret) + ret = debugfs_file_has_wa(drm_fd, debugfs_fd, "workarounds", check_wa); + close(debugfs_fd); return ret; } -- 2.53.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/2] lib/intel_wa: Add workaround check for a wa within debugfs file 2026-05-05 5:47 ` [PATCH v4 1/2] lib/intel_wa: Add workaround check for a wa within debugfs file Shekhar Chauhan @ 2026-05-05 13:34 ` Gustavo Sousa 2026-05-05 14:26 ` Jani Nikula 0 siblings, 1 reply; 12+ messages in thread From: Gustavo Sousa @ 2026-05-05 13:34 UTC (permalink / raw) To: Shekhar Chauhan, igt-dev; +Cc: shekhar.chauhan, ashutosh.dixit Shekhar Chauhan <shekhar.chauhan@intel.com> writes: > Add a check to see if a workaround exists in the debugfs file. The commit subject and body are a bit vague and doesn't quite reflect the purpose of this change. The subject should try to summarize what is being done; the most important thing in the body is the "why", although some details of what is being done doesn't hurt as well. I would go with something like this: lib/intel_wa: Also check for device workarounds Currently igt_has_intel_wa() only checks for GT workarounds, but in an upcoming change we will also need to check for device workarounds. As such, update igt_has_intel_wa() to also check for device workarounds. While at it, make sure that we do not duplicate the logic for reading from the debugfs file by extracting it into a separate function called debugfs_file_has_wa(). I think there is room for improvement on how those functions are implemented: the use of strstr() is not very robust, since it can return partial matches; and this function is currently xe-specific (i.e. can't be used for i915), so we need some assert to make sure that it is being called only for xe. However, those are unrelated to this patch and could be fixed as a follow-up change. So, with the commit subject and message fixed as suggested above, Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com> -- Gustavo Sousa > > Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> > --- > lib/intel_wa.c | 40 ++++++++++++++++++++++++++-------------- > 1 file changed, 26 insertions(+), 14 deletions(-) > > diff --git a/lib/intel_wa.c b/lib/intel_wa.c > index 685df106f..727dd6c98 100644 > --- a/lib/intel_wa.c > +++ b/lib/intel_wa.c > @@ -12,6 +12,27 @@ > #include "intel_wa.h" > #include "xe/xe_query.h" > > +static int debugfs_file_has_wa(int drm_fd, int debugfs_fd, > + const char *debugfs_name, const char *wa) > +{ > + char *debugfs_dump; > + > + if (!igt_debugfs_exists(drm_fd, debugfs_name, O_RDONLY)) > + return -1; > + > + debugfs_dump = igt_sysfs_get(debugfs_fd, debugfs_name); > + if (debugfs_dump) { > + char *has_wa = strstr(debugfs_dump, wa); > + > + free(debugfs_dump); > + > + if (has_wa) > + return 1; > + } > + > + return 0; > +} > + > /** > * igt_has_intel_wa: > * @drm_fd: A drm file descriptor > @@ -25,7 +46,6 @@ int igt_has_intel_wa(int drm_fd, const char *check_wa) > int debugfs_fd; > unsigned int xe; > char name[256]; > - char *debugfs_dump, *has_wa; > > debugfs_fd = igt_debugfs_dir(drm_fd); > if (debugfs_fd == -1) > @@ -33,22 +53,14 @@ int igt_has_intel_wa(int drm_fd, const char *check_wa) > > xe_for_each_gt(drm_fd, xe) { > sprintf(name, "gt%d/workarounds", xe); > - if (!igt_debugfs_exists(drm_fd, name, O_RDONLY)) { > - ret = -1; > + ret = debugfs_file_has_wa(drm_fd, debugfs_fd, name, check_wa); > + if (ret) > break; > - } > - > - debugfs_dump = igt_sysfs_get(debugfs_fd, name); > - if (debugfs_dump) { > - has_wa = strstr(debugfs_dump, check_wa); > - free(debugfs_dump); > - if (has_wa) { > - ret = 1; > - break; > - } > - } > } > > + if (!ret) > + ret = debugfs_file_has_wa(drm_fd, debugfs_fd, "workarounds", check_wa); > + > close(debugfs_fd); > return ret; > } > -- > 2.53.0 ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/2] lib/intel_wa: Add workaround check for a wa within debugfs file 2026-05-05 13:34 ` Gustavo Sousa @ 2026-05-05 14:26 ` Jani Nikula 2026-05-05 14:50 ` Gustavo Sousa 0 siblings, 1 reply; 12+ messages in thread From: Jani Nikula @ 2026-05-05 14:26 UTC (permalink / raw) To: Gustavo Sousa, Shekhar Chauhan, igt-dev; +Cc: shekhar.chauhan, ashutosh.dixit On Tue, 05 May 2026, Gustavo Sousa <gustavo.sousa@intel.com> wrote: > I think there is room for improvement on how those functions are > implemented: the use of strstr() is not very robust, since it can return > partial matches; and this function is currently xe-specific (i.e. can't > be used for i915), so we need some assert to make sure that it is being > called only for xe. However, those are unrelated to this patch and > could be fixed as a follow-up change. There are already lib/i915 and lib/xe directories. lib/i915 and lib/ have a number of things that are specific to Intel (either i915 or xe). lib/ has a number of things that are specific to either i915 or xe, but not both. There's a lot of room for moving things about to improve clarity here. BRm, Jani. -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/2] lib/intel_wa: Add workaround check for a wa within debugfs file 2026-05-05 14:26 ` Jani Nikula @ 2026-05-05 14:50 ` Gustavo Sousa 2026-05-05 14:53 ` Jani Nikula 0 siblings, 1 reply; 12+ messages in thread From: Gustavo Sousa @ 2026-05-05 14:50 UTC (permalink / raw) To: Jani Nikula, Shekhar Chauhan, igt-dev; +Cc: shekhar.chauhan, ashutosh.dixit Jani Nikula <jani.nikula@intel.com> writes: > On Tue, 05 May 2026, Gustavo Sousa <gustavo.sousa@intel.com> wrote: >> I think there is room for improvement on how those functions are >> implemented: the use of strstr() is not very robust, since it can return >> partial matches; and this function is currently xe-specific (i.e. can't >> be used for i915), so we need some assert to make sure that it is being >> called only for xe. However, those are unrelated to this patch and >> could be fixed as a follow-up change. > > There are already lib/i915 and lib/xe directories. lib/i915 and lib/ > have a number of things that are specific to Intel (either i915 or > xe). lib/ has a number of things that are specific to either i915 or xe, > but not both. > > There's a lot of room for moving things about to improve clarity here. Yeah... Should we reorganize stuff into 3 separate directories then? - lib/intel for things common to both drivers; - lib/i915 for things specific to i915; - lib/xe for things specific to xe. -- Gustavo Sousa > > BRm, > Jani. > > -- > Jani Nikula, Intel ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/2] lib/intel_wa: Add workaround check for a wa within debugfs file 2026-05-05 14:50 ` Gustavo Sousa @ 2026-05-05 14:53 ` Jani Nikula 0 siblings, 0 replies; 12+ messages in thread From: Jani Nikula @ 2026-05-05 14:53 UTC (permalink / raw) To: Gustavo Sousa, Shekhar Chauhan, igt-dev; +Cc: shekhar.chauhan, ashutosh.dixit On Tue, 05 May 2026, Gustavo Sousa <gustavo.sousa@intel.com> wrote: > Jani Nikula <jani.nikula@intel.com> writes: > >> On Tue, 05 May 2026, Gustavo Sousa <gustavo.sousa@intel.com> wrote: >>> I think there is room for improvement on how those functions are >>> implemented: the use of strstr() is not very robust, since it can return >>> partial matches; and this function is currently xe-specific (i.e. can't >>> be used for i915), so we need some assert to make sure that it is being >>> called only for xe. However, those are unrelated to this patch and >>> could be fixed as a follow-up change. >> >> There are already lib/i915 and lib/xe directories. lib/i915 and lib/ >> have a number of things that are specific to Intel (either i915 or >> xe). lib/ has a number of things that are specific to either i915 or xe, >> but not both. >> >> There's a lot of room for moving things about to improve clarity here. > > Yeah... Should we reorganize stuff into 3 separate directories then? > > - lib/intel for things common to both drivers; > - lib/i915 for things specific to i915; > - lib/xe for things specific to xe. That's what I thought I was suggesting, but I realize now I didn't really write that. ;D BR, Jani. > > -- > Gustavo Sousa > >> >> BRm, >> Jani. >> >> -- >> Jani Nikula, Intel -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 2/2] tests/intel/xe_oa: Wa_14026633728 2026-05-05 5:47 [PATCH v4 0/2] Wa_14026633728 Shekhar Chauhan 2026-05-05 5:47 ` [PATCH v4 1/2] lib/intel_wa: Add workaround check for a wa within debugfs file Shekhar Chauhan @ 2026-05-05 5:47 ` Shekhar Chauhan 2026-05-05 16:42 ` Dixit, Ashutosh 2026-05-05 6:59 ` ✓ i915.CI.BAT: success for Wa_14026633728 Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Shekhar Chauhan @ 2026-05-05 5:47 UTC (permalink / raw) To: igt-dev; +Cc: shekhar.chauhan, ashutosh.dixit, gustavo.sousa For MERTOA in CRI, oa buffer can be in device memory. Because of slower device mem access, OA exponent values lower than 8 can result in buffer overflows. Bump the OA exponent value. Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> --- tests/intel/xe_oa.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c index 988c46df6..c7e756426 100644 --- a/tests/intel/xe_oa.c +++ b/tests/intel/xe_oa.c @@ -24,6 +24,7 @@ #include "igt_device.h" #include "igt_syncobj.h" #include "igt_sysfs.h" +#include "intel_wa.h" #include "xe/xe_ioctl.h" #include "xe/xe_query.h" #include "xe/xe_oa.h" @@ -2643,8 +2644,15 @@ test_buffer_fill(const struct drm_xe_oa_unit *oau) static void test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size) { - /* ~20 micro second period */ - int oa_exponent = max_oa_exponent_for_period_lte(20000); + /* + * Wa_14026633728: For MERTOA in CRI, oa buffer can be in device memory. + * Because of slower device mem access, OA exponent values lower than 8 can + * result in buffer overflows. + * By default, use ~20 micro second period. + */ + int oa_exponent = max(max_oa_exponent_for_period_lte(20000), + (oau->oa_unit_type == DRM_XE_OA_UNIT_TYPE_MERT && + igt_has_intel_wa(drm_fd, "14026633728") > 0) ? 8 : 0); struct intel_xe_perf_metric_set *test_set = oa_unit_metric_set(oau); uint64_t fmt = test_set->perf_oa_format; size_t report_size = get_oa_format(fmt).size; -- 2.53.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v4 2/2] tests/intel/xe_oa: Wa_14026633728 2026-05-05 5:47 ` [PATCH v4 2/2] tests/intel/xe_oa: Wa_14026633728 Shekhar Chauhan @ 2026-05-05 16:42 ` Dixit, Ashutosh 0 siblings, 0 replies; 12+ messages in thread From: Dixit, Ashutosh @ 2026-05-05 16:42 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev, gustavo.sousa On Mon, 04 May 2026 22:47:41 -0700, Shekhar Chauhan wrote: > > For MERTOA in CRI, oa buffer can be in device memory. Because of slower > device mem access, OA exponent values lower than 8 can result in buffer > overflows. Bump the OA exponent value. > > Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> > --- > tests/intel/xe_oa.c | 12 ++++++++++-- > 1 file changed, 10 insertions(+), 2 deletions(-) > > diff --git a/tests/intel/xe_oa.c b/tests/intel/xe_oa.c > index 988c46df6..c7e756426 100644 > --- a/tests/intel/xe_oa.c > +++ b/tests/intel/xe_oa.c > @@ -24,6 +24,7 @@ > #include "igt_device.h" > #include "igt_syncobj.h" > #include "igt_sysfs.h" > +#include "intel_wa.h" > #include "xe/xe_ioctl.h" > #include "xe/xe_query.h" > #include "xe/xe_oa.h" > @@ -2643,8 +2644,15 @@ test_buffer_fill(const struct drm_xe_oa_unit *oau) > static void > test_non_zero_reason(const struct drm_xe_oa_unit *oau, size_t oa_buffer_size) > { > - /* ~20 micro second period */ > - int oa_exponent = max_oa_exponent_for_period_lte(20000); > + /* > + * Wa_14026633728: For MERTOA in CRI, oa buffer can be in device memory. > + * Because of slower device mem access, OA exponent values lower than 8 can > + * result in buffer overflows. > + * By default, use ~20 micro second period. > + */ > + int oa_exponent = max(max_oa_exponent_for_period_lte(20000), > + (oau->oa_unit_type == DRM_XE_OA_UNIT_TYPE_MERT && > + igt_has_intel_wa(drm_fd, "14026633728") > 0) ? 8 : 0); 0 check is not needed, just 'igt_has_intel_wa(drm_fd, "14026633728")' is sufficient. Also, can we change this code to the way it was in v2 (with an if statement). Just replace with the has_wa check and move the code below the variable declarations, it is a little bit cleaner and easier to read. > struct intel_xe_perf_metric_set *test_set = oa_unit_metric_set(oau); > uint64_t fmt = test_set->perf_oa_format; > size_t report_size = get_oa_format(fmt).size; > -- > 2.53.0 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for Wa_14026633728 2026-05-05 5:47 [PATCH v4 0/2] Wa_14026633728 Shekhar Chauhan 2026-05-05 5:47 ` [PATCH v4 1/2] lib/intel_wa: Add workaround check for a wa within debugfs file Shekhar Chauhan 2026-05-05 5:47 ` [PATCH v4 2/2] tests/intel/xe_oa: Wa_14026633728 Shekhar Chauhan @ 2026-05-05 6:59 ` Patchwork 2026-05-05 7:25 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2026-05-05 6:59 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1969 bytes --] == Series Details == Series: Wa_14026633728 URL : https://patchwork.freedesktop.org/series/165955/ State : success == Summary == CI Bug Log - changes from IGT_8885 -> IGTPW_15099 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/index.html Participating hosts (41 -> 40) ------------------------------ Missing (1): bat-dg2-13 Known issues ------------ Here are the changes found in IGTPW_15099 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-arls-6: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/bat-arls-6/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/bat-arls-6/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-mtlp-9: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8885 -> IGTPW_15099 CI-20190529: 20190529 CI_DRM_18411: 94d56a898a2db27f841b17f6966a81ba502fe63c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15099: fffdb4ecbd383f58a27283240495e5375ac763cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8885: 88f8f393de9c789a5b070a602e07ba396a480d89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/index.html [-- Attachment #2: Type: text/html, Size: 2658 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for Wa_14026633728 2026-05-05 5:47 [PATCH v4 0/2] Wa_14026633728 Shekhar Chauhan ` (2 preceding siblings ...) 2026-05-05 6:59 ` ✓ i915.CI.BAT: success for Wa_14026633728 Patchwork @ 2026-05-05 7:25 ` Patchwork 2026-05-05 11:50 ` ✓ i915.CI.Full: " Patchwork 2026-05-05 14:43 ` ✗ Xe.CI.FULL: failure " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2026-05-05 7:25 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5824 bytes --] == Series Details == Series: Wa_14026633728 URL : https://patchwork.freedesktop.org/series/165955/ State : success == Summary == CI Bug Log - changes from XEIGT_8885_BAT -> XEIGTPW_15099_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 13) ------------------------------ Additional (1): bat-atsm-2 Known issues ------------ Here are the changes found in XEIGTPW_15099_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-atsm-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@fbdev@info.html * igt@kms_addfb_basic@invalid-set-prop-any: - bat-atsm-2: NOTRUN -> [SKIP][2] ([i915#6077]) +30 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@kms_addfb_basic@invalid-set-prop-any.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-atsm-2: NOTRUN -> [SKIP][3] ([Intel XE#1024] / [Intel XE#782] / [Intel XE#947]) +5 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_dsc@dsc-basic: - bat-atsm-2: NOTRUN -> [SKIP][4] ([Intel XE#1024] / [Intel XE#784] / [Intel XE#947]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@kms_dsc@dsc-basic.html * igt@kms_frontbuffer_tracking@basic: - bat-atsm-2: NOTRUN -> [SKIP][5] ([Intel XE#1024] / [Intel XE#783] / [Intel XE#947]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_hdmi_inject@inject-audio: - bat-atsm-2: NOTRUN -> [SKIP][6] ([Intel XE#540]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-atsm-2: NOTRUN -> [SKIP][7] ([Intel XE#829] / [i915#1836]) +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@kms_prop_blob@basic: - bat-atsm-2: NOTRUN -> [SKIP][8] ([Intel XE#780]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@kms_prop_blob@basic.html * igt@kms_psr@psr-primary-page-flip: - bat-atsm-2: NOTRUN -> [SKIP][9] ([Intel XE#1024] / [Intel XE#947]) +6 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@kms_psr@psr-primary-page-flip.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-imm: - bat-atsm-2: NOTRUN -> [SKIP][10] ([Intel XE#288]) +32 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html * igt@xe_huc_copy@huc_copy: - bat-atsm-2: NOTRUN -> [SKIP][11] ([Intel XE#255]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-atsm-2: NOTRUN -> [SKIP][12] ([Intel XE#2229]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_pat@pat-index-xe2: - bat-atsm-2: NOTRUN -> [SKIP][13] ([Intel XE#977]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - bat-atsm-2: NOTRUN -> [SKIP][14] ([Intel XE#2838] / [Intel XE#979]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - bat-atsm-2: NOTRUN -> [SKIP][15] ([Intel XE#979]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/bat-atsm-2/igt@xe_pat@pat-index-xelpg.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 [Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780 [Intel XE#782]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/782 [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 [Intel XE#784]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/784 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#1836]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1836 [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077 Build changes ------------- * IGT: IGT_8885 -> IGTPW_15099 IGTPW_15099: fffdb4ecbd383f58a27283240495e5375ac763cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8885: 88f8f393de9c789a5b070a602e07ba396a480d89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4984-94d56a898a2db27f841b17f6966a81ba502fe63c: 94d56a898a2db27f841b17f6966a81ba502fe63c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/index.html [-- Attachment #2: Type: text/html, Size: 7202 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.Full: success for Wa_14026633728 2026-05-05 5:47 [PATCH v4 0/2] Wa_14026633728 Shekhar Chauhan ` (3 preceding siblings ...) 2026-05-05 7:25 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-05-05 11:50 ` Patchwork 2026-05-05 14:43 ` ✗ Xe.CI.FULL: failure " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2026-05-05 11:50 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 122263 bytes --] == Series Details == Series: Wa_14026633728 URL : https://patchwork.freedesktop.org/series/165955/ State : success == Summary == CI Bug Log - changes from IGT_8885_full -> IGTPW_15099_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_15099_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][1] ([i915#8411]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][2] ([i915#11078]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-12/igt@device_reset@cold-reset-bound.html - shard-tglu: NOTRUN -> [SKIP][3] ([i915#11078]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-3/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-5/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-5/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#7697]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-3/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-10/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-8/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][12] ([i915#1099]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-snb7/igt@gem_ctx_persistence@engines-mixed-process.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8555]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-7/igt@gem_ctx_sseu@invalid-args.html - shard-tglu: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-3/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@parallel: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#4525]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-10/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-glk10: NOTRUN -> [SKIP][19] +126 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk10/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-7/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_big@single: - shard-tglu: [PASS][21] -> [FAIL][22] ([i915#15816]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-tglu-10/igt@gem_exec_big@single.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-4/igt@gem_exec_big@single.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-1/igt@gem_exec_fence@submit67.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#14544] / [i915#3281]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#3281]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-16/igt@gem_exec_reloc@basic-gtt-cpu.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3281]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-1/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#3281]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-cpu: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3281]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-1/igt@gem_exec_reloc@basic-write-cpu.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-14/igt@gem_exec_schedule@preempt-queue.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][30] ([i915#2190]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk9/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#4613] / [i915#7582]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#4613]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][33] ([i915#4613]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][34] ([i915#4613]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-10/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#4077]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-15/igt@gem_mmap_gtt@cpuset-basic-small-copy.html - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4077]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4083]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-6/igt@gem_mmap_wc@bad-size.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3282]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-1/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3282]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pread@bench: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3282]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-3/igt@gem_pread@bench.html * igt@gem_pwrite@basic-random: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3282]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-18/igt@gem_pwrite@basic-random.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4270]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-8/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4270]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-14/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_render_copy@y-tiled-ccs-to-x-tiled: - shard-snb: NOTRUN -> [SKIP][44] +68 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-snb7/igt@gem_render_copy@y-tiled-ccs-to-x-tiled.html - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#8428]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-x-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#5190] / [i915#8428]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-6/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4079]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-6/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4079]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-14/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4079]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [PASS][50] -> [INCOMPLETE][51] ([i915#13809]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-5/igt@gem_softpin@noreloc-s3.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#15656]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-2/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#3297]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-5/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][54] ([i915#3323]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#3297]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][56] ([i915#13356] / [i915#14586]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk8/igt@gem_workarounds@suspend-resume.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][57] ([i915#13356]) +2 other tests incomplete [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk8/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@batch-invalid-length: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#2527] / [i915#2856]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-6/igt@gen9_exec_parse@batch-invalid-length.html * igt@i915_drm_fdinfo@busy@rcs0: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#14073]) +5 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-16/igt@i915_drm_fdinfo@busy@rcs0.html - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#14073]) +6 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-8/igt@i915_drm_fdinfo@busy@rcs0.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#14073]) +7 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-4/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_drm_fdinfo@virtual-busy-hang-all: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#14118]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-6/igt@i915_drm_fdinfo@virtual-busy-hang-all.html - shard-dg1: NOTRUN -> [SKIP][63] ([i915#14118]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-13/igt@i915_drm_fdinfo@virtual-busy-hang-all.html - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#14118]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-2/igt@i915_drm_fdinfo@virtual-busy-hang-all.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-tglu: NOTRUN -> [ABORT][65] ([i915#15342]) +1 other test abort [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-9/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@fault-injection@uc_fw_rsa_data_create: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#15479]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-9/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][67] ([i915#8399]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-6/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#8399]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: NOTRUN -> [FAIL][69] ([i915#12964]) +1 other test fail [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-1/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][70] ([i915#13790] / [i915#2681]) +1 other test warn [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [PASS][71] -> [INCOMPLETE][72] ([i915#13356]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-5/igt@i915_pm_rpm@system-suspend-execbuf.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@thresholds-idle: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#11681]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-12/igt@i915_pm_rps@thresholds-idle.html * igt@i915_selftest@live@workarounds: - shard-dg2: [PASS][74] -> [DMESG-FAIL][75] ([i915#12061]) +1 other test dmesg-fail [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg2-3/igt@i915_selftest@live@workarounds.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-6/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][76] ([i915#4817]) +1 other test incomplete [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk9/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@i915_suspend@fence-restore-untiled: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4077]) +7 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-4/igt@i915_suspend@fence-restore-untiled.html - shard-rkl: [PASS][78] -> [INCOMPLETE][79] ([i915#4817]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@sysfs-reader: - shard-glk: [PASS][80] -> [INCOMPLETE][81] ([i915#4817]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-glk9/igt@i915_suspend@sysfs-reader.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk8/igt@i915_suspend@sysfs-reader.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [FAIL][82] ([i915#14888]) +1 other test fail [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-vga-1: - shard-snb: [PASS][83] -> [FAIL][84] ([i915#5956]) +1 other test fail [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-snb5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-vga-1.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-vga-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#5286]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#5286]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4538] / [i915#5286]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-19/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#5286]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-10/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][89] -> [FAIL][90] ([i915#15733] / [i915#5138]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#3638]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#3638]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-15/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#3828]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][94] +8 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-5/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4538] / [i915#5190]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][96] ([i915#14544] / [i915#3638]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-19/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][98] +11 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#10307] / [i915#6095]) +92 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-glk11: NOTRUN -> [SKIP][102] +60 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk11/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#14544] / [i915#6095]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#6095]) +34 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#14098] / [i915#6095]) +36 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#6095]) +7 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [INCOMPLETE][107] ([i915#15582]) +1 other test incomplete [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk11/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#6095]) +24 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#6095]) +19 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#6095]) +211 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#6095]) +63 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#3742]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-3/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][113] +7 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-5/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@degamma: - shard-rkl: NOTRUN -> [SKIP][114] +11 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#11151] / [i915#7828]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-4/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#11151] / [i915#7828]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-dg1: NOTRUN -> [SKIP][117] ([i915#11151] / [i915#7828]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-13/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#11151] / [i915#7828]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-2/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][119] ([i915#11151] / [i915#7828]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#11151] / [i915#7828]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#15865]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_content_protection@atomic-dpms-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][122] ([i915#15865]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-14/igt@kms_content_protection@atomic-dpms-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#15865]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-5/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#14544] / [i915#15865]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#15330]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][126] ([i915#15330]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#15330] / [i915#3299]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-8/igt@kms_content_protection@dp-mst-type-1.html - shard-rkl: NOTRUN -> [SKIP][128] ([i915#15330] / [i915#3116]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html - shard-dg1: NOTRUN -> [SKIP][129] ([i915#15330] / [i915#3299]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-14/igt@kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][130] ([i915#15330] / [i915#3116] / [i915#3299]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-5/igt@kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#15330] / [i915#3299]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-4/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#15865]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent-hdcp14: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#15865]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-7/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#13049]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#3555]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#3555]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-7/igt@kms_cursor_crc@cursor-random-32x10.html - shard-tglu: NOTRUN -> [SKIP][137] ([i915#3555]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-8/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#13049]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#8814]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#3555]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-19/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [PASS][141] -> [FAIL][142] ([i915#13566]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html - shard-tglu: [PASS][143] -> [FAIL][144] ([i915#13566]) +1 other test fail [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-256x85.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][145] ([i915#13566]) +1 other test fail [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#13049]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-512x170.html - shard-dg2: NOTRUN -> [SKIP][147] ([i915#13049]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-512x170.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#13049]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#13046] / [i915#5354]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html - shard-rkl: NOTRUN -> [SKIP][150] ([i915#14544]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#9809]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#9067]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#4103]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#4103] / [i915#4213]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#4103]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#4103] / [i915#4213]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-tglu: NOTRUN -> [SKIP][157] ([i915#4103]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#4213]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#9833]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][160] ([i915#9723]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3804]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#3840] / [i915#9688]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][163] ([i915#3840]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-10/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][164] ([i915#9878]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#2065] / [i915#4854]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-9/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][166] ([i915#4854]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#9934]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-4/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][168] ([i915#12745] / [i915#4839]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][169] ([i915#12745]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#9934]) +4 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3637] / [i915#9934]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-8/igt@kms_flip@2x-nonexisting-fb.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#9934]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-15/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#3637] / [i915#9934]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3637] / [i915#9934]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-3/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3: - shard-dg2: [PASS][175] -> [FAIL][176] ([i915#13027]) +1 other test fail [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg2-8/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-5/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3: - shard-dg2: [PASS][177] -> [FAIL][178] ([i915#15718]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg2-8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-5/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#8381]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-3/igt@kms_flip@flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][180] ([i915#8381]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-18/igt@kms_flip@flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#8381]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-6/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#15643]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-rkl: NOTRUN -> [SKIP][183] ([i915#15643]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#15643]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-tglu: NOTRUN -> [SKIP][185] ([i915#15643]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#15643]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#15104] / [i915#15990]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-dg2: [PASS][188] -> [FAIL][189] ([i915#15389] / [i915#6880]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#15990] / [i915#8708]) +6 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#1825]) +19 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#15991] / [i915#5354]) +9 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#15102]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html - shard-rkl: NOTRUN -> [SKIP][194] ([i915#14544] / [i915#15102]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][195] ([i915#15102]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#15102] / [i915#3458]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#15990] / [i915#8708]) +11 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#10055]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#15102] / [i915#3458]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#10055]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#15102]) +7 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#15102] / [i915#3023]) +10 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][203] ([i915#15990] / [i915#8708]) +8 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#15102]) +17 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html - shard-rkl: NOTRUN -> [SKIP][205] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][206] +13 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#15991] / [i915#1825]) +6 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#14544] / [i915#1825]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-1/igt@kms_hdr@static-swap.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-19/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#12713] / [i915#3555] / [i915#8228]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-7/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-7/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#13688]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-3/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#15458]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-3/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#14544] / [i915#15460]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][217] ([i915#15460]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-19/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][218] ([i915#15460]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-10/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#15460]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: [PASS][220] -> [INCOMPLETE][221] ([i915#12756] / [i915#13409] / [i915#13476]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier@pipe-a-plane-5: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#15608]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-4/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#15709]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#15709]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-15/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#15709]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#15709]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#15709]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#15608]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#15608]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-2/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][230] ([i915#10647] / [i915#12169]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][231] ([i915#10647]) +1 other test fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#13958]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-4.html - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#13958]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#13958]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-x.html - shard-tglu: NOTRUN -> [SKIP][235] ([i915#13958]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-5/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#14259]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-1/igt@kms_plane_multiple@tiling-y.html - shard-dg2: NOTRUN -> [SKIP][237] ([i915#14259]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-8/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#15329]) +3 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#15329]) +9 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#15329]) +4 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#15329]) +4 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#9812]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#15948]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#3828]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-3/igt@kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][245] ([i915#3828]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-7/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: NOTRUN -> [FAIL][246] ([i915#15752]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#15948]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-8/igt@kms_pm_dc@dc6-psr.html - shard-rkl: NOTRUN -> [SKIP][248] ([i915#15948]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_pm_dc@dc6-psr.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#15948]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-14/igt@kms_pm_dc@dc6-psr.html - shard-tglu: NOTRUN -> [SKIP][250] ([i915#15948]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: [PASS][251] -> [SKIP][252] ([i915#15073]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-16/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][253] -> [SKIP][254] ([i915#15073]) +2 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [PASS][255] -> [INCOMPLETE][256] ([i915#14419]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg2-8/igt@kms_pm_rpm@system-suspend-idle.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#11520]) +6 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#11520]) +4 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#11520]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#11520]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html - shard-snb: NOTRUN -> [SKIP][261] ([i915#11520]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-snb5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#9808]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#12316]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][264] ([i915#11520]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk11/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][265] ([i915#11520]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#11520]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-17/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][267] ([i915#11520]) +10 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#9683]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][269] ([i915#9683]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-9/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#9732]) +4 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_psr@fbc-pr-cursor-mmap-gtt.html * igt@kms_psr@fbc-pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][272] +480 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#9688]) +2 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-1/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@psr-basic: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#9732]) +18 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-5/igt@kms_psr@psr-basic.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#1072] / [i915#9732]) +7 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-16/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#1072] / [i915#9732]) +8 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-7/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#1072] / [i915#9732]) +7 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#14544] / [i915#15949]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@multiplane-rotation: - shard-dg1: [PASS][279] -> [DMESG-WARN][280] ([i915#4423]) +3 other tests dmesg-warn [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg1-19/igt@kms_rotation_crc@multiplane-rotation.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-15/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#5289]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][282] ([i915#5289]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#5190]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#12755] / [i915#15867] / [i915#5190]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#12755] / [i915#15867]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][286] ([i915#13179]) +1 other test abort [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#3555]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8809] / [i915#8823]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][289] ([i915#10959]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][290] ([i915#12276]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#9906]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-tglu: [PASS][292] -> [FAIL][293] ([i915#10538]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-tglu-10/igt@perf@gen12-group-concurrent-oa-buffer-read.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-4/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [PASS][294] -> [FAIL][295] ([i915#4349]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [ABORT][296] ([i915#15778]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk1/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#8516]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-4/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#14544] / [i915#3708]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][299] +61 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-3/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][300] ([i915#12910]) +9 other tests fail [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-8/igt@sriov_basic@bind-unbind-vf@vf-4.html #### Possible fixes #### * igt@gem_exec_big@single: - shard-mtlp: [FAIL][301] ([i915#15871]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-mtlp-8/igt@gem_exec_big@single.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-1/igt@gem_exec_big@single.html * igt@gem_exec_suspend@basic-s3: - shard-glk: [INCOMPLETE][303] ([i915#13196] / [i915#13356]) -> [PASS][304] +1 other test pass [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-glk9/igt@gem_exec_suspend@basic-s3.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk4/igt@gem_exec_suspend@basic-s3.html * igt@gem_workarounds@suspend-resume: - shard-rkl: [ABORT][305] ([i915#15152]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-1/igt@gem_workarounds@suspend-resume.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@gem_workarounds@suspend-resume.html * igt@i915_module_load@fault-injection@i915_pci_probe: - shard-glk: [ABORT][307] ([i915#15342]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-glk9/igt@i915_module_load@fault-injection@i915_pci_probe.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk1/igt@i915_module_load@fault-injection@i915_pci_probe.html * igt@i915_selftest@live: - shard-mtlp: [DMESG-FAIL][309] ([i915#12061] / [i915#15560]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-mtlp-5/igt@i915_selftest@live.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][311] ([i915#12061]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-mtlp-5/igt@i915_selftest@live@workarounds.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@size-max: - shard-dg1: [DMESG-WARN][313] ([i915#4391] / [i915#4423]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg1-19/igt@kms_addfb_basic@size-max.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-14/igt@kms_addfb_basic@size-max.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-dg1: [DMESG-WARN][315] ([i915#4423]) -> [PASS][316] +2 other tests pass [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg1-19/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-15/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [ABORT][317] ([i915#15132]) -> [PASS][318] +1 other test pass [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-rkl: [FAIL][319] ([i915#13566]) -> [PASS][320] +4 other tests pass [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-2/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html - shard-tglu: [FAIL][321] ([i915#13566]) -> [PASS][322] +3 other tests pass [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-mtlp: [FAIL][323] ([i915#10826]) -> [PASS][324] +1 other test pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-mtlp-7/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-1/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_force_connector_basic@force-connector-state: - shard-mtlp: [SKIP][325] ([i915#15672]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-3/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: [SKIP][327] ([i915#3555] / [i915#8228]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-7/igt@kms_hdr@static-toggle-dpms.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][329] ([i915#15073]) -> [PASS][330] +1 other test pass [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg1: [SKIP][331] ([i915#15073]) -> [PASS][332] +1 other test pass [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][333] ([i915#15073]) -> [PASS][334] +1 other test pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][335] ([i915#12276]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][337] ([i915#15420]) -> [PASS][338] +1 other test pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-mtlp-7/igt@kms_vrr@negative-basic.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-mtlp-4/igt@kms_vrr@negative-basic.html #### Warnings #### * igt@dmabuf@all-tests: - shard-rkl: [SKIP][339] ([i915#14544] / [i915#15931]) -> [SKIP][340] ([i915#15931]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@dmabuf@all-tests.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-7/igt@dmabuf@all-tests.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: [SKIP][341] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][342] ([i915#3555] / [i915#9323]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-rkl: [SKIP][343] ([i915#9323]) -> [SKIP][344] ([i915#14544] / [i915#9323]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-5/igt@gem_ccs@suspend-resume.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@gem_ccs@suspend-resume.html * igt@gem_exec_reloc@basic-cpu-read-active: - shard-rkl: [SKIP][345] ([i915#14544] / [i915#3281]) -> [SKIP][346] ([i915#3281]) +5 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-read-active.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-read-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: [SKIP][347] ([i915#3281]) -> [SKIP][348] ([i915#14544] / [i915#3281]) +3 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-active.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: [SKIP][349] ([i915#4613]) -> [SKIP][350] ([i915#14544] / [i915#4613]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-3/igt@gem_lmem_swapping@heavy-random.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: [SKIP][351] ([i915#14544] / [i915#4613]) -> [SKIP][352] ([i915#4613]) +3 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [SKIP][353] ([i915#13717]) -> [SKIP][354] ([i915#13717] / [i915#14544]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-buffer.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_readwrite@read-write: - shard-rkl: [SKIP][355] ([i915#14544] / [i915#3282]) -> [SKIP][356] ([i915#3282]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@gem_readwrite@read-write.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@gem_readwrite@read-write.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: [SKIP][357] ([i915#8411]) -> [SKIP][358] ([i915#14544] / [i915#8411]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_tiled_partial_pwrite_pread@reads: - shard-rkl: [SKIP][359] ([i915#3282]) -> [SKIP][360] ([i915#14544] / [i915#3282]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-2/igt@gem_tiled_partial_pwrite_pread@reads.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@reads.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][361] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][362] ([i915#3282] / [i915#3297]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-2/igt@gem_userptr_blits@forbidden-operations.html * igt@gen9_exec_parse@batch-zero-length: - shard-rkl: [SKIP][363] ([i915#2527]) -> [SKIP][364] ([i915#14544] / [i915#2527]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-5/igt@gen9_exec_parse@batch-zero-length.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-large: - shard-rkl: [SKIP][365] ([i915#14544] / [i915#2527]) -> [SKIP][366] ([i915#2527]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@gen9_exec_parse@bb-large.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@gen9_exec_parse@bb-large.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: [SKIP][367] ([i915#14544] / [i915#15479]) -> [SKIP][368] ([i915#15479]) +4 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-2/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-glk: [DMESG-WARN][369] ([i915#15342]) -> [ABORT][370] ([i915#15342]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-glk9/igt@i915_module_load@fault-injection@intel_connector_register.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk1/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@resize-bar: - shard-rkl: [SKIP][371] ([i915#14544] / [i915#6412]) -> [SKIP][372] ([i915#6412]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@i915_module_load@resize-bar.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: [SKIP][373] ([i915#8399]) -> [SKIP][374] ([i915#14544] / [i915#8399]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: [SKIP][375] -> [SKIP][376] ([i915#14544]) +8 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_query@hwconfig_table: - shard-rkl: [SKIP][377] ([i915#6245]) -> [SKIP][378] ([i915#14544] / [i915#6245]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-2/igt@i915_query@hwconfig_table.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: [SKIP][379] ([i915#5723]) -> [SKIP][380] ([i915#14544] / [i915#5723]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-8/igt@i915_query@test-query-geometry-subslices.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html * igt@intel_hwmon@hwmon-write: - shard-rkl: [SKIP][381] ([i915#7707]) -> [SKIP][382] ([i915#14544] / [i915#7707]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-5/igt@intel_hwmon@hwmon-write.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@intel_hwmon@hwmon-write.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: [SKIP][383] ([i915#14544] / [i915#5286]) -> [SKIP][384] ([i915#5286]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [SKIP][385] ([i915#5286]) -> [SKIP][386] ([i915#14544] / [i915#5286]) +2 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: [SKIP][387] ([i915#14544] / [i915#3638]) -> [SKIP][388] ([i915#3638]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][389] ([i915#3638]) -> [SKIP][390] ([i915#14544] / [i915#3638]) +1 other test skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [SKIP][391] ([i915#14544]) -> [SKIP][392] +4 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][393] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][394] ([i915#14098] / [i915#6095]) +5 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][395] ([i915#12313]) -> [SKIP][396] ([i915#12313] / [i915#14544]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][397] ([i915#14544] / [i915#6095]) -> [SKIP][398] ([i915#6095]) +3 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][399] ([i915#6095]) -> [SKIP][400] ([i915#14544] / [i915#6095]) +4 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][401] ([i915#14098] / [i915#6095]) -> [SKIP][402] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: [SKIP][403] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][404] ([i915#11151] / [i915#7828]) +1 other test skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-rkl: [SKIP][405] ([i915#11151] / [i915#7828]) -> [SKIP][406] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-3/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_content_protection@lic-type-0: - shard-rkl: [SKIP][407] ([i915#15865]) -> [SKIP][408] ([i915#14544] / [i915#15865]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-7/igt@kms_content_protection@lic-type-0.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][409] ([i915#15865]) -> [SKIP][410] ([i915#9433]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg1-16/igt@kms_content_protection@mei-interface.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent-hdcp14: - shard-rkl: [SKIP][411] ([i915#14544] / [i915#15865]) -> [SKIP][412] ([i915#15865]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-1/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: [SKIP][413] ([i915#14544] / [i915#3555]) -> [SKIP][414] ([i915#3555]) +1 other test skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-max-size.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][415] ([i915#14544] / [i915#4103]) -> [SKIP][416] ([i915#4103]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: [SKIP][417] ([i915#13691]) -> [SKIP][418] ([i915#13691] / [i915#14544]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: [SKIP][419] ([i915#13748]) -> [SKIP][420] ([i915#13748] / [i915#14544]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: [SKIP][421] ([i915#3840]) -> [SKIP][422] ([i915#14544] / [i915#3840]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: [SKIP][423] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][424] ([i915#3555] / [i915#3840]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@display-3x: - shard-rkl: [SKIP][425] ([i915#14544] / [i915#1839]) -> [SKIP][426] ([i915#1839]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_feature_discovery@display-3x.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-rkl: [SKIP][427] ([i915#1839]) -> [SKIP][428] ([i915#14544] / [i915#1839]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-3/igt@kms_feature_discovery@display-4x.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: [SKIP][429] ([i915#9337]) -> [SKIP][430] ([i915#14544] / [i915#9337]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: [SKIP][431] ([i915#9934]) -> [SKIP][432] ([i915#14544] / [i915#9934]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: [INCOMPLETE][433] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][434] ([i915#12745] / [i915#4839] / [i915#6113]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk1/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][435] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][436] ([i915#12745]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk1/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-rkl: [SKIP][437] ([i915#14544] / [i915#9934]) -> [SKIP][438] ([i915#9934]) +2 other tests skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-3/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][439] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][440] ([i915#12745] / [i915#4839] / [i915#6113]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-rkl: [SKIP][441] ([i915#14544] / [i915#15643]) -> [SKIP][442] ([i915#15643]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: [SKIP][443] ([i915#15643]) -> [SKIP][444] ([i915#14544] / [i915#15643]) +3 other tests skip [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-rkl: [SKIP][445] ([i915#14544] / [i915#15102]) -> [SKIP][446] ([i915#15102]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: [SKIP][447] ([i915#15102] / [i915#3023]) -> [SKIP][448] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][449] ([i915#1825]) -> [SKIP][450] ([i915#14544] / [i915#1825]) +12 other tests skip [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-rkl: [SKIP][451] ([i915#14544] / [i915#1825]) -> [SKIP][452] ([i915#1825]) +14 other tests skip [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: [SKIP][453] ([i915#15102] / [i915#3458]) -> [SKIP][454] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][455] ([i915#15102]) -> [SKIP][456] ([i915#14544] / [i915#15102]) [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-dg2: [SKIP][457] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][458] ([i915#15102] / [i915#3458]) +1 other test skip [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-rkl: [SKIP][459] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][460] ([i915#15102] / [i915#3023]) +4 other tests skip [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: [SKIP][461] ([i915#15460]) -> [SKIP][462] ([i915#14544] / [i915#15460]) [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-3/igt@kms_joiner@basic-big-joiner.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping: - shard-rkl: [SKIP][463] ([i915#15709]) -> [SKIP][464] ([i915#14544] / [i915#15709]) +1 other test skip [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-rkl: [SKIP][465] ([i915#14544] / [i915#15709]) -> [SKIP][466] ([i915#15709]) [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_pm_backlight@fade: - shard-rkl: [SKIP][467] ([i915#14544] / [i915#5354]) -> [SKIP][468] ([i915#5354]) [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_pm_backlight@fade.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-8/igt@kms_pm_backlight@fade.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][469] ([i915#15073]) -> [SKIP][470] ([i915#14544] / [i915#15073]) [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@package-g7: - shard-rkl: [SKIP][471] ([i915#14544] / [i915#15403]) -> [SKIP][472] ([i915#15403]) [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_pm_rpm@package-g7.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_pm_rpm@package-g7.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][473] ([i915#11520] / [i915#14544]) -> [SKIP][474] ([i915#11520]) +3 other tests skip [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][475] ([i915#11520]) -> [SKIP][476] ([i915#11520] / [i915#14544]) +2 other tests skip [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: [SKIP][477] ([i915#14544] / [i915#9683]) -> [SKIP][478] ([i915#9683]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@pr-primary-mmap-gtt: - shard-rkl: [SKIP][479] ([i915#1072] / [i915#9732]) -> [SKIP][480] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-3/igt@kms_psr@pr-primary-mmap-gtt.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_psr@pr-primary-mmap-gtt.html * igt@kms_psr@psr-cursor-render: - shard-rkl: [SKIP][481] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][482] ([i915#1072] / [i915#9732]) +6 other tests skip [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@kms_psr@psr-cursor-render.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-4/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-dg1: [SKIP][483] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][484] ([i915#1072] / [i915#9732]) [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-dg1-19/igt@kms_psr@psr2-cursor-plane-onoff.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-dg1-15/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-rkl: [SKIP][485] ([i915#15949]) -> [SKIP][486] ([i915#14544] / [i915#15949]) [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: [SKIP][487] ([i915#8623]) -> [SKIP][488] ([i915#14544] / [i915#8623]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: [SKIP][489] ([i915#9906]) -> [SKIP][490] ([i915#14544] / [i915#9906]) [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-2/igt@kms_vrr@flip-basic-fastset.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: [SKIP][491] ([i915#14544] / [i915#2433]) -> [SKIP][492] ([i915#2433]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-3/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: [SKIP][493] ([i915#8516]) -> [SKIP][494] ([i915#14544] / [i915#8516]) [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8885/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [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#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15718]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15718 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [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#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#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#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8885 -> IGTPW_15099 CI-20190529: 20190529 CI_DRM_18411: 94d56a898a2db27f841b17f6966a81ba502fe63c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15099: fffdb4ecbd383f58a27283240495e5375ac763cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8885: 88f8f393de9c789a5b070a602e07ba396a480d89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15099/index.html [-- Attachment #2: Type: text/html, Size: 164537 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Xe.CI.FULL: failure for Wa_14026633728 2026-05-05 5:47 [PATCH v4 0/2] Wa_14026633728 Shekhar Chauhan ` (4 preceding siblings ...) 2026-05-05 11:50 ` ✓ i915.CI.Full: " Patchwork @ 2026-05-05 14:43 ` Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2026-05-05 14:43 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 26224 bytes --] == Series Details == Series: Wa_14026633728 URL : https://patchwork.freedesktop.org/series/165955/ State : failure == Summary == CI Bug Log - changes from XEIGT_8885_FULL -> XEIGTPW_15099_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15099_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15099_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15099_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_pmu@engine-activity-most-load-idle@engine-drm_xe_engine_class_compute0: - shard-bmg: [PASS][1] -> [FAIL][2] +5 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8885/shard-bmg-9/igt@xe_pmu@engine-activity-most-load-idle@engine-drm_xe_engine_class_compute0.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-2/igt@xe_pmu@engine-activity-most-load-idle@engine-drm_xe_engine_class_compute0.html * igt@xe_pmu@engine-activity-most-load-idle@engine-drm_xe_engine_class_video_enhance1: - shard-bmg: [PASS][3] -> [ABORT][4] +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8885/shard-bmg-9/igt@xe_pmu@engine-activity-most-load-idle@engine-drm_xe_engine_class_video_enhance1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-2/igt@xe_pmu@engine-activity-most-load-idle@engine-drm_xe_engine_class_video_enhance1.html Known issues ------------ Here are the changes found in XEIGTPW_15099_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#7676]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html * igt@kms_bw@linear-tiling-3-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#367]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#2887]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#3432]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html * igt@kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2325] / [Intel XE#7358]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-5/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2252]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-9/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#7642]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][15] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-10/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2320]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1424]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2321] / [Intel XE#7355]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [PASS][19] -> [FAIL][20] ([Intel XE#7571]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8885/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#4422] / [Intel XE#7442]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-10/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#301]) +1 other test fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8885/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2311]) +11 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#4141]) +5 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#656]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7061] / [Intel XE#7356]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2313]) +8 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1469] / [Intel XE#7399]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#3374] / [Intel XE#3544]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7283]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#7283]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-1/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-x: - shard-bmg: [PASS][34] -> [INCOMPLETE][35] ([Intel XE#5681]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8885/shard-bmg-9/igt@kms_plane_lowres@tiling-x.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-2/igt@kms_plane_lowres@tiling-x.html * igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-3: - shard-bmg: [PASS][36] -> [DMESG-FAIL][37] ([Intel XE#1727]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8885/shard-bmg-9/igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-3.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-2/igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#7339]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1489]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-suspend: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1406]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-1/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@psr-primary-blt: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-8/igt@kms_psr@psr-primary-blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: [PASS][44] -> [SKIP][45] ([Intel XE#4692] / [Intel XE#7508]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8885/shard-lnl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#3904] / [Intel XE#7342]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1499]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@xe_eudebug@basic-client: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7636]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-1/igt@xe_eudebug@basic-client.html * igt@xe_eudebug@basic-vm-access-userptr: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7636]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-8/igt@xe_eudebug@basic-vm-access-userptr.html * igt@xe_evict@evict-beng-cm-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-7/igt@xe_evict@evict-beng-cm-threads-small-multi-vm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][51] -> [INCOMPLETE][52] ([Intel XE#6321]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8885/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_balancer@twice-parallel-basic: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#7482]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-1/igt@xe_exec_balancer@twice-parallel-basic.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2322] / [Intel XE#7372]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1392]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-imm: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7136]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-8/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-imm.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7136]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-1/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race.html * igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#6874]) +9 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-9/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority.html * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#6874]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-3/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr-invalidate.html * igt@xe_exec_reset@cm-multi-queue-close-execqueues: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7866]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-10/igt@xe_exec_reset@cm-multi-queue-close-execqueues.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7138]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html * igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#7138]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2833]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-9/igt@xe_live_ktest@xe_eudebug.html * igt@xe_multigpu_svm@mgpu-concurrent-access-basic: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#6964]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-1/igt@xe_multigpu_svm@mgpu-concurrent-access-basic.html * igt@xe_multigpu_svm@mgpu-pagefault-prefetch: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#6964]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-5/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html * igt@xe_page_reclaim@invalid-1g: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#7793]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-7/igt@xe_page_reclaim@invalid-1g.html * igt@xe_query@multigpu-query-mem-usage: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#944]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-8/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#6569]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8885/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: NOTRUN -> [DMESG-WARN][70] ([Intel XE#5545]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: - shard-bmg: [FAIL][71] ([Intel XE#3321]) -> [PASS][72] +2 other tests pass [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8885/shard-bmg-10/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][73] ([Intel XE#7340]) -> [PASS][74] +1 other test pass [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8885/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][75] ([Intel XE#4227] / [Intel XE#7397]) -> [PASS][76] +1 other test pass [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8885/shard-lnl-7/igt@kms_vrr@flipline.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-lnl-8/igt@kms_vrr@flipline.html #### Warnings #### * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][77] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][78] ([Intel XE#2426] / [Intel XE#5848]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8885/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [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#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5681 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7339 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7676 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8885 -> IGTPW_15099 IGTPW_15099: fffdb4ecbd383f58a27283240495e5375ac763cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8885: 88f8f393de9c789a5b070a602e07ba396a480d89 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4984-94d56a898a2db27f841b17f6966a81ba502fe63c: 94d56a898a2db27f841b17f6966a81ba502fe63c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15099/index.html [-- Attachment #2: Type: text/html, Size: 28631 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-05-05 16:42 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-05-05 5:47 [PATCH v4 0/2] Wa_14026633728 Shekhar Chauhan 2026-05-05 5:47 ` [PATCH v4 1/2] lib/intel_wa: Add workaround check for a wa within debugfs file Shekhar Chauhan 2026-05-05 13:34 ` Gustavo Sousa 2026-05-05 14:26 ` Jani Nikula 2026-05-05 14:50 ` Gustavo Sousa 2026-05-05 14:53 ` Jani Nikula 2026-05-05 5:47 ` [PATCH v4 2/2] tests/intel/xe_oa: Wa_14026633728 Shekhar Chauhan 2026-05-05 16:42 ` Dixit, Ashutosh 2026-05-05 6:59 ` ✓ i915.CI.BAT: success for Wa_14026633728 Patchwork 2026-05-05 7:25 ` ✓ Xe.CI.BAT: " Patchwork 2026-05-05 11:50 ` ✓ i915.CI.Full: " Patchwork 2026-05-05 14:43 ` ✗ 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