* [PATCH 0/3] Skip test if joiner display is connected
@ 2024-11-25 16:34 Jeevan B
2024-11-25 16:34 ` [PATCH 1/3] lib/igt_kms: Add is_joiner_mode function Jeevan B
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Jeevan B @ 2024-11-25 16:34 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, Jeevan B
Skip tests on joiner outputs to prevent failures caused by high-resolution
displays. This ensures the test suite runs smoothly without unnecessary issues.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
Jeevan B (2):
lib/igt_kms: Add is_joiner_mode function
tests/kms_display_modes: Skip test if joiner display is connected
Santhosh Reddy Guddati (1):
tests/kms_async_flips: Skip async flips on joiner output
lib/igt_kms.c | 31 +++++++++++++++++++++++++++++++
lib/igt_kms.h | 1 +
tests/kms_async_flips.c | 18 ++++++++++++++++--
tests/kms_display_modes.c | 3 +++
4 files changed, 51 insertions(+), 2 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH 1/3] lib/igt_kms: Add is_joiner_mode function 2024-11-25 16:34 [PATCH 0/3] Skip test if joiner display is connected Jeevan B @ 2024-11-25 16:34 ` Jeevan B 2024-11-25 16:34 ` [PATCH 2/3] tests/kms_async_flips: Skip async flips on joiner output Jeevan B ` (4 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Jeevan B @ 2024-11-25 16:34 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Jeevan B, Santhosh Reddy Guddati Introduce a utility to check if bigjoiner or ultrajoiner mode is required based on requirement. Signed-off-by: Jeevan B <jeevan.b@intel.com> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> Reviewed-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_kms.c | 31 +++++++++++++++++++++++++++++++ lib/igt_kms.h | 1 + 2 files changed, 32 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 76f32e1e0..6fb5822ee 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6441,6 +6441,37 @@ bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector, return found; } +/** + * is_joiner_mode: + * @drm_fd: drm file descriptor + * @output: pointer to the output structure + * + * Checks if the current configuration requires Big Joiner or Ultra Joiner mode + * based on the maximum dot clock and connector settings. + * + * Returns: True if joiner mode is required, otherwise False. + */ +bool is_joiner_mode(int drm_fd, igt_output_t *output) +{ + bool is_joiner = false; + bool is_ultra_joiner = false; + int max_dotclock; + drmModeModeInfo mode; + + max_dotclock = igt_get_max_dotclock(drm_fd); + is_joiner = bigjoiner_mode_found(drm_fd, + output->config.connector, + max_dotclock, &mode); + is_ultra_joiner = ultrajoiner_mode_found(drm_fd, + output->config.connector, + max_dotclock, &mode); + + if (is_joiner || is_ultra_joiner) + return true; + + return false; +} + /** * igt_has_force_joiner_debugfs * @drmfd: A drm file descriptor diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 301f370df..c2fbbb5b0 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1248,6 +1248,7 @@ bool igt_ultrajoiner_possible(drmModeModeInfo *mode, int max_dotclock); bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector, int max_dotclock, drmModeModeInfo *mode); bool igt_has_force_joiner_debugfs(int drmfd, char *conn_name); +bool is_joiner_mode(int drm_fd, igt_output_t *output); bool igt_check_force_joiner_status(int drmfd, char *connector_name); bool igt_check_bigjoiner_support(igt_display_t *display); bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode); -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/3] tests/kms_async_flips: Skip async flips on joiner output 2024-11-25 16:34 [PATCH 0/3] Skip test if joiner display is connected Jeevan B 2024-11-25 16:34 ` [PATCH 1/3] lib/igt_kms: Add is_joiner_mode function Jeevan B @ 2024-11-25 16:34 ` Jeevan B 2024-11-26 12:11 ` Sharma, Swati2 2024-11-25 16:34 ` [PATCH 3/3] tests/kms_display_modes: Skip test if joiner display is connected Jeevan B ` (3 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Jeevan B @ 2024-11-25 16:34 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Santhosh Reddy Guddati, Jeevan B, Kunal Joshi From: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> Async flips are disallowed with joiner, but the test commit still goes through and causes failures. Update the tests to skip on joiner outputs. V2: Skip tests only on joiner outputs (Kunal). V3: Add a todo to remove workaround when async flips with joiner is supported in kernel. V4: Add proper FIXME, improve log message and move igt_is_joiner mode to library (Swati). Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> Signed-off-by: Jeevan B <jeevan.b@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> --- tests/kms_async_flips.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index 5dec71291..3ce6e18d7 100644 --- a/tests/kms_async_flips.c +++ b/tests/kms_async_flips.c @@ -653,6 +653,12 @@ static void run_test(data_t *data, void (*test)(data_t *)) data->allow_fail = false; data->modifier = default_modifier(data); igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name) { + /* + * FIXME: joiner+async flip is busted currently in KMD. + * Remove this check once the issues are fixed in KMD. + */ + igt_skip_on_f(is_joiner_mode(data->drm_fd, data->output), + "Skipping, async flip not supported on joiner mode\n"); test_init_fbs(data); test(data); } @@ -674,8 +680,16 @@ static void run_test_with_modifiers(data_t *data, void (*test)(data_t *)) igt_dynamic_f("pipe-%s-%s-%s", kmstest_pipe_name(data->pipe), data->output->name, igt_fb_modifier_name(data->modifier)) { - test_init_fbs(data); - test(data); + /* + * FIXME: joiner+async flip is busted currently in KMD. + * Remove this check once the issues are fixed in KMD. + */ + igt_skip_on_f(is_joiner_mode(data->drm_fd, + data->output), + "Skipping, async flip not supported " + "on joiner mode\n"); + test_init_fbs(data); + test(data); } } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 2/3] tests/kms_async_flips: Skip async flips on joiner output 2024-11-25 16:34 ` [PATCH 2/3] tests/kms_async_flips: Skip async flips on joiner output Jeevan B @ 2024-11-26 12:11 ` Sharma, Swati2 0 siblings, 0 replies; 9+ messages in thread From: Sharma, Swati2 @ 2024-11-26 12:11 UTC (permalink / raw) To: Jeevan B, igt-dev; +Cc: Santhosh Reddy Guddati, Kunal Joshi LGTM Reviewed-by: Swati Sharma <swati2.sharma@intel.com> On 25-11-2024 10:04 pm, Jeevan B wrote: > From: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > > Async flips are disallowed with joiner, but the test commit still > goes through and causes failures. Update the tests to skip on > joiner outputs. > > V2: Skip tests only on joiner outputs (Kunal). > V3: Add a todo to remove workaround when async flips with joiner is > supported in kernel. > V4: Add proper FIXME, improve log message and > move igt_is_joiner mode to library (Swati). > > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > Signed-off-by: Jeevan B <jeevan.b@intel.com> > Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> > --- > tests/kms_async_flips.c | 18 ++++++++++++++++-- > 1 file changed, 16 insertions(+), 2 deletions(-) > > diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c > index 5dec71291..3ce6e18d7 100644 > --- a/tests/kms_async_flips.c > +++ b/tests/kms_async_flips.c > @@ -653,6 +653,12 @@ static void run_test(data_t *data, void (*test)(data_t *)) > data->allow_fail = false; > data->modifier = default_modifier(data); > igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name) { > + /* > + * FIXME: joiner+async flip is busted currently in KMD. > + * Remove this check once the issues are fixed in KMD. > + */ > + igt_skip_on_f(is_joiner_mode(data->drm_fd, data->output), > + "Skipping, async flip not supported on joiner mode\n"); > test_init_fbs(data); > test(data); > } > @@ -674,8 +680,16 @@ static void run_test_with_modifiers(data_t *data, void (*test)(data_t *)) > igt_dynamic_f("pipe-%s-%s-%s", kmstest_pipe_name(data->pipe), > data->output->name, > igt_fb_modifier_name(data->modifier)) { > - test_init_fbs(data); > - test(data); > + /* > + * FIXME: joiner+async flip is busted currently in KMD. > + * Remove this check once the issues are fixed in KMD. > + */ > + igt_skip_on_f(is_joiner_mode(data->drm_fd, > + data->output), > + "Skipping, async flip not supported " > + "on joiner mode\n"); > + test_init_fbs(data); > + test(data); > } > } > } ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 3/3] tests/kms_display_modes: Skip test if joiner display is connected 2024-11-25 16:34 [PATCH 0/3] Skip test if joiner display is connected Jeevan B 2024-11-25 16:34 ` [PATCH 1/3] lib/igt_kms: Add is_joiner_mode function Jeevan B 2024-11-25 16:34 ` [PATCH 2/3] tests/kms_async_flips: Skip async flips on joiner output Jeevan B @ 2024-11-25 16:34 ` Jeevan B 2024-11-25 23:59 ` ✓ Xe.CI.BAT: success for Skip test if joiner display is connected (rev2) Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Jeevan B @ 2024-11-25 16:34 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Jeevan B High-resolution displays that support joiner modes can cause extended mode tests to fail. This commit introduces a check to skip these tests if a joiner mode display is connected, ensuring the test suite runs smoothly without unnecessary failures. v2: Add output name in skip message. Signed-off-by: Jeevan B <jeevan.b@intel.com> Reviewed-by: Swati Sharma <swati2.sharma@intel.com> --- tests/kms_display_modes.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c index f1d8ab03d..716e07a40 100644 --- a/tests/kms_display_modes.c +++ b/tests/kms_display_modes.c @@ -318,6 +318,9 @@ igt_main igt_display_require_output(&data.display); for_each_connected_output(&data.display, output) { + igt_skip_on_f(is_joiner_mode(data.drm_fd, output), + "Joiner mode found on output %s, skipping the test\n", + output->name); data.mst_output[count++] = output; if (output_is_dp_mst(&data, output, dp_mst_outputs)) dp_mst_outputs++; -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for Skip test if joiner display is connected (rev2) 2024-11-25 16:34 [PATCH 0/3] Skip test if joiner display is connected Jeevan B ` (2 preceding siblings ...) 2024-11-25 16:34 ` [PATCH 3/3] tests/kms_display_modes: Skip test if joiner display is connected Jeevan B @ 2024-11-25 23:59 ` Patchwork 2024-11-26 0:16 ` ✗ i915.CI.BAT: failure " Patchwork 2024-11-26 3:12 ` ✗ Xe.CI.Full: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-25 23:59 UTC (permalink / raw) To: B, Jeevan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2441 bytes --] == Series Details == Series: Skip test if joiner display is connected (rev2) URL : https://patchwork.freedesktop.org/series/141614/ State : success == Summary == CI Bug Log - changes from XEIGT_8125_BAT -> XEIGTPW_12194_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 8) ------------------------------ Missing (1): bat-pvc-2 Known issues ------------ Here are the changes found in XEIGTPW_12194_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3517]) +2 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][3] -> [FAIL][4] ([Intel XE#1861]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@psr-cursor-plane-move: - bat-adlp-7: [PASS][5] -> [SKIP][6] ([Intel XE#455]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#3517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3517 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8125 -> IGTPW_12194 * Linux: xe-2275-6510562075d8541c218e72188f9ef339f8ba371f -> xe-2276-ae312905c5a9fc7ce599a74422f068725101c475 IGTPW_12194: 12194 IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2275-6510562075d8541c218e72188f9ef339f8ba371f: 6510562075d8541c218e72188f9ef339f8ba371f xe-2276-ae312905c5a9fc7ce599a74422f068725101c475: ae312905c5a9fc7ce599a74422f068725101c475 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/index.html [-- Attachment #2: Type: text/html, Size: 3077 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.BAT: failure for Skip test if joiner display is connected (rev2) 2024-11-25 16:34 [PATCH 0/3] Skip test if joiner display is connected Jeevan B ` (3 preceding siblings ...) 2024-11-25 23:59 ` ✓ Xe.CI.BAT: success for Skip test if joiner display is connected (rev2) Patchwork @ 2024-11-26 0:16 ` Patchwork 2024-11-26 3:12 ` ✗ Xe.CI.Full: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-26 0:16 UTC (permalink / raw) To: B, Jeevan; +Cc: igt-dev == Series Details == Series: Skip test if joiner display is connected (rev2) URL : https://patchwork.freedesktop.org/series/141614/ State : failure == Summary == CI Bug Log - changes from IGT_8125 -> IGTPW_12194 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12194 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12194, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12194/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12194: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live: - bat-adlp-9: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-adlp-9/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12194/bat-adlp-9/igt@i915_selftest@live.html * igt@kms_flip@basic-flip-vs-dpms@b-dp1: - fi-kbl-7567u: [PASS][3] -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@b-dp1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12194/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@b-dp1.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@basic-flip-vs-wf_vblank@b-dp7: - {bat-mtlp-9}: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-mtlp-9/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp7.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12194/bat-mtlp-9/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp7.html Known issues ------------ Here are the changes found in IGTPW_12194 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-dpms: - fi-kbl-7567u: [PASS][7] -> [DMESG-WARN][8] ([i915#12920]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12194/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-dg1-7: [FAIL][9] ([i915#12903]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12194/bat-dg1-7/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@workarounds: - {bat-arls-6}: [ABORT][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-arls-6/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12194/bat-arls-6/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [SKIP][13] ([i915#9197]) -> [PASS][14] +3 other tests pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8125/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12194/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12920 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8125 -> IGTPW_12194 * Linux: CI_DRM_15743 -> CI_DRM_15744 CI-20190529: 20190529 CI_DRM_15743: 6510562075d8541c218e72188f9ef339f8ba371f @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15744: ae312905c5a9fc7ce599a74422f068725101c475 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12194: 12194 IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12194/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for Skip test if joiner display is connected (rev2) 2024-11-25 16:34 [PATCH 0/3] Skip test if joiner display is connected Jeevan B ` (4 preceding siblings ...) 2024-11-26 0:16 ` ✗ i915.CI.BAT: failure " Patchwork @ 2024-11-26 3:12 ` Patchwork 2024-11-26 10:18 ` B, Jeevan 5 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2024-11-26 3:12 UTC (permalink / raw) To: B, Jeevan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 151692 bytes --] == Series Details == Series: Skip test if joiner display is connected (rev2) URL : https://patchwork.freedesktop.org/series/141614/ State : failure == Summary == CI Bug Log - changes from XEIGT_8125_full -> XEIGTPW_12194_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12194_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12194_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12194_full: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@crc: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_async_flips@crc.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_async_flips@crc.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-lnl: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-5/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [ABORT][5] +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_cursor_legacy@torture-move@pipe-c: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][6] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_cursor_legacy@torture-move@pipe-c.html * igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-dp2-hdmi-a3: - shard-bmg: [PASS][7] -> [DMESG-FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-dp2-hdmi-a3.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: - shard-bmg: NOTRUN -> [FAIL][9] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-dg2-set2: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-lnl: [PASS][11] -> [DMESG-WARN][12] +3 other tests dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d: - shard-bmg: [PASS][13] -> [DMESG-WARN][14] +1 other test dmesg-warn [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html * igt@xe_eudebug_online@pagefault-write: - shard-bmg: NOTRUN -> [SKIP][15] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_eudebug_online@pagefault-write.html * igt@xe_module_load@unload: - shard-bmg: NOTRUN -> [DMESG-WARN][16] [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@xe_module_load@unload.html #### Warnings #### * igt@core_hotunplug@hotrebind-lateclose: - shard-bmg: [DMESG-WARN][17] ([Intel XE#3468]) -> [INCOMPLETE][18] [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@core_hotunplug@hotrebind-lateclose.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@core_hotunplug@hotrebind-lateclose.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2-set2: [SKIP][19] ([Intel XE#2136]) -> [SKIP][20] +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-suspend.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@xe_eudebug_online@pagefault-read: - shard-dg2-set2: [SKIP][21] ([Intel XE#1130]) -> [SKIP][22] [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_eudebug_online@pagefault-read.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@xe_eudebug_online@pagefault-read.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [DMESG-WARN][23] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][24] [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_module_load@reload: - shard-bmg: [DMESG-WARN][25] ([Intel XE#3467]) -> [DMESG-WARN][26] [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_module_load@reload.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@xe_module_load@reload.html New tests --------- New tests have been introduced between XEIGT_8125_full and XEIGTPW_12194_full: ### New IGT tests (3) ### * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-6-size-128: - Statuses : 1 pass(s) - Exec time: [5.10] s * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-6-size-256: - Statuses : 1 pass(s) - Exec time: [5.13] s * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-6-size-64: - Statuses : 1 pass(s) - Exec time: [5.14] s Known issues ------------ Here are the changes found in XEIGTPW_12194_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotreplug: - shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#1885]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@core_hotunplug@hotreplug.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1885]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@core_hotunplug@hotreplug-lateclose.html * igt@core_hotunplug@hotunbind-rebind: - shard-bmg: [PASS][30] -> [INCOMPLETE][31] ([Intel XE#3468]) +1 other test incomplete [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@core_hotunplug@hotunbind-rebind.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@core_hotunplug@hotunbind-rebind.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][32] -> [SKIP][33] ([Intel XE#3453]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html * igt@fbdev@info: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2134]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@fbdev@info.html * igt@fbdev@read: - shard-dg2-set2: [PASS][35] -> [SKIP][36] ([Intel XE#2134]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@fbdev@read.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@fbdev@read.html * igt@kms_3d: - shard-dg2-set2: [PASS][37] -> [SKIP][38] ([Intel XE#2423]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_3d.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_3d.html * igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][39] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][40] -> [SKIP][41] ([Intel XE#2423] / [i915#2575]) +75 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2370]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2327]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-bmg: NOTRUN -> [DMESG-FAIL][44] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#2136] / [Intel XE#2351]) +20 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#1124]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#1124]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2328]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#610]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#367]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2314] / [Intel XE#2894]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#367]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#787]) +74 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#2907]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#2136]) +43 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#3432]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2887]) +10 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2724]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-negative: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2325]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2252]) +7 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#373]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-bmg: NOTRUN -> [DMESG-WARN][64] ([Intel XE#3468] / [Intel XE#877]) +1 other test dmesg-warn [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#307]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [FAIL][66] ([Intel XE#1178]) +1 other test fail [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-offscreen-128x128@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [DMESG-WARN][67] ([Intel XE#3468]) +46 other tests dmesg-warn [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-128x128@pipe-a-hdmi-a-3.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2320]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2321]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#308]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2291]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2-set2: [PASS][73] -> [SKIP][74] ([Intel XE#309]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#2423] / [i915#2575]) +49 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2291]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2244]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#2958]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@kms_fbcon_fbt@fbc-suspend.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#776]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][81] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2316]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [PASS][83] -> [ABORT][84] ([Intel XE#3468]) +1 other test abort [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ab-dp2-hdmi-a3: - shard-bmg: [PASS][85] -> [DMESG-FAIL][86] ([Intel XE#3468]) +18 other tests dmesg-fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ab-dp2-hdmi-a3.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3: - shard-bmg: [PASS][87] -> [DMESG-FAIL][88] ([Intel XE#1727] / [Intel XE#3468]) +9 other tests dmesg-fail [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][89] -> [SKIP][90] ([Intel XE#2316]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [PASS][91] -> [INCOMPLETE][92] ([Intel XE#1727] / [Intel XE#3468]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2: - shard-bmg: NOTRUN -> [DMESG-FAIL][93] ([Intel XE#3468]) +10 other tests dmesg-fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][94] -> [FAIL][95] ([Intel XE#2882]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2: - shard-bmg: NOTRUN -> [FAIL][96] ([Intel XE#3486]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html * igt@kms_flip@flip-vs-expired-vblank@a-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][97] ([Intel XE#3321] / [Intel XE#3487]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank@c-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][98] ([Intel XE#301] / [Intel XE#3321] / [Intel XE#3487]) +1 other test fail [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][99] ([Intel XE#301]) +8 other tests fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [PASS][100] -> [INCOMPLETE][101] ([Intel XE#2049] / [Intel XE#2597]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip@flip-vs-suspend.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@d-dp4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][102] ([Intel XE#2049]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@flip-vs-suspend@d-dp4.html * igt@kms_flip@plain-flip-fb-recreate@b-edp1: - shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#886]) +4 other tests fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html * igt@kms_flip@plain-flip-fb-recreate@c-edp1: - shard-lnl: [PASS][105] -> [FAIL][106] ([Intel XE#3149] / [Intel XE#886]) +2 other tests fail [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-bmg: NOTRUN -> [INCOMPLETE][107] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#455]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2293]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2311]) +23 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [FAIL][112] ([Intel XE#2333]) +10 other tests fail [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [PASS][113] -> [SKIP][114] ([Intel XE#2136]) +24 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#656]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-dg2-set2: [PASS][116] -> [SKIP][117] ([Intel XE#656]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][118] -> [SKIP][119] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-lnl: [PASS][120] -> [DMESG-WARN][121] ([Intel XE#2932]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2312]) +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#651]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#653]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2313]) +19 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#346]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_plane_lowres@tiling-x: - shard-bmg: [PASS][127] -> [INCOMPLETE][128] ([Intel XE#3452]) +1 other test incomplete [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_plane_lowres@tiling-x.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_plane_lowres@tiling-x.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#309]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2763]) +14 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-bmg: [PASS][131] -> [DMESG-WARN][132] ([Intel XE#2566] / [Intel XE#3468]) +1 other test dmesg-warn [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2763]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-bmg: [PASS][134] -> [DMESG-WARN][135] ([Intel XE#2566]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#870]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#3309]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#1439]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2-set2: [PASS][140] -> [SKIP][141] ([Intel XE#836]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_pm_rpm@dpms-non-lpsp.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@legacy-planes-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2446]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_pm_rpm@legacy-planes-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#1439] / [Intel XE#3141]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: [PASS][144] -> [SKIP][145] ([Intel XE#2446]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-bmg: [PASS][146] -> [INCOMPLETE][147] ([Intel XE#2864]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_pm_rpm@modeset-stress-extra-wait.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_pm_rpm@universal-planes: - shard-lnl: [PASS][148] -> [DMESG-WARN][149] ([Intel XE#2042]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_pm_rpm@universal-planes.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-1/igt@kms_pm_rpm@universal-planes.html * igt@kms_pm_rpm@universal-planes@plane-77: - shard-lnl: [PASS][150] -> [DMESG-WARN][151] ([Intel XE#3184]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_pm_rpm@universal-planes@plane-77.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-1/igt@kms_pm_rpm@universal-planes@plane-77.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#1489]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2387]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-basic: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#2850] / [Intel XE#929]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_psr@psr2-no-drrs.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2234]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2330]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][158] -> [SKIP][159] ([Intel XE#1435]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-lnl: [PASS][160] -> [FAIL][161] ([Intel XE#899]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3: - shard-bmg: [PASS][162] -> [DMESG-WARN][163] ([Intel XE#1727] / [Intel XE#3468]) +8 other tests dmesg-warn [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-dg2-set2: [PASS][164] -> [DMESG-WARN][165] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_vblank@ts-continuation-dpms-suspend.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][166] -> [DMESG-WARN][167] ([Intel XE#3468]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-6.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-6.html * igt@kms_vrr@cmrr: - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2168]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_vrr@cmrr.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#1499]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#1091] / [Intel XE#2849]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#1280] / [Intel XE#455]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_eudebug_online@reset-with-attention: - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#2905]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_eudebug_online@reset-with-attention.html * igt@xe_eudebug_online@stopped-thread: - shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#2905]) +8 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@xe_eudebug_online@stopped-thread.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][174] ([Intel XE#1473]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [PASS][175] -> [SKIP][176] ([Intel XE#1130]) +151 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_exec_balancer@once-parallel-rebind.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_exec_balancer@once-parallel-rebind.html * igt@xe_exec_balancer@twice-virtual-basic: - shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#1130]) +83 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_exec_balancer@twice-virtual-basic.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#2322]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html * igt@xe_exec_fault_mode@many-execqueues-rebind-imm: - shard-bmg: NOTRUN -> [DMESG-WARN][179] ([Intel XE#1727]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-rebind-imm.html * igt@xe_exec_fault_mode@once-basic: - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#288]) +7 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_exec_fault_mode@once-basic.html * igt@xe_exec_reset@cm-close-execqueues-close-fd: - shard-lnl: [PASS][181] -> [FAIL][182] ([Intel XE#1081]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-1/igt@xe_exec_reset@cm-close-execqueues-close-fd.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-5/igt@xe_exec_reset@cm-close-execqueues-close-fd.html - shard-bmg: [PASS][183] -> [FAIL][184] ([Intel XE#1081]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_exec_reset@cm-close-execqueues-close-fd.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_exec_reset@cm-close-execqueues-close-fd.html * igt@xe_exec_reset@parallel-close-fd-no-exec: - shard-bmg: [PASS][185] -> [DMESG-WARN][186] ([Intel XE#1727]) +3 other tests dmesg-warn [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_exec_reset@parallel-close-fd-no-exec.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@xe_exec_reset@parallel-close-fd-no-exec.html * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready: - shard-bmg: [PASS][187] -> [DMESG-WARN][188] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-bmg: [PASS][189] -> [DMESG-WARN][190] ([Intel XE#3343] / [Intel XE#3468]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: - shard-bmg: [PASS][191] -> [DMESG-WARN][192] ([Intel XE#3343]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-bmg: NOTRUN -> [DMESG-WARN][193] ([Intel XE#3343] / [Intel XE#3468]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: - shard-bmg: [PASS][194] -> [DMESG-WARN][195] ([Intel XE#3467]) +1 other test dmesg-warn [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-bmg: NOTRUN -> [DMESG-WARN][196] ([Intel XE#3467] / [Intel XE#3468]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#2229]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_module_load@load: - shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#2457]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_module_load@load.html - shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#378]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_module_load@load.html * igt@xe_oa@buffer-fill@rcs-0: - shard-bmg: [PASS][200] -> [DMESG-WARN][201] ([Intel XE#3468]) +98 other tests dmesg-warn [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_oa@buffer-fill@rcs-0.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_oa@buffer-fill@rcs-0.html * igt@xe_oa@mmio-triggered-reports@ccs-0: - shard-lnl: [PASS][202] -> [FAIL][203] ([Intel XE#2249]) +1 other test fail [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-1/igt@xe_oa@mmio-triggered-reports@ccs-0.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-3/igt@xe_oa@mmio-triggered-reports@ccs-0.html * igt@xe_oa@syncs-userptr-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#3573]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_oa@syncs-userptr-wait-cfg.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#2284]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s2idle-basic-exec: - shard-bmg: [PASS][206] -> [DMESG-WARN][207] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_pm@s2idle-basic-exec.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s2idle-multiple-execs: - shard-bmg: NOTRUN -> [DMESG-WARN][208] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@xe_pm@s2idle-multiple-execs.html * igt@xe_pm@s3-basic: - shard-bmg: [PASS][209] -> [DMESG-WARN][210] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_pm@s3-basic.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@xe_pm@s3-basic.html - shard-dg2-set2: [PASS][211] -> [DMESG-WARN][212] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_pm@s3-basic.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_pm@s3-basic.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [PASS][213] -> [ABORT][214] ([Intel XE#1794]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-bmg: [PASS][215] -> [DMESG-WARN][216] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_pm@s4-vm-bind-unbind-all.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_query@multigpu-query-invalid-extension: - shard-bmg: NOTRUN -> [SKIP][217] ([Intel XE#944]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#3342]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_sriov_flr@flr-vf1-clear.html - shard-bmg: NOTRUN -> [SKIP][219] ([Intel XE#3342]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@core_getstats: - shard-dg2-set2: [SKIP][220] ([Intel XE#2423]) -> [PASS][221] +1 other test pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@core_getstats.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@core_getstats.html * igt@core_getversion@basic: - shard-dg2-set2: [FAIL][222] ([Intel XE#3440]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@core_getversion@basic.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@core_getversion@basic.html * igt@core_hotunplug@unbind-rebind: - shard-dg2-set2: [SKIP][224] ([Intel XE#1885]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@core_hotunplug@unbind-rebind.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@core_hotunplug@unbind-rebind.html * igt@core_setmaster@master-drop-set-user: - shard-dg2-set2: [FAIL][226] ([Intel XE#3339]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@core_setmaster@master-drop-set-user.html * igt@fbdev@nullptr: - shard-dg2-set2: [SKIP][228] ([Intel XE#2134]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@fbdev@nullptr.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@fbdev@nullptr.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-dg2-set2: [SKIP][230] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][231] +10 other tests pass [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-180.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: [DMESG-WARN][232] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: - shard-dg2-set2: [DMESG-WARN][234] ([Intel XE#3468]) -> [PASS][235] +1 other test pass [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][236] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][237] +1 other test pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html * igt@kms_cursor_crc@cursor-onscreen-128x128: - shard-bmg: [DMESG-FAIL][238] ([Intel XE#3468]) -> [PASS][239] +18 other tests pass [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x128.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-128x128.html * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: [INCOMPLETE][240] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][241] +5 other tests pass [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][242] ([Intel XE#2291]) -> [PASS][243] +1 other test pass [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [DMESG-WARN][244] ([Intel XE#877]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-bmg: [SKIP][246] ([Intel XE#2316]) -> [PASS][247] +1 other test pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_flip@2x-plain-flip-interruptible.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-bmg: [DMESG-WARN][248] -> [PASS][249] +2 other tests pass [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [FAIL][250] ([Intel XE#886]) -> [PASS][251] +5 other tests pass [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-bmg: [DMESG-WARN][252] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][253] +5 other tests pass [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][254] ([Intel XE#656]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][256] ([Intel XE#2136]) -> [PASS][257] +22 other tests pass [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_hdr@bpc-switch-suspend: - shard-bmg: [DMESG-FAIL][258] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_hdr@bpc-switch-suspend.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_plane@pixel-format-source-clamping: - shard-bmg: [INCOMPLETE][260] ([Intel XE#1035] / [Intel XE#2566] / [Intel XE#3468]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_plane@pixel-format-source-clamping.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: [FAIL][262] ([Intel XE#616]) -> [PASS][263] +3 other tests pass [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: - shard-bmg: [INCOMPLETE][264] -> [PASS][265] +2 other tests pass [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][266] ([Intel XE#718]) -> [PASS][267] +1 other test pass [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [FAIL][268] ([Intel XE#1430]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: [FAIL][270] ([Intel XE#2029]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-dg2-set2: [SKIP][272] ([Intel XE#2446]) -> [PASS][273] +3 other tests pass [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [SKIP][274] ([Intel XE#2423] / [i915#2575]) -> [PASS][275] +80 other tests pass [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-180.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-180.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [SKIP][276] ([Intel XE#1435]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][278] ([Intel XE#2159]) -> [PASS][279] +1 other test pass [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_exec_basic@many-execqueues-bindexecqueue: - shard-lnl: [FAIL][280] -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_exec_basic@many-execqueues-bindexecqueue.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-5/igt@xe_exec_basic@many-execqueues-bindexecqueue.html * igt@xe_exec_fault_mode@twice-bindexecqueue: - shard-bmg: [DMESG-WARN][282] ([Intel XE#1727]) -> [PASS][283] +3 other tests pass [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_exec_fault_mode@twice-bindexecqueue.html * igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate: - shard-dg2-set2: [DMESG-WARN][284] ([Intel XE#3515]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html * igt@xe_exec_threads@threads-mixed-basic: - shard-lnl: [DMESG-WARN][286] -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-4/igt@xe_exec_threads@threads-mixed-basic.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-7/igt@xe_exec_threads@threads-mixed-basic.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-bmg: [DMESG-WARN][288] ([Intel XE#3343]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_live_ktest@xe_mocs: - shard-lnl: [SKIP][290] ([Intel XE#1192]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@xe_live_ktest@xe_mocs.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-4/igt@xe_live_ktest@xe_mocs.html * igt@xe_module_load@reload-no-display: - shard-bmg: [DMESG-WARN][292] ([Intel XE#3467]) -> [PASS][293] +1 other test pass [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_module_load@reload-no-display.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_module_load@reload-no-display.html * igt@xe_oa@oa-regs-whitelisted: - shard-lnl: [FAIL][294] ([Intel XE#2514]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted.html * igt@xe_pat@display-vs-wb-transient: - shard-bmg: [DMESG-WARN][296] ([Intel XE#3468]) -> [PASS][297] +104 other tests pass [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_pat@display-vs-wb-transient.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-bmg: [DMESG-WARN][298] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-userptr.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s3-basic-exec: - shard-bmg: [DMESG-FAIL][300] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][301] +1 other test pass [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_pm@s3-basic-exec.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-vm-bind-userptr: - shard-dg2-set2: [DMESG-WARN][302] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [FAIL][304] ([Intel XE#958]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_vm@munmap-style-unbind-userptr-many-all: - shard-dg2-set2: [SKIP][306] ([Intel XE#1130]) -> [PASS][307] +145 other tests pass [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_vm@munmap-style-unbind-userptr-many-all.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_vm@munmap-style-unbind-userptr-many-all.html #### Warnings #### * igt@core_hotunplug@hotrebind: - shard-dg2-set2: [SKIP][308] ([Intel XE#1885]) -> [DMESG-WARN][309] ([Intel XE#3468]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@core_hotunplug@hotrebind.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@core_hotunplug@hotrebind.html * igt@core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [INCOMPLETE][310] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][311] ([Intel XE#1885]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@core_hotunplug@hotunplug-rescan.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@core_hotunplug@hotunplug-rescan.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][312] ([Intel XE#623]) -> [SKIP][313] ([Intel XE#2423] / [i915#2575]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][314] ([Intel XE#2423] / [i915#2575]) -> [SKIP][315] ([Intel XE#873]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_interruptible@legacy-setmode: - shard-bmg: [DMESG-WARN][316] ([Intel XE#3468]) -> [DMESG-WARN][317] ([Intel XE#1727] / [Intel XE#3468]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_atomic_interruptible@legacy-setmode.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_atomic_interruptible@legacy-setmode.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][318] ([Intel XE#316]) -> [SKIP][319] ([Intel XE#2136]) +2 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][320] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][321] ([Intel XE#316]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-dg2-set2: [SKIP][322] ([Intel XE#316]) -> [SKIP][323] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-270.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][324] ([Intel XE#2136]) -> [SKIP][325] ([Intel XE#316]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][326] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][327] ([Intel XE#1124]) +2 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: [SKIP][328] ([Intel XE#2136]) -> [SKIP][329] ([Intel XE#1124]) +5 other tests skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][330] ([Intel XE#2136]) -> [SKIP][331] ([Intel XE#607]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][332] ([Intel XE#1124]) -> [SKIP][333] ([Intel XE#2136] / [Intel XE#2351]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][334] ([Intel XE#1124]) -> [SKIP][335] ([Intel XE#2136]) +8 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: [SKIP][336] ([Intel XE#367]) -> [SKIP][337] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-dg2-set2: [SKIP][338] ([Intel XE#2191]) -> [SKIP][339] ([Intel XE#2423] / [i915#2575]) [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][340] ([Intel XE#2423] / [i915#2575]) -> [SKIP][341] ([Intel XE#2191]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][342] ([Intel XE#2423] / [i915#2575]) -> [SKIP][343] ([Intel XE#367]) +2 other tests skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][344] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][345] ([Intel XE#787]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc: - shard-dg2-set2: [SKIP][346] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][347] ([Intel XE#2136]) +9 other tests skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][348] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][349] ([Intel XE#2136] / [Intel XE#2351]) +5 other tests skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [FAIL][350] ([Intel XE#616]) -> [SKIP][351] ([Intel XE#2136]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][352] ([Intel XE#787]) -> [SKIP][353] ([Intel XE#455] / [Intel XE#787]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][354] ([Intel XE#3442]) -> [SKIP][355] ([Intel XE#2136]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][356] ([Intel XE#2136]) -> [SKIP][357] ([Intel XE#3442]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][358] ([Intel XE#2136]) -> [SKIP][359] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][360] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][361] ([Intel XE#455] / [Intel XE#787]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][362] ([Intel XE#2136]) -> [SKIP][363] ([Intel XE#2907]) +1 other test skip [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][364] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][365] ([Intel XE#314]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][366] ([Intel XE#2423] / [i915#2575]) -> [SKIP][367] ([Intel XE#306]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][368] ([Intel XE#306]) -> [SKIP][369] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_chamelium_color@gamma.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@hdmi-cmp-planes-random: - shard-dg2-set2: [SKIP][370] ([Intel XE#373]) -> [SKIP][371] ([Intel XE#2423] / [i915#2575]) +9 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg2-set2: [SKIP][372] ([Intel XE#2423] / [i915#2575]) -> [SKIP][373] ([Intel XE#373]) +10 other tests skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_chamelium_frames@hdmi-frame-dump.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][374] ([Intel XE#2423] / [i915#2575]) -> [SKIP][375] ([Intel XE#307]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: [SKIP][376] ([Intel XE#307]) -> [SKIP][377] ([Intel XE#2423] / [i915#2575]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-1.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: [FAIL][378] ([Intel XE#1178]) -> [SKIP][379] ([Intel XE#2423] / [i915#2575]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_content_protection@lic-type-0.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg2-set2: [SKIP][380] ([Intel XE#2423] / [i915#2575]) -> [SKIP][381] ([Intel XE#455]) +7 other tests skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_content_protection@lic-type-1.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: [INCOMPLETE][382] ([Intel XE#2715]) -> [INCOMPLETE][383] ([Intel XE#2715] / [Intel XE#3468]) +1 other test incomplete [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_content_protection@srm@pipe-a-dp-2.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2-set2: [SKIP][384] ([Intel XE#2423] / [i915#2575]) -> [SKIP][385] ([Intel XE#308]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_cursor_crc@cursor-random-512x170.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_edge_walk@128x128-left-edge: - shard-bmg: [DMESG-WARN][386] ([Intel XE#3468]) -> [DMESG-FAIL][387] ([Intel XE#3468]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_cursor_edge_walk@128x128-left-edge.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_cursor_edge_walk@128x128-left-edge.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2-set2: [SKIP][388] ([Intel XE#309]) -> [SKIP][389] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [SKIP][390] ([Intel XE#2291]) -> [DMESG-WARN][391] ([Intel XE#877]) [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [SKIP][392] ([Intel XE#323]) -> [SKIP][393] ([Intel XE#2423] / [i915#2575]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-move: - shard-dg2-set2: [SKIP][394] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][395] ([Intel XE#3184]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_cursor_legacy@torture-move.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_cursor_legacy@torture-move.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-bmg: [DMESG-FAIL][396] ([Intel XE#3468]) -> [FAIL][397] ([Intel XE#2141]) +1 other test fail [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: [SKIP][398] ([Intel XE#455]) -> [SKIP][399] ([Intel XE#2136]) +4 other tests skip [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][400] ([Intel XE#1695]) -> [DMESG-FAIL][401] ([Intel XE#3468]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][402] ([Intel XE#776]) -> [SKIP][403] ([Intel XE#2136]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_fbcon_fbt@psr.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][404] ([Intel XE#2136]) -> [SKIP][405] ([Intel XE#776]) [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][406] ([Intel XE#2423] / [i915#2575]) -> [SKIP][407] ([Intel XE#1138]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_feature_discovery@display-4x.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][408] ([Intel XE#1137]) -> [SKIP][409] ([Intel XE#2423] / [i915#2575]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_feature_discovery@dp-mst.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-bmg: [SKIP][410] ([Intel XE#2316]) -> [DMESG-WARN][411] ([Intel XE#1727] / [Intel XE#3468]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [DMESG-FAIL][412] ([Intel XE#3468]) -> [FAIL][413] ([Intel XE#2882]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html - shard-dg2-set2: [SKIP][414] ([Intel XE#310]) -> [FAIL][415] ([Intel XE#301]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip@2x-flip-vs-expired-vblank.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [DMESG-FAIL][416] ([Intel XE#3468]) -> [DMESG-WARN][417] ([Intel XE#3468]) +2 other tests dmesg-warn [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][418] ([Intel XE#3321] / [Intel XE#3486]) -> [DMESG-WARN][419] ([Intel XE#3468]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][420] ([Intel XE#3486]) -> [DMESG-WARN][421] ([Intel XE#3468]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: [DMESG-WARN][422] ([Intel XE#3468]) -> [FAIL][423] ([Intel XE#3321] / [Intel XE#3487]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-dg2-set2: [SKIP][424] ([Intel XE#2423] / [i915#2575]) -> [SKIP][425] ([Intel XE#310]) +1 other test skip [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_flip@2x-flip-vs-wf_vblank.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-dg2-set2: [SKIP][426] ([Intel XE#310]) -> [SKIP][427] ([Intel XE#2423] / [i915#2575]) [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip@2x-nonexisting-fb-interruptible.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [DMESG-WARN][428] ([Intel XE#3468]) -> [SKIP][429] ([Intel XE#2316]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@absolute-wf_vblank: - shard-bmg: [DMESG-FAIL][430] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][431] ([Intel XE#3468]) [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip@absolute-wf_vblank.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip@absolute-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank: - shard-dg2-set2: [SKIP][432] ([Intel XE#2423] / [i915#2575]) -> [FAIL][433] ([Intel XE#301]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2-set2: [SKIP][434] ([Intel XE#455]) -> [SKIP][435] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html - shard-bmg: [INCOMPLETE][436] -> [SKIP][437] ([Intel XE#2293] / [Intel XE#2380]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-bmg: [INCOMPLETE][438] -> [SKIP][439] ([Intel XE#2293]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2-set2: [SKIP][440] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][441] ([Intel XE#455]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][442] ([Intel XE#2136]) -> [SKIP][443] ([Intel XE#455]) +3 other tests skip [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][444] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][445] ([Intel XE#651]) +7 other tests skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][446] ([Intel XE#2136]) -> [SKIP][447] ([Intel XE#656]) +4 other tests skip [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][448] ([Intel XE#651]) -> [SKIP][449] ([Intel XE#656]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][450] ([Intel XE#2312]) -> [SKIP][451] ([Intel XE#2311]) +6 other tests skip [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][452] -> [SKIP][453] ([Intel XE#2136]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: [DMESG-FAIL][454] ([Intel XE#3468]) -> [FAIL][455] ([Intel XE#2333]) +6 other tests fail [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-bmg: [FAIL][456] ([Intel XE#2333]) -> [INCOMPLETE][457] ([Intel XE#1727]) [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html - shard-dg2-set2: [SKIP][458] ([Intel XE#2136]) -> [INCOMPLETE][459] ([Intel XE#1727]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-bmg: [INCOMPLETE][460] -> [FAIL][461] ([Intel XE#2333]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-bmg: [FAIL][462] ([Intel XE#2333]) -> [INCOMPLETE][463] ([Intel XE#1727] / [Intel XE#3468]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][464] ([Intel XE#656]) -> [SKIP][465] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][466] ([Intel XE#2312]) -> [FAIL][467] ([Intel XE#2333]) +1 other test fail [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [FAIL][468] ([Intel XE#2333]) -> [DMESG-FAIL][469] ([Intel XE#3468]) +9 other tests dmesg-fail [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][470] ([Intel XE#2333]) -> [SKIP][471] ([Intel XE#2312]) +5 other tests skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen: - shard-bmg: [DMESG-FAIL][472] ([Intel XE#3468]) -> [SKIP][473] ([Intel XE#2312]) [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][474] ([Intel XE#651]) -> [SKIP][475] ([Intel XE#2136]) +19 other tests skip [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][476] ([Intel XE#2311]) -> [SKIP][477] ([Intel XE#2312]) +4 other tests skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][478] ([Intel XE#651]) -> [SKIP][479] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary: - shard-dg2-set2: [SKIP][480] ([Intel XE#2136]) -> [SKIP][481] ([Intel XE#651]) +15 other tests skip [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][482] ([Intel XE#2136]) -> [SKIP][483] ([Intel XE#653]) +19 other tests skip [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][484] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][485] ([Intel XE#653]) +5 other tests skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][486] ([Intel XE#2312]) -> [SKIP][487] ([Intel XE#2313]) +11 other tests skip [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][488] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][489] ([Intel XE#656]) +4 other tests skip [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][490] ([Intel XE#656]) -> [SKIP][491] ([Intel XE#653]) +1 other test skip [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][492] ([Intel XE#653]) -> [SKIP][493] ([Intel XE#656]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: [SKIP][494] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][495] ([Intel XE#658]) [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][496] ([Intel XE#653]) -> [SKIP][497] ([Intel XE#2136]) +28 other tests skip [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][498] ([Intel XE#656]) -> [SKIP][499] ([Intel XE#2136]) +5 other tests skip [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][500] ([Intel XE#2313]) -> [SKIP][501] ([Intel XE#2312]) +6 other tests skip [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][502] ([Intel XE#653]) -> [SKIP][503] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2-set2: [DMESG-WARN][504] ([Intel XE#3468]) -> [SKIP][505] ([Intel XE#2423] / [i915#2575]) [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_hdr@bpc-switch-suspend.html [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][506] ([Intel XE#346]) -> [SKIP][507] ([Intel XE#2136]) [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_joiner@invalid-modeset-big-joiner.html [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: [SKIP][508] ([Intel XE#2136]) -> [SKIP][509] ([Intel XE#2925]) +1 other test skip [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][510] ([Intel XE#356]) -> [SKIP][511] ([Intel XE#2423] / [i915#2575]) [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format: - shard-dg2-set2: [INCOMPLETE][512] ([Intel XE#1035] / [Intel XE#1727]) -> [SKIP][513] ([Intel XE#2423] / [i915#2575]) [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_plane@pixel-format.html [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_plane@pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: [SKIP][514] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][515] ([Intel XE#2423] / [i915#2575]) [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][516] ([Intel XE#2423] / [i915#2575]) -> [SKIP][517] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][518] ([Intel XE#2938]) -> [SKIP][519] ([Intel XE#2136]) [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_pm_backlight@brightness-with-dpms.html [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][520] ([Intel XE#2136]) -> [SKIP][521] ([Intel XE#870]) +1 other test skip [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][522] ([Intel XE#1122]) -> [SKIP][523] ([Intel XE#2136] / [Intel XE#2351]) [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][524] ([Intel XE#1129]) -> [SKIP][525] ([Intel XE#2136]) [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][526] ([Intel XE#1129]) -> [SKIP][527] ([Intel XE#2136] / [Intel XE#2351]) [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_pm_dc@dc6-psr.html [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: [DMESG-WARN][528] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][529] ([Intel XE#2446]) [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_pm_rpm@basic-pci-d3-state.html [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2-set2: [SKIP][530] ([Intel XE#2446]) -> [SKIP][531] ([Intel XE#836]) [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [SKIP][532] ([Intel XE#2446]) -> [DMESG-WARN][533] ([Intel XE#1727] / [Intel XE#2042] / [Intel XE#3468]) [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][534] ([Intel XE#2136]) -> [SKIP][535] ([Intel XE#1489]) +12 other tests skip [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: [SKIP][536] ([Intel XE#1489]) -> [SKIP][537] ([Intel XE#2136]) +7 other tests skip [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr@fbc-psr-no-drrs: - shard-dg2-set2: [SKIP][538] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][539] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_psr@fbc-psr-no-drrs.html [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][540] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][541] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-onoff.html [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-dg2-set2: [SKIP][542] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][543] ([Intel XE#2136]) +6 other tests skip [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_psr@pr-cursor-plane-onoff.html [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][544] ([Intel XE#2351]) -> [SKIP][545] ([Intel XE#2850] / [Intel XE#929]) [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr@psr-cursor-plane-move.html [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][546] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][547] ([Intel XE#2351]) [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_psr@psr-sprite-plane-onoff.html [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-primary-render: - shard-dg2-set2: [SKIP][548] ([Intel XE#2136]) -> [SKIP][549] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_psr@psr2-primary-render.html [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][550] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][551] ([Intel XE#2939]) [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][552] ([Intel XE#2136]) -> [SKIP][553] ([Intel XE#2939]) [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][554] ([Intel XE#3414]) -> [SKIP][555] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][556] ([Intel XE#1127]) -> [SKIP][557] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: [SKIP][558] ([Intel XE#2423] / [i915#2575]) -> [SKIP][559] ([Intel XE#3414]) +2 other tests skip [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-270.html [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][560] ([Intel XE#2423] / [i915#2575]) -> [SKIP][561] ([Intel XE#330]) [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@cmrr: - shard-dg2-set2: [SKIP][562] ([Intel XE#2423] / [i915#2575]) -> [SKIP][563] ([Intel XE#2168]) [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_vrr@cmrr.html [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_vrr@cmrr.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][564] ([Intel XE#455]) -> [SKIP][565] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_vrr@flip-dpms.html [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_vrr@flip-dpms.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][566] ([Intel XE#2423] / [i915#2575]) -> [SKIP][567] ([Intel XE#1091] / [Intel XE#2849]) [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][568] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][569] ([Intel XE#1130]) [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_compute_preempt@compute-preempt-many.html [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][570] ([Intel XE#1130]) -> [SKIP][571] ([Intel XE#1280] / [Intel XE#455]) [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt.html [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt.html * igt@xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: [SKIP][572] ([Intel XE#1123]) -> [SKIP][573] ([Intel XE#1130]) [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfd.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][574] ([Intel XE#1130]) -> [SKIP][575] ([Intel XE#1126]) [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x369.html [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][576] ([Intel XE#2905]) -> [SKIP][577] ([Intel XE#1130]) +10 other tests skip [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_eudebug@basic-close.html [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-vm-bind: - shard-dg2-set2: [SKIP][578] ([Intel XE#1130]) -> [SKIP][579] ([Intel XE#2905]) +7 other tests skip [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_eudebug@basic-vm-bind.html [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@xe_eudebug@basic-vm-bind.html * igt@xe_evict@evict-beng-large-external: - shard-dg2-set2: [DMESG-WARN][580] -> [SKIP][581] ([Intel XE#1130]) [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_evict@evict-beng-large-external.html [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_evict@evict-beng-large-external.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][582] ([Intel XE#1600]) -> [SKIP][583] ([Intel XE#1130]) [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [SKIP][584] ([Intel XE#1130]) -> [TIMEOUT][585] ([Intel XE#1473] / [Intel XE#402]) [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][586] ([Intel XE#1473]) -> [SKIP][587] ([Intel XE#1130]) [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [TIMEOUT][588] ([Intel XE#1473] / [Intel XE#2472]) -> [FAIL][589] ([Intel XE#1000]) [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@no-exec-null-rebind: - shard-dg2-set2: [SKIP][590] ([Intel XE#1130]) -> [DMESG-WARN][591] ([Intel XE#1727]) [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_exec_basic@no-exec-null-rebind.html [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_exec_basic@no-exec-null-rebind.html * igt@xe_exec_fault_mode@once-basic-imm: - shard-dg2-set2: [SKIP][592] ([Intel XE#1130]) -> [SKIP][593] ([Intel XE#288]) +23 other tests skip [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_exec_fault_mode@once-basic-imm.html [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_exec_fault_mode@once-basic-imm.html * igt@xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: [SKIP][594] ([Intel XE#288]) -> [SKIP][595] ([Intel XE#1130]) +23 other tests skip [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][596] ([Intel XE#1130]) -> [SKIP][597] ([Intel XE#2360]) [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_reset@cm-close-execqueues-close-fd: - shard-dg2-set2: [SKIP][598] ([Intel XE#1130]) -> [FAIL][599] ([Intel XE#1081]) [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_exec_reset@cm-close-execqueues-close-fd.html [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@xe_exec_reset@cm-close-execqueues-close-fd.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [DMESG-WARN][600] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][601] ([Intel XE#3467]) [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: [DMESG-WARN][602] ([Intel XE#3467]) -> [DMESG-WARN][603] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html [603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-dg2-set2: [DMESG-WARN][604] ([Intel XE#3343]) -> [SKIP][605] ([Intel XE#1130]) [604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-bmg: [DMESG-FAIL][606] ([Intel XE#3467]) -> [DMESG-FAIL][607] ([Intel XE#3467] / [Intel XE#3468]) [606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-dg2-set2: [DMESG-WARN][608] ([Intel XE#3467]) -> [SKIP][609] ([Intel XE#1130]) +4 other tests skip [608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html - shard-bmg: [FAIL][610] ([Intel XE#3499]) -> [DMESG-FAIL][611] ([Intel XE#3467] / [Intel XE#3468]) [610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: - shard-bmg: [DMESG-FAIL][612] ([Intel XE#3467] / [Intel XE#3468]) -> [FAIL][613] ([Intel XE#3499]) [612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: [SKIP][614] ([Intel XE#1130]) -> [DMESG-WARN][615] ([Intel XE#3467]) +2 other tests dmesg-warn [614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_live_ktest@xe_bo: - shard-bmg: [INCOMPLETE][616] ([Intel XE#2998]) -> [SKIP][617] ([Intel XE#1192]) [616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_live_ktest@xe_bo.html [617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@xe_live_ktest@xe_bo.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [DMESG-WARN][618] ([Intel XE#3467]) -> [FAIL][619] ([Intel XE#3546]) [618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_module_load@reload-no-display.html [619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_module_load@reload-no-display.html * igt@xe_oa@missing-sample-flags: - shard-dg2-set2: [SKIP][620] ([Intel XE#1130]) -> [SKIP][621] ([Intel XE#3573]) +5 other tests skip [620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_oa@missing-sample-flags.html [621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_oa@missing-sample-flags.html * igt@xe_oa@syncs-ufence-wait: - shard-dg2-set2: [SKIP][622] ([Intel XE#3573]) -> [SKIP][623] ([Intel XE#1130]) +4 other tests skip [622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_oa@syncs-ufence-wait.html [623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_oa@syncs-ufence-wait.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][624] ([Intel XE#977]) -> [SKIP][625] ([Intel XE#1130]) [624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_pat@pat-index-xe2.html [625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][626] ([Intel XE#979]) -> [SKIP][627] ([Intel XE#1130]) [626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html [627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@write: - shard-dg2-set2: [FAIL][628] ([Intel XE#1173]) -> [SKIP][629] ([Intel XE#1061]) [628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_peer2peer@write.html [629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_peer2peer@write.html * igt@xe_pm@d3hot-mmap-vram: - shard-dg2-set2: [DMESG-WARN][630] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][631] ([Intel XE#1130]) +1 other test skip [630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_pm@d3hot-mmap-vram.html [631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@d3hot-multiple-execs: - shard-dg2-set2: [SKIP][632] ([Intel XE#1130]) -> [DMESG-WARN][633] ([Intel XE#3468]) [632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_pm@d3hot-multiple-execs.html [633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@xe_pm@d3hot-multiple-execs.html * igt@xe_pm@s2idle-basic-exec: - shard-dg2-set2: [SKIP][634] ([Intel XE#1130]) -> [DMESG-WARN][635] ([Intel XE#1727] / [Intel XE#3468]) [634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_pm@s2idle-basic-exec.html [635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s4-vm-bind-userptr: - shard-dg2-set2: [SKIP][636] ([Intel XE#1130]) -> [ABORT][637] ([Intel XE#1794]) [636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_pm@s4-vm-bind-userptr.html [637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-dg2-set2: [SKIP][638] ([Intel XE#944]) -> [SKIP][639] ([Intel XE#1130]) [638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_query@multigpu-query-invalid-cs-cycles.html [639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][640] ([Intel XE#1130]) -> [SKIP][641] ([Intel XE#944]) +2 other tests skip [640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html [641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][642] ([Intel XE#3342]) -> [SKIP][643] ([Intel XE#1130]) [642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html [643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [DMESG-WARN][644] ([Intel XE#3468]) -> [DMESG-WARN][645] ([Intel XE#1727]) [644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html * igt@xe_vm@mixed-misaligned-binds-1611661312: - shard-dg2-set2: [DMESG-WARN][646] ([Intel XE#1727]) -> [SKIP][647] ([Intel XE#1130]) +5 other tests skip [646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_vm@mixed-misaligned-binds-1611661312.html [647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_vm@mixed-misaligned-binds-1611661312.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][648] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][649] ([Intel XE#1130]) [648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_wedged@wedged-mode-toggle.html [649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.html [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2958 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#3452]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3452 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3515]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8125 -> IGTPW_12194 * Linux: xe-2275-6510562075d8541c218e72188f9ef339f8ba371f -> xe-2276-ae312905c5a9fc7ce599a74422f068725101c475 IGTPW_12194: 12194 IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2275-6510562075d8541c218e72188f9ef339f8ba371f: 6510562075d8541c218e72188f9ef339f8ba371f xe-2276-ae312905c5a9fc7ce599a74422f068725101c475: ae312905c5a9fc7ce599a74422f068725101c475 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/index.html [-- Attachment #2: Type: text/html, Size: 196630 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: ✗ Xe.CI.Full: failure for Skip test if joiner display is connected (rev2) 2024-11-26 3:12 ` ✗ Xe.CI.Full: " Patchwork @ 2024-11-26 10:18 ` B, Jeevan 0 siblings, 0 replies; 9+ messages in thread From: B, Jeevan @ 2024-11-26 10:18 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 169148 bytes --] Failure not related to patch, Please re-report. For xe & i915 full run. From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Tuesday, November 26, 2024 8:42 AM To: B, Jeevan <jeevan.b@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Xe.CI.Full: failure for Skip test if joiner display is connected (rev2) Patch Details Series: Skip test if joiner display is connected (rev2) URL: https://patchwork.freedesktop.org/series/141614/ State: failure Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/index.html CI Bug Log - changes from XEIGT_8125_full -> XEIGTPW_12194_full Summary FAILURE Serious unknown changes coming with XEIGTPW_12194_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12194_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in XEIGTPW_12194_full: IGT changes Possible regressions * igt@kms_async_flips@crc: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_async_flips@crc.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_async_flips@crc.html> +1 other test incomplete * igt@kms_big_fb@linear-8bpp-rotate-180: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-5/igt@kms_big_fb@linear-8bpp-rotate-180.html> +1 other test fail * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6: * shard-dg2-set2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html> +1 other test abort * igt@kms_cursor_legacy@torture-move@pipe-c: * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_cursor_legacy@torture-move@pipe-c.html> * igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-dp2-hdmi-a3: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-dp2-hdmi-a3.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-dp2-hdmi-a3.html> * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: * shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html> * igt@kms_frontbuffer_tracking@fbc-tiling-linear: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html> * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html> +3 other tests dmesg-warn * igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html> +1 other test dmesg-warn * igt@xe_eudebug_online@pagefault-write: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_eudebug_online@pagefault-write.html> * igt@xe_module_load@unload: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@xe_module_load@unload.html> Warnings * igt@core_hotunplug@hotrebind-lateclose: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@core_hotunplug@hotrebind-lateclose.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@core_hotunplug@hotrebind-lateclose.html> * igt@kms_frontbuffer_tracking@fbc-suspend: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-suspend.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-suspend.html> +1 other test skip * igt@xe_eudebug_online@pagefault-read: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_eudebug_online@pagefault-read.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@xe_eudebug_online@pagefault-read.html> * igt@xe_fault_injection@vm-create-fail-xe_pt_create: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html> * igt@xe_module_load@reload: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_module_load@reload.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@xe_module_load@reload.html> New tests New tests have been introduced between XEIGT_8125_full and XEIGTPW_12194_full: New IGT tests (3) * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-6-size-128: * Statuses : 1 pass(s) * Exec time: [5.10] s * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-6-size-256: * Statuses : 1 pass(s) * Exec time: [5.13] s * igt@kms_plane_cursor@primary@pipe-b-hdmi-a-6-size-64: * Statuses : 1 pass(s) * Exec time: [5.14] s Known issues Here are the changes found in XEIGTPW_12194_full that come from known issues: IGT changes Issues hit * igt@core_hotunplug@hotreplug: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@core_hotunplug@hotreplug.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@core_hotunplug@hotreplug.html> (Intel XE#1885<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>) * igt@core_hotunplug@hotreplug-lateclose: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@core_hotunplug@hotreplug-lateclose.html> (Intel XE#1885<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>) * igt@core_hotunplug@hotunbind-rebind: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@core_hotunplug@hotunbind-rebind.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@core_hotunplug@hotunbind-rebind.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete * igt@core_setmaster@master-drop-set-shared-fd: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html> (Intel XE#3453<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453>) * igt@fbdev@info: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@fbdev@info.html> (Intel XE#2134<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134>) +2 other tests skip * igt@fbdev@read: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@fbdev@read.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@fbdev@read.html> (Intel XE#2134<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134>) +1 other test skip * igt@kms_3d: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_3d.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_3d.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) * igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6: * shard-dg2-set2: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +75 other tests skip * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (Intel XE#2370<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370>) * igt@kms_big_fb@4-tiled-64bpp-rotate-90: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html> (Intel XE#2327<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327>) +1 other test skip * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: * shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-fail * igt@kms_big_fb@linear-32bpp-rotate-180: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_big_fb@linear-32bpp-rotate-180.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +20 other tests skip * igt@kms_big_fb@y-tiled-16bpp-rotate-270: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +3 other tests skip * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +4 other tests skip * igt@kms_big_fb@yf-tiled-addfb: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html> (Intel XE#2328<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328>) * igt@kms_big_fb@yf-tiled-addfb-size-overflow: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#610<https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>) * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html> (Intel XE#2314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel XE#2894<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894>) * igt@kms_bw@linear-tiling-2-displays-2560x1440p: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +1 other test skip * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +74 other tests skip * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> (Intel XE#2907<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907>) * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html> (Intel XE#2652<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +8 other tests skip * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +43 other tests skip * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-d-dp-4: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-d-dp-4.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +13 other tests skip * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html> (Intel XE#3432<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432>) * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html> (Intel XE#2887<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +10 other tests skip * igt@kms_cdclk@mode-transition-all-outputs: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html> (Intel XE#2724<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724>) * igt@kms_chamelium_color@ctm-negative: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_chamelium_color@ctm-negative.html> (Intel XE#2325<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html> (Intel XE#2252<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) +7 other tests skip * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +3 other tests skip * igt@kms_color@deep-color: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_color@deep-color.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) +1 other test dmesg-warn * igt@kms_content_protection@dp-mst-type-0: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_content_protection@dp-mst-type-0.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) * igt@kms_content_protection@legacy: * shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@kms_content_protection@legacy.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +1 other test fail * igt@kms_cursor_crc@cursor-offscreen-128x128@pipe-a-hdmi-a-3: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-128x128@pipe-a-hdmi-a-3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +46 other tests dmesg-warn * igt@kms_cursor_crc@cursor-offscreen-32x32: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html> (Intel XE#2320<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +1 other test skip * igt@kms_cursor_crc@cursor-onscreen-512x512: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html> (Intel XE#2321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +1 other test skip * igt@kms_cursor_crc@cursor-rapid-movement-512x170: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> (Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +2 other tests skip * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +49 other tests skip * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) * igt@kms_dsc@dsc-fractional-bpp-with-bpc: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html> (Intel XE#2244<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) * igt@kms_fbcon_fbt@fbc-suspend: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@kms_fbcon_fbt@fbc-suspend.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-3/igt@kms_fbcon_fbt@fbc-suspend.html> (Intel XE#2958<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2958>) * igt@kms_fbcon_fbt@psr: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_fbcon_fbt@psr.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>) * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) * igt@kms_flip@2x-flip-vs-suspend: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test abort * igt@kms_flip@2x-flip-vs-suspend@ab-dp2-hdmi-a3: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ab-dp2-hdmi-a3.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ab-dp2-hdmi-a3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +18 other tests dmesg-fail * igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend@ac-dp2-hdmi-a3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +9 other tests dmesg-fail * igt@kms_flip@2x-plain-flip-fb-recreate: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +3 other tests skip * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2: * shard-bmg: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +10 other tests dmesg-fail * igt@kms_flip@flip-vs-expired-vblank-interruptible: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2: * shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html> (Intel XE#3486<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486>) * igt@kms_flip@flip-vs-expired-vblank@a-dp4: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321> / Intel XE#3487<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487>) * igt@kms_flip@flip-vs-expired-vblank@c-dp4: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> / Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321> / Intel XE#3487<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487>) +1 other test fail * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6: * shard-dg2-set2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +8 other tests fail * igt@kms_flip@flip-vs-suspend: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip@flip-vs-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html> (Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049> / Intel XE#2597<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) * igt@kms_flip@flip-vs-suspend@d-dp4: * shard-dg2-set2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@flip-vs-suspend@d-dp4.html> (Intel XE#2049<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049>) * igt@kms_flip@plain-flip-fb-recreate@b-edp1: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +4 other tests fail * igt@kms_flip@plain-flip-fb-recreate@c-edp1: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html> (Intel XE#3149<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149> / Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +2 other tests fail * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: * shard-bmg: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +4 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) +2 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +2 other tests skip * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +23 other tests skip * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: * shard-bmg: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +10 other tests fail * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +24 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +2 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +10 other tests skip * igt@kms_frontbuffer_tracking@fbc-suspend: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html> (Intel XE#2932<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932>) * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +7 other tests skip * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +2 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +4 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +19 other tests skip * igt@kms_joiner@invalid-modeset-big-joiner: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) * igt@kms_plane_lowres@tiling-x: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_plane_lowres@tiling-x.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_plane_lowres@tiling-x.html> (Intel XE#3452<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3452>) +1 other test incomplete * igt@kms_plane_scaling@2x-scaler-multi-pipe: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +14 other tests skip * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html> (Intel XE#2566<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +5 other tests skip * igt@kms_plane_scaling@planes-scaler-unity-scaling: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_plane_scaling@planes-scaler-unity-scaling.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html> (Intel XE#2566<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566>) * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip * igt@kms_pm_backlight@fade-with-suspend: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_pm_backlight@fade-with-suspend.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) * igt@kms_pm_dc@dc5-retention-flops: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@kms_pm_dc@dc5-retention-flops.html> (Intel XE#3309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309>) * igt@kms_pm_rpm@dpms-mode-unset-lpsp: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439>) * igt@kms_pm_rpm@dpms-non-lpsp: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_pm_rpm@dpms-non-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_pm_rpm@dpms-non-lpsp.html> (Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>) * igt@kms_pm_rpm@legacy-planes-dpms: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_pm_rpm@legacy-planes-dpms.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) +2 other tests skip * igt@kms_pm_rpm@modeset-lpsp-stress: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress.html> (Intel XE#1439<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439> / Intel XE#3141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141>) * igt@kms_pm_rpm@modeset-non-lpsp: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) +1 other test skip * igt@kms_pm_rpm@modeset-stress-extra-wait: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_pm_rpm@modeset-stress-extra-wait.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_pm_rpm@modeset-stress-extra-wait.html> (Intel XE#2864<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864>) * igt@kms_pm_rpm@universal-planes: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_pm_rpm@universal-planes.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-1/igt@kms_pm_rpm@universal-planes.html> (Intel XE#2042<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042>) * igt@kms_pm_rpm@universal-planes@plane-77: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_pm_rpm@universal-planes@plane-77.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-1/igt@kms_pm_rpm@universal-planes@plane-77.html> (Intel XE#3184<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184>) * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +4 other tests skip * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (Intel XE#2387<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387>) +1 other test skip * igt@kms_psr@fbc-pr-basic: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_psr@fbc-pr-basic.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) * igt@kms_psr@psr2-no-drrs: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_psr@psr2-no-drrs.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234> / Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +12 other tests skip * igt@kms_psr@psr2-primary-render: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_psr@psr2-primary-render.html> (Intel XE#2234<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234>) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#2330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330>) * igt@kms_setmode@invalid-clone-single-crtc: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html> (Intel XE#899<https://gitlab.freedesktop.org/drm/xe/kernel/issues/899>) * igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +8 other tests dmesg-warn * igt@kms_vblank@ts-continuation-dpms-suspend: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_vblank@ts-continuation-dpms-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-suspend.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-6: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-6.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-6.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_vrr@cmrr: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_vrr@cmrr.html> (Intel XE#2168<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>) * igt@kms_vrr@seamless-rr-switch-drrs: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-drrs.html> (Intel XE#1499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499>) +1 other test skip * igt@sriov_basic@enable-vfs-autoprobe-off: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@sriov_basic@enable-vfs-autoprobe-off.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html> (Intel XE#1280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) * igt@xe_eudebug_online@reset-with-attention: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_eudebug_online@reset-with-attention.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +2 other tests skip * igt@xe_eudebug_online@stopped-thread: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@xe_eudebug_online@stopped-thread.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +8 other tests skip * igt@xe_evict@evict-beng-mixed-many-threads-large: * shard-bmg: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) * igt@xe_exec_balancer@once-parallel-rebind: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_exec_balancer@once-parallel-rebind.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_exec_balancer@once-parallel-rebind.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +151 other tests skip * igt@xe_exec_balancer@twice-virtual-basic: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_exec_balancer@twice-virtual-basic.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +83 other tests skip * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html> (Intel XE#2322<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +4 other tests skip * igt@xe_exec_fault_mode@many-execqueues-rebind-imm: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-rebind-imm.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) * igt@xe_exec_fault_mode@once-basic: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_exec_fault_mode@once-basic.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +7 other tests skip * igt@xe_exec_reset@cm-close-execqueues-close-fd: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-1/igt@xe_exec_reset@cm-close-execqueues-close-fd.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-5/igt@xe_exec_reset@cm-close-execqueues-close-fd.html> (Intel XE#1081<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081>) * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_exec_reset@cm-close-execqueues-close-fd.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_exec_reset@cm-close-execqueues-close-fd.html> (Intel XE#1081<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081>) * igt@xe_exec_reset@parallel-close-fd-no-exec: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_exec_reset@parallel-close-fd-no-exec.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@xe_exec_reset@parallel-close-fd-no-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) +3 other tests dmesg-warn * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>) * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) +1 other test dmesg-warn * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html> (Intel XE#2229<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>) * igt@xe_module_load@load: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_module_load@load.html> (Intel XE#2457<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457>) * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_module_load@load.html> (Intel XE#378<https://gitlab.freedesktop.org/drm/xe/kernel/issues/378>) * igt@xe_oa@buffer-fill@rcs-0: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_oa@buffer-fill@rcs-0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_oa@buffer-fill@rcs-0.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +98 other tests dmesg-warn * igt@xe_oa@mmio-triggered-reports@ccs-0: * shard-lnl: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-1/igt@xe_oa@mmio-triggered-reports@ccs-0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-3/igt@xe_oa@mmio-triggered-reports@ccs-0.html> (Intel XE#2249<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249>) +1 other test fail * igt@xe_oa@syncs-userptr-wait-cfg: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_oa@syncs-userptr-wait-cfg.html> (Intel XE#3573<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573>) +1 other test skip * igt@xe_pm@d3cold-multiple-execs: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html> (Intel XE#2284<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284>) +2 other tests skip * igt@xe_pm@s2idle-basic-exec: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_pm@s2idle-basic-exec.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_pm@s2idle-multiple-execs: * shard-bmg: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@xe_pm@s2idle-multiple-execs.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_pm@s3-basic: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_pm@s3-basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@xe_pm@s3-basic.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_pm@s3-basic.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_pm@s3-basic.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) * igt@xe_pm@s3-vm-bind-unbind-all: * shard-dg2-set2: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html> -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@xe_pm@s3-vm-bind-unbind-all.html> (Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>) * igt@xe_pm@s4-vm-bind-unbind-all: * shard-bmg: PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_pm@s4-vm-bind-unbind-all.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@xe_pm@s4-vm-bind-unbind-all.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_query@multigpu-query-invalid-extension: * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_query@multigpu-query-invalid-extension.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) * igt@xe_sriov_flr@flr-vf1-clear: * shard-dg2-set2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_sriov_flr@flr-vf1-clear.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>) * shard-bmg: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>) Possible fixes * igt@core_getstats: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@core_getstats.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@core_getstats.html> +1 other test pass * igt@core_getversion@basic: * shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@core_getversion@basic.html> (Intel XE#3440<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@core_getversion@basic.html> * igt@core_hotunplug@unbind-rebind: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@core_hotunplug@unbind-rebind.html> (Intel XE#1885<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@core_hotunplug@unbind-rebind.html> * igt@core_setmaster@master-drop-set-user: * shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html> (Intel XE#3339<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@core_setmaster@master-drop-set-user.html> * igt@fbdev@nullptr: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@fbdev@nullptr.html> (Intel XE#2134<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@fbdev@nullptr.html> * igt@kms_big_fb@linear-64bpp-rotate-180: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-180.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-180.html> +10 other tests pass * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: * shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html> +1 other test pass * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: * shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html> +1 other test pass * igt@kms_cursor_crc@cursor-onscreen-128x128: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x128.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-128x128.html> +18 other tests pass * igt@kms_cursor_crc@cursor-suspend: * shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_cursor_crc@cursor-suspend.html> +5 other tests pass * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> +1 other test pass * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html> * igt@kms_flip@2x-plain-flip-interruptible: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_flip@2x-plain-flip-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_flip@2x-plain-flip-interruptible.html> +1 other test pass * igt@kms_flip@basic-flip-vs-wf_vblank: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip@basic-flip-vs-wf_vblank.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@basic-flip-vs-wf_vblank.html> +2 other tests pass * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html> (Intel XE#886<https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html> +5 other tests pass * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html> +5 other tests pass * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html> +22 other tests pass * igt@kms_hdr@bpc-switch-suspend: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_hdr@bpc-switch-suspend.html> (Intel XE#2705<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@kms_hdr@bpc-switch-suspend.html> * igt@kms_plane@pixel-format-source-clamping: * shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_plane@pixel-format-source-clamping.html> (Intel XE#1035<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035> / Intel XE#2566<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_plane@pixel-format-source-clamping.html> * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: * shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html> (Intel XE#616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/616>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html> +3 other tests pass * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: * shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html> +2 other tests pass * igt@kms_pm_dc@dc5-psr: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html> (Intel XE#718<https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html> +1 other test pass * igt@kms_pm_dc@dc6-dpms: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html> (Intel XE#1430<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html> * igt@kms_pm_dc@deep-pkgc: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html> (Intel XE#2029<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html> * igt@kms_pm_rpm@modeset-stress-extra-wait: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_pm_rpm@modeset-stress-extra-wait.html> +3 other tests pass * igt@kms_rotation_crc@sprite-rotation-180: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-180.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-180.html> +80 other tests pass * igt@kms_setmode@clone-exclusive-crtc: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html> (Intel XE#1435<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_setmode@clone-exclusive-crtc.html> * igt@kms_vrr@cmrr@pipe-a-edp-1: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html> (Intel XE#2159<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html> +1 other test pass * igt@xe_exec_basic@many-execqueues-bindexecqueue: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_exec_basic@many-execqueues-bindexecqueue.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-5/igt@xe_exec_basic@many-execqueues-bindexecqueue.html> * igt@xe_exec_fault_mode@twice-bindexecqueue: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_exec_fault_mode@twice-bindexecqueue.html> +3 other tests pass * igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate: * shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html> (Intel XE#3515<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html> * igt@xe_exec_threads@threads-mixed-basic: * shard-lnl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-4/igt@xe_exec_threads@threads-mixed-basic.html> -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-7/igt@xe_exec_threads@threads-mixed-basic.html> * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html> * igt@xe_live_ktest@xe_mocs: * shard-lnl: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-5/igt@xe_live_ktest@xe_mocs.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-4/igt@xe_live_ktest@xe_mocs.html> * igt@xe_module_load@reload-no-display: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_module_load@reload-no-display.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_module_load@reload-no-display.html> +1 other test pass * igt@xe_oa@oa-regs-whitelisted: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted.html> (Intel XE#2514<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted.html> * igt@xe_pat@display-vs-wb-transient: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_pat@display-vs-wb-transient.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@xe_pat@display-vs-wb-transient.html> +104 other tests pass * igt@xe_pm@s2idle-vm-bind-userptr: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-userptr.html> (Intel XE#1616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-userptr.html> * igt@xe_pm@s3-basic-exec: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_pm@s3-basic-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_pm@s3-basic-exec.html> +1 other test pass * igt@xe_pm@s3-vm-bind-userptr: * shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468> / Intel XE#569<https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_pm@s3-vm-bind-userptr.html> * igt@xe_pm_residency@toggle-gt-c6: * shard-lnl: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html> (Intel XE#958<https://gitlab.freedesktop.org/drm/xe/kernel/issues/958>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html> * igt@xe_vm@munmap-style-unbind-userptr-many-all: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_vm@munmap-style-unbind-userptr-many-all.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> PASS<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_vm@munmap-style-unbind-userptr-many-all.html> +145 other tests pass Warnings * igt@core_hotunplug@hotrebind: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@core_hotunplug@hotrebind.html> (Intel XE#1885<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@core_hotunplug@hotrebind.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@core_hotunplug@hotunplug-rescan: * shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@core_hotunplug@hotunplug-rescan.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@core_hotunplug@hotunplug-rescan.html> (Intel XE#1885<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885>) * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#623<https://gitlab.freedesktop.org/drm/xe/kernel/issues/623>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) * igt@kms_async_flips@invalid-async-flip: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html> (Intel XE#873<https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>) * igt@kms_atomic_interruptible@legacy-setmode: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_atomic_interruptible@legacy-setmode.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_atomic_interruptible@legacy-setmode.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_big_fb@4-tiled-8bpp-rotate-270: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +2 other tests skip * igt@kms_big_fb@4-tiled-8bpp-rotate-90: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +2 other tests skip * igt@kms_big_fb@linear-64bpp-rotate-270: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-270.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-270.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +1 other test skip * igt@kms_big_fb@x-tiled-64bpp-rotate-270: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html> (Intel XE#316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +1 other test skip * igt@kms_big_fb@y-tiled-16bpp-rotate-270: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +2 other tests skip * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +5 other tests skip * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> (Intel XE#607<https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>) * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (Intel XE#1124<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +8 other tests skip * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +6 other tests skip * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html> (Intel XE#2191<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +2 other tests skip * igt@kms_bw@linear-tiling-2-displays-3840x2160p: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html> (Intel XE#367<https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests skip * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +9 other tests skip * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +5 other tests skip * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: * shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#616<https://gitlab.freedesktop.org/drm/xe/kernel/issues/616>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test skip * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html> (Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (Intel XE#3442<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> (Intel XE#3442<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442>) * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +9 other tests skip * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787<https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html> (Intel XE#2907<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907>) +1 other test skip * igt@kms_cdclk@mode-transition-all-outputs: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html> (Intel XE#314<https://gitlab.freedesktop.org/drm/xe/kernel/issues/314>) * igt@kms_chamelium_color@ctm-limited-range: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_chamelium_color@ctm-limited-range.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) +1 other test skip * igt@kms_chamelium_color@gamma: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_chamelium_color@gamma.html> (Intel XE#306<https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_chamelium_color@gamma.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +2 other tests skip * igt@kms_chamelium_frames@hdmi-cmp-planes-random: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +9 other tests skip * igt@kms_chamelium_frames@hdmi-frame-dump: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_chamelium_frames@hdmi-frame-dump.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_chamelium_frames@hdmi-frame-dump.html> (Intel XE#373<https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +10 other tests skip * igt@kms_content_protection@dp-mst-lic-type-0: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-0.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) * igt@kms_content_protection@dp-mst-lic-type-1: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-1.html> (Intel XE#307<https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) * igt@kms_content_protection@lic-type-0: * shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_content_protection@lic-type-0.html> (Intel XE#1178<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_content_protection@lic-type-0.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) * igt@kms_content_protection@lic-type-1: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_content_protection@lic-type-1.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_content_protection@lic-type-1.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +7 other tests skip * igt@kms_content_protection@srm@pipe-a-dp-2: * shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_content_protection@srm@pipe-a-dp-2.html> (Intel XE#2715<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_content_protection@srm@pipe-a-dp-2.html> (Intel XE#2715<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test incomplete * igt@kms_cursor_crc@cursor-random-512x170: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_cursor_crc@cursor-random-512x170.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_cursor_crc@cursor-random-512x170.html> (Intel XE#308<https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) * igt@kms_cursor_edge_walk@128x128-left-edge: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_cursor_edge_walk@128x128-left-edge.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_cursor_edge_walk@128x128-left-edge.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> (Intel XE#309<https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +2 other tests skip * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html> (Intel XE#2291<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html> (Intel XE#877<https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#323<https://gitlab.freedesktop.org/drm/xe/kernel/issues/323>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +1 other test skip * igt@kms_cursor_legacy@torture-move: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_cursor_legacy@torture-move.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_cursor_legacy@torture-move.html> (Intel XE#3184<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184>) * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html> (Intel XE#2141<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141>) +1 other test fail * igt@kms_dsc@dsc-with-output-formats-with-bpc: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +4 other tests skip * igt@kms_fbcon_fbt@fbc: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html> (Intel XE#1695<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_fbcon_fbt@fbc.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_fbcon_fbt@psr: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_fbcon_fbt@psr.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_fbcon_fbt@psr.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) * igt@kms_fbcon_fbt@psr-suspend: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_fbcon_fbt@psr-suspend.html> (Intel XE#776<https://gitlab.freedesktop.org/drm/xe/kernel/issues/776>) * igt@kms_feature_discovery@display-4x: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_feature_discovery@display-4x.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_feature_discovery@display-4x.html> (Intel XE#1138<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138>) * igt@kms_feature_discovery@dp-mst: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_feature_discovery@dp-mst.html> (Intel XE#1137<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_flip@2x-flip-vs-expired-vblank: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#2882<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882>) * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#310<https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +2 other tests dmesg-warn * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321> / Intel XE#3486<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html> (Intel XE#3486<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html> (Intel XE#3321<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321> / Intel XE#3487<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487>) * igt@kms_flip@2x-flip-vs-wf_vblank: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_flip@2x-flip-vs-wf_vblank.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_flip@2x-flip-vs-wf_vblank.html> (Intel XE#310<https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>) +1 other test skip * igt@kms_flip@2x-nonexisting-fb-interruptible: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (Intel XE#310<https://gitlab.freedesktop.org/drm/xe/kernel/issues/310>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> (Intel XE#2316<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) * igt@kms_flip@absolute-wf_vblank: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip@absolute-wf_vblank.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip@absolute-wf_vblank.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_flip@flip-vs-expired-vblank: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html> (Intel XE#301<https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +2 other tests skip * shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel XE#2380<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380>) * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: * shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html> (Intel XE#2293<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +3 other tests skip * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +7 other tests skip * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +4 other tests skip * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +6 other tests skip * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +1 other test skip * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +6 other tests fail * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: * shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html> -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) * igt@kms_frontbuffer_tracking@fbc-1p-rte: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-rte.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +3 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) +1 other test fail * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +9 other tests dmesg-fail * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html> (Intel XE#2333<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +5 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +19 other tests skip * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#2311<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +4 other tests skip * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +6 other tests skip * igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html> (Intel XE#651<https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +15 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +19 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +5 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) +11 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +4 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +1 other test skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel XE#658<https://gitlab.freedesktop.org/drm/xe/kernel/issues/658>) * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +28 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html> (Intel XE#656<https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +5 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: * shard-bmg: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2313<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html> (Intel XE#2312<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +6 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#653<https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +2 other tests skip * igt@kms_hdr@bpc-switch-suspend: * shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_hdr@bpc-switch-suspend.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_hdr@bpc-switch-suspend.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) * igt@kms_joiner@invalid-modeset-big-joiner: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#346<https://gitlab.freedesktop.org/drm/xe/kernel/issues/346>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) * igt@kms_joiner@invalid-modeset-force-ultra-joiner: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> (Intel XE#2925<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925>) +1 other test skip * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#356<https://gitlab.freedesktop.org/drm/xe/kernel/issues/356>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) * igt@kms_plane@pixel-format: * shard-dg2-set2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_plane@pixel-format.html> (Intel XE#1035<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035> / Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_plane@pixel-format.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> (Intel XE#2763<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 other test skip * igt@kms_pm_backlight@brightness-with-dpms: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_pm_backlight@brightness-with-dpms.html> (Intel XE#2938<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) * igt@kms_pm_backlight@fade-with-suspend: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html> (Intel XE#870<https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) +1 other test skip * igt@kms_pm_dc@dc3co-vpb-simulation: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_pm_dc@dc3co-vpb-simulation.html> (Intel XE#1122<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) * igt@kms_pm_dc@dc5-psr: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html> (Intel XE#1129<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) * igt@kms_pm_dc@dc6-psr: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_pm_dc@dc6-psr.html> (Intel XE#1129<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) * igt@kms_pm_rpm@basic-pci-d3-state: * shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_pm_rpm@basic-pci-d3-state.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_pm_rpm@basic-pci-d3-state.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> (Intel XE#836<https://gitlab.freedesktop.org/drm/xe/kernel/issues/836>) * igt@kms_pm_rpm@system-suspend-modeset: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html> (Intel XE#2446<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_pm_rpm@system-suspend-modeset.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#2042<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +12 other tests skip * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html> (Intel XE#1489<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +7 other tests skip * igt@kms_psr@fbc-psr-no-drrs: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_psr@fbc-psr-no-drrs.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_psr@fbc-psr-no-drrs.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +2 other tests skip * igt@kms_psr@fbc-psr-sprite-plane-onoff: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-onoff.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-onoff.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +4 other tests skip * igt@kms_psr@pr-cursor-plane-onoff: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_psr@pr-cursor-plane-onoff.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_psr@pr-cursor-plane-onoff.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) +6 other tests skip * igt@kms_psr@psr-cursor-plane-move: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr@psr-cursor-plane-move.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@kms_psr@psr-cursor-plane-move.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) * igt@kms_psr@psr-sprite-plane-onoff: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_psr@psr-sprite-plane-onoff.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html> (Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) * igt@kms_psr@psr2-primary-render: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_psr@psr2-primary-render.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_psr@psr2-primary-render.html> (Intel XE#2850<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929<https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +9 other tests skip * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136> / Intel XE#2351<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (Intel XE#2939<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939>) * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (Intel XE#2136<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (Intel XE#2939<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939>) * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +3 other tests skip * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#1127<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +2 other tests skip * igt@kms_rotation_crc@sprite-rotation-270: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-270.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-270.html> (Intel XE#3414<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +2 other tests skip * igt@kms_tv_load_detect@load-detect: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html> (Intel XE#330<https://gitlab.freedesktop.org/drm/xe/kernel/issues/330>) * igt@kms_vrr@cmrr: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@kms_vrr@cmrr.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@kms_vrr@cmrr.html> (Intel XE#2168<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>) * igt@kms_vrr@flip-dpms: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@kms_vrr@flip-dpms.html> (Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@kms_vrr@flip-dpms.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +7 other tests skip * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (Intel XE#2423<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / i915#2575<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> (Intel XE#1091<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091> / Intel XE#2849<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849>) * igt@xe_compute_preempt@compute-preempt-many: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_compute_preempt@compute-preempt-many.html> (Intel XE#1280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) * igt@xe_compute_preempt@compute-threadgroup-preempt: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt.html> (Intel XE#1280<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280> / Intel XE#455<https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) * igt@xe_copy_basic@mem-copy-linear-0xfd: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html> (Intel XE#1123<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfd.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) * igt@xe_copy_basic@mem-set-linear-0x369: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x369.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x369.html> (Intel XE#1126<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126>) * igt@xe_eudebug@basic-close: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_eudebug@basic-close.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_eudebug@basic-close.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +10 other tests skip * igt@xe_eudebug@basic-vm-bind: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_eudebug@basic-vm-bind.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@xe_eudebug@basic-vm-bind.html> (Intel XE#2905<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +7 other tests skip * igt@xe_evict@evict-beng-large-external: * shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_evict@evict-beng-large-external.html> -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_evict@evict-beng-large-external.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) * igt@xe_evict@evict-beng-large-multi-vm-cm: * shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html> (Intel XE#1600<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_evict@evict-beng-large-multi-vm-cm.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) * igt@xe_evict@evict-beng-mixed-many-threads-small: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#402<https://gitlab.freedesktop.org/drm/xe/kernel/issues/402>) * igt@xe_evict@evict-mixed-many-threads-large: * shard-dg2-set2: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) * igt@xe_evict@evict-mixed-many-threads-small: * shard-bmg: TIMEOUT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#1473<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / Intel XE#2472<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html> (Intel XE#1000<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000>) * igt@xe_exec_basic@no-exec-null-rebind: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_exec_basic@no-exec-null-rebind.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_exec_basic@no-exec-null-rebind.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) * igt@xe_exec_fault_mode@once-basic-imm: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_exec_fault_mode@once-basic-imm.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_exec_fault_mode@once-basic-imm.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +23 other tests skip * igt@xe_exec_fault_mode@once-bindexecqueue-imm: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html> (Intel XE#288<https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +23 other tests skip * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html> (Intel XE#2360<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360>) * igt@xe_exec_reset@cm-close-execqueues-close-fd: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_exec_reset@cm-close-execqueues-close-fd.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@xe_exec_reset@cm-close-execqueues-close-fd.html> (Intel XE#1081<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081>) * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) +1 other test dmesg-warn * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: * shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html> (Intel XE#3343<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: * shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +4 other tests skip * shard-bmg: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html> (Intel XE#3499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: * shard-bmg: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html> (Intel XE#3499<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499>) * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) +2 other tests dmesg-warn * igt@xe_live_ktest@xe_bo: * shard-bmg: INCOMPLETE<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-1/igt@xe_live_ktest@xe_bo.html> (Intel XE#2998<https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-7/igt@xe_live_ktest@xe_bo.html> (Intel XE#1192<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>) * igt@xe_module_load@reload-no-display: * shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_module_load@reload-no-display.html> (Intel XE#3467<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467>) -> FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_module_load@reload-no-display.html> (Intel XE#3546<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546>) * igt@xe_oa@missing-sample-flags: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_oa@missing-sample-flags.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_oa@missing-sample-flags.html> (Intel XE#3573<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573>) +5 other tests skip * igt@xe_oa@syncs-ufence-wait: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_oa@syncs-ufence-wait.html> (Intel XE#3573<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_oa@syncs-ufence-wait.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +4 other tests skip * igt@xe_pat@pat-index-xe2: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_pat@pat-index-xe2.html> (Intel XE#977<https://gitlab.freedesktop.org/drm/xe/kernel/issues/977>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_pat@pat-index-xe2.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) * igt@xe_pat@pat-index-xelpg: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html> (Intel XE#979<https://gitlab.freedesktop.org/drm/xe/kernel/issues/979>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) * igt@xe_peer2peer@write: * shard-dg2-set2: FAIL<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-463/igt@xe_peer2peer@write.html> (Intel XE#1173<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_peer2peer@write.html> (Intel XE#1061<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061>) * igt@xe_pm@d3hot-mmap-vram: * shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_pm@d3hot-mmap-vram.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_pm@d3hot-mmap-vram.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +1 other test skip * igt@xe_pm@d3hot-multiple-execs: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_pm@d3hot-multiple-execs.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-435/igt@xe_pm@d3hot-multiple-execs.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_pm@s2idle-basic-exec: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-436/igt@xe_pm@s2idle-basic-exec.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727> / Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) * igt@xe_pm@s4-vm-bind-userptr: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-466/igt@xe_pm@s4-vm-bind-userptr.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-432/igt@xe_pm@s4-vm-bind-userptr.html> (Intel XE#1794<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>) * igt@xe_query@multigpu-query-invalid-cs-cycles: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_query@multigpu-query-invalid-cs-cycles.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) * igt@xe_query@multigpu-query-uc-fw-version-guc: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-guc.html> (Intel XE#944<https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +2 other tests skip * igt@xe_sriov_flr@flr-each-isolation: * shard-dg2-set2: SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html> (Intel XE#3342<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_sriov_flr@flr-each-isolation.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: * shard-bmg: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> (Intel XE#3468<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-bmg-4/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) * igt@xe_vm@mixed-misaligned-binds-1611661312: * shard-dg2-set2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-432/igt@xe_vm@mixed-misaligned-binds-1611661312.html> (Intel XE#1727<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-434/igt@xe_vm@mixed-misaligned-binds-1611661312.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +5 other tests skip * igt@xe_wedged@wedged-mode-toggle: * shard-dg2-set2: ABORT<https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8125/shard-dg2-435/igt@xe_wedged@wedged-mode-toggle.html> (Intel XE#3075<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075> / Intel XE#3084<https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084>) -> SKIP<https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12194/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.html> (Intel XE#1130<https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) Build changes * IGT: IGT_8125 -> IGTPW_12194 * Linux: xe-2275-6510562075d8541c218e72188f9ef339f8ba371f -> xe-2276-ae312905c5a9fc7ce599a74422f068725101c475 IGTPW_12194: 12194 IGT_8125: fbfda23ba003aab3454436d95c233dcf5e3bee54 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2275-6510562075d8541c218e72188f9ef339f8ba371f: 6510562075d8541c218e72188f9ef339f8ba371f xe-2276-ae312905c5a9fc7ce599a74422f068725101c475: ae312905c5a9fc7ce599a74422f068725101c475 [-- Attachment #2: Type: text/html, Size: 295604 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-11-26 13:43 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-25 16:34 [PATCH 0/3] Skip test if joiner display is connected Jeevan B 2024-11-25 16:34 ` [PATCH 1/3] lib/igt_kms: Add is_joiner_mode function Jeevan B 2024-11-25 16:34 ` [PATCH 2/3] tests/kms_async_flips: Skip async flips on joiner output Jeevan B 2024-11-26 12:11 ` Sharma, Swati2 2024-11-25 16:34 ` [PATCH 3/3] tests/kms_display_modes: Skip test if joiner display is connected Jeevan B 2024-11-25 23:59 ` ✓ Xe.CI.BAT: success for Skip test if joiner display is connected (rev2) Patchwork 2024-11-26 0:16 ` ✗ i915.CI.BAT: failure " Patchwork 2024-11-26 3:12 ` ✗ Xe.CI.Full: " Patchwork 2024-11-26 10:18 ` B, Jeevan
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox