* [PATCH i-g-t 0/3] Skip test if joiner display is connected
@ 2024-11-20 17:43 Jeevan B
2024-11-20 17:43 ` [PATCH i-g-t 1/3] lib/igt_kms: Add is_joiner_mode function Jeevan B
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Jeevan B @ 2024-11-20 17:43 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 (3):
lib/igt_kms: Add is_joiner_mode function
tests/kms_async_flips: Skip Async flips on joiner output
tests/kms_display_modes: Skip test if joiner display is connected
lib/igt_kms.c | 31 +++++++++++++++++++++++++++++++
lib/igt_kms.h | 1 +
tests/kms_async_flips.c | 6 ++++++
tests/kms_display_modes.c | 2 ++
4 files changed, 40 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH i-g-t 1/3] lib/igt_kms: Add is_joiner_mode function 2024-11-20 17:43 [PATCH i-g-t 0/3] Skip test if joiner display is connected Jeevan B @ 2024-11-20 17:43 ` Jeevan B 2024-11-21 18:05 ` Sharma, Swati2 2024-11-20 17:43 ` [PATCH i-g-t 2/3] tests/kms_async_flips: Skip Async flips on joiner output Jeevan B ` (4 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Jeevan B @ 2024-11-20 17:43 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Jeevan B Introduce a utility to check if bigjoiner or ultrajoiner mode is required based on requirement. Signed-off-by: Jeevan B <jeevan.b@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] 10+ messages in thread
* Re: [PATCH i-g-t 1/3] lib/igt_kms: Add is_joiner_mode function 2024-11-20 17:43 ` [PATCH i-g-t 1/3] lib/igt_kms: Add is_joiner_mode function Jeevan B @ 2024-11-21 18:05 ` Sharma, Swati2 0 siblings, 0 replies; 10+ messages in thread From: Sharma, Swati2 @ 2024-11-21 18:05 UTC (permalink / raw) To: Jeevan B, igt-dev, Santhosh Reddy Guddati Please add Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> He did similar changes in https://patchwork.freedesktop.org/patch/625225/?series=140349&rev=4 With this fixed, patch LGTM Reviewed-by: Swati Sharma <swati2.sharma@intel.com> On 20-11-2024 11:13 pm, Jeevan B wrote: > Introduce a utility to check if bigjoiner or ultrajoiner > mode is required based on requirement. > > Signed-off-by: Jeevan B <jeevan.b@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); ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t 2/3] tests/kms_async_flips: Skip Async flips on joiner output 2024-11-20 17:43 [PATCH i-g-t 0/3] Skip test if joiner display is connected Jeevan B 2024-11-20 17:43 ` [PATCH i-g-t 1/3] lib/igt_kms: Add is_joiner_mode function Jeevan B @ 2024-11-20 17:43 ` Jeevan B 2024-11-21 18:07 ` Sharma, Swati2 2024-11-20 17:43 ` [PATCH i-g-t 3/3] tests/kms_display_modes: Skip test if joiner display is connected Jeevan B ` (3 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Jeevan B @ 2024-11-20 17:43 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Jeevan B, Santhosh Reddy Guddati Async flips are disallowed with joiner, but the test commit still goes through and causes failures. Update the tests to skip on joiner outputs. Signed-off-by: Jeevan B <jeevan.b@intel.com> Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> --- tests/kms_async_flips.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c index 5dec71291..486c03b32 100644 --- a/tests/kms_async_flips.c +++ b/tests/kms_async_flips.c @@ -653,6 +653,9 @@ 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) { + /* TODO: Remove this workaround when Async+joiner is supported */ + igt_skip_on_f(is_joiner_mode(data->drm_fd, data->output), + "Joiner mode found, skipping the test\n"); test_init_fbs(data); test(data); } @@ -674,6 +677,9 @@ 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)) { + /* TODO: Remove workaround when Async+joiner is supported */ + igt_skip_on_f(is_joiner_mode(data->drm_fd, data->output), + "Joiner mode found, skipping the test\n"); test_init_fbs(data); test(data); } -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/kms_async_flips: Skip Async flips on joiner output 2024-11-20 17:43 ` [PATCH i-g-t 2/3] tests/kms_async_flips: Skip Async flips on joiner output Jeevan B @ 2024-11-21 18:07 ` Sharma, Swati2 0 siblings, 0 replies; 10+ messages in thread From: Sharma, Swati2 @ 2024-11-21 18:07 UTC (permalink / raw) To: Jeevan B, igt-dev; +Cc: Santhosh Reddy Guddati Hi Jeevan, Please use latest rev of Santhosh's patch https://patchwork.freedesktop.org/patch/625224/?series=140349&rev=4 On 20-11-2024 11:13 pm, Jeevan B wrote: > Async flips are disallowed with joiner, but the test commit still > goes through and causes failures. Update the tests to skip on > joiner outputs. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > --- > tests/kms_async_flips.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c > index 5dec71291..486c03b32 100644 > --- a/tests/kms_async_flips.c > +++ b/tests/kms_async_flips.c > @@ -653,6 +653,9 @@ 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) { > + /* TODO: Remove this workaround when Async+joiner is supported */ > + igt_skip_on_f(is_joiner_mode(data->drm_fd, data->output), > + "Joiner mode found, skipping the test\n"); > test_init_fbs(data); > test(data); > } > @@ -674,6 +677,9 @@ 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)) { > + /* TODO: Remove workaround when Async+joiner is supported */ > + igt_skip_on_f(is_joiner_mode(data->drm_fd, data->output), > + "Joiner mode found, skipping the test\n"); > test_init_fbs(data); > test(data); > } ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t 3/3] tests/kms_display_modes: Skip test if joiner display is connected 2024-11-20 17:43 [PATCH i-g-t 0/3] Skip test if joiner display is connected Jeevan B 2024-11-20 17:43 ` [PATCH i-g-t 1/3] lib/igt_kms: Add is_joiner_mode function Jeevan B 2024-11-20 17:43 ` [PATCH i-g-t 2/3] tests/kms_async_flips: Skip Async flips on joiner output Jeevan B @ 2024-11-20 17:43 ` Jeevan B 2024-11-21 18:49 ` Sharma, Swati2 2024-11-20 18:53 ` ✓ Fi.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Jeevan B @ 2024-11-20 17:43 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. Signed-off-by: Jeevan B <jeevan.b@intel.com> --- tests/kms_display_modes.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c index f1d8ab03d..a2ab8f267 100644 --- a/tests/kms_display_modes.c +++ b/tests/kms_display_modes.c @@ -318,6 +318,8 @@ 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, skipping the test\n"); 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] 10+ messages in thread
* Re: [PATCH i-g-t 3/3] tests/kms_display_modes: Skip test if joiner display is connected 2024-11-20 17:43 ` [PATCH i-g-t 3/3] tests/kms_display_modes: Skip test if joiner display is connected Jeevan B @ 2024-11-21 18:49 ` Sharma, Swati2 0 siblings, 0 replies; 10+ messages in thread From: Sharma, Swati2 @ 2024-11-21 18:49 UTC (permalink / raw) To: Jeevan B, igt-dev Hi Jeevan, On 20-11-2024 11:13 pm, Jeevan B wrote: > 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. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/kms_display_modes.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c > index f1d8ab03d..a2ab8f267 100644 > --- a/tests/kms_display_modes.c > +++ b/tests/kms_display_modes.c > @@ -318,6 +318,8 @@ 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, skipping the test\n"); Add output name too in skip message. With this fixed, Patch LGTM Reviewed-by: Swati Sharma <swati2.sharma@intel.com> > data.mst_output[count++] = output; > if (output_is_dp_mst(&data, output, dp_mst_outputs)) > dp_mst_outputs++; ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for Skip test if joiner display is connected 2024-11-20 17:43 [PATCH i-g-t 0/3] Skip test if joiner display is connected Jeevan B ` (2 preceding siblings ...) 2024-11-20 17:43 ` [PATCH i-g-t 3/3] tests/kms_display_modes: Skip test if joiner display is connected Jeevan B @ 2024-11-20 18:53 ` Patchwork 2024-11-21 2:51 ` ✗ Xe.CI.Full: failure " Patchwork 2024-11-23 13:39 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-11-20 18:53 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3889 bytes --] == Series Details == Series: Skip test if joiner display is connected URL : https://patchwork.freedesktop.org/series/141614/ State : success == Summary == CI Bug Log - changes from IGT_8118 -> IGTPW_12149 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/index.html Participating hosts (46 -> 45) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12149 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-arls-5: [PASS][1] -> [ABORT][2] ([i915#12829]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-5/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/bat-arls-5/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [PASS][3] -> [ABORT][4] ([i915#12061]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-arls-5/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/bat-arls-5/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_module_load@load: - bat-twl-2: [DMESG-WARN][5] ([i915#1982]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/bat-twl-2/igt@i915_module_load@load.html * igt@i915_pm_rpm@module-reload: - bat-dg2-11: [FAIL][7] ([i915#12903]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@i915_pm_rpm@module-reload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/bat-dg2-11/igt@i915_pm_rpm@module-reload.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-apl-1: [DMESG-WARN][9] ([i915#12918]) -> [PASS][10] +2 other tests pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Warnings #### * igt@i915_selftest@live@workarounds: - bat-mtlp-8: [ABORT][11] ([i915#12061]) -> [ABORT][12] ([i915#12915]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/bat-mtlp-8/igt@i915_selftest@live@workarounds.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#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12915]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12915 [i915#12918]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12918 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8118 -> IGTPW_12149 * Linux: CI_DRM_15720 -> CI_DRM_15724 CI-20190529: 20190529 CI_DRM_15720: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15724: 0cb17ecec562c61d45997a2fced4e5ed99b31f99 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12149: 12149 IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/index.html [-- Attachment #2: Type: text/html, Size: 4720 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for Skip test if joiner display is connected 2024-11-20 17:43 [PATCH i-g-t 0/3] Skip test if joiner display is connected Jeevan B ` (3 preceding siblings ...) 2024-11-20 18:53 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-11-21 2:51 ` Patchwork 2024-11-23 13:39 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-11-21 2:51 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev == Series Details == Series: Skip test if joiner display is connected URL : https://patchwork.freedesktop.org/series/141614/ State : failure == Summary == CI Bug Log - changes from XEIGT_8118_full -> XEIGTPW_12149_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12149_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12149_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_12149_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_8118/shard-bmg-5/igt@kms_async_flips@crc.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_async_flips@crc.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind: - shard-dg2-set2: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-b-edp-1: - shard-lnl: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-b-edp-1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-b-edp-1.html * igt@kms_flip@basic-plain-flip@a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][7] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_flip@basic-plain-flip@a-hdmi-a6.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-lnl: [PASS][8] -> [FAIL][9] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-plane-move.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_scaling_modes@scaling-mode-center@pipe-a-edp-1: - shard-lnl: [PASS][10] -> [DMESG-WARN][11] +10 other tests dmesg-warn [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_scaling_modes@scaling-mode-center@pipe-a-edp-1.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-5/igt@kms_scaling_modes@scaling-mode-center@pipe-a-edp-1.html * igt@xe_exec_basic@many-basic-defer-mmap: - shard-bmg: [PASS][12] -> [DMESG-WARN][13] +10 other tests dmesg-warn [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_exec_basic@many-basic-defer-mmap.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@xe_exec_basic@many-basic-defer-mmap.html #### Warnings #### * igt@kms_flip@basic-plain-flip: - shard-dg2-set2: [SKIP][14] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][15] [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip@basic-plain-flip.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_flip@basic-plain-flip.html * igt@xe_dma_buf_sync@export-dma-buf-many-write-sync: - shard-lnl: [DMESG-WARN][16] ([Intel XE#3466]) -> [DMESG-WARN][17] [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_dma_buf_sync@export-dma-buf-many-write-sync.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-5/igt@xe_dma_buf_sync@export-dma-buf-many-write-sync.html * igt@xe_dma_buf_sync@export-dma-buf-once-write-sync: - shard-dg2-set2: [SKIP][18] ([Intel XE#1130]) -> [DMESG-WARN][19] [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_dma_buf_sync@export-dma-buf-once-write-sync.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@xe_dma_buf_sync@export-dma-buf-once-write-sync.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [FAIL][20] ([Intel XE#2136]) -> [FAIL][21] +1 other test fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_module_load@reload-no-display.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@xe_module_load@reload-no-display.html Known issues ------------ Here are the changes found in XEIGTPW_12149_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getversion@basic: - shard-dg2-set2: NOTRUN -> [FAIL][22] ([Intel XE#3440]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@core_getversion@basic.html * igt@core_hotunplug@unplug-rescan: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1885]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@core_hotunplug@unplug-rescan.html * igt@core_setmaster@master-drop-set-root: - shard-dg2-set2: [PASS][24] -> [FAIL][25] ([Intel XE#3130] / [Intel XE#3249]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@core_setmaster@master-drop-set-root.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html * igt@fbdev@write: - shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#2134]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@fbdev@write.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@fbdev@write.html * igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][28] -> [DMESG-WARN][29] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1407]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2327]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#316]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#3225]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: [PASS][35] -> [DMESG-FAIL][36] ([Intel XE#3468]) +13 other tests dmesg-fail [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#1124]) +7 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1124]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1124]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2191]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#367]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2314] / [Intel XE#2894]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#2191]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#367]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2887]) +7 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2887]) +10 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#787]) +153 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#455] / [Intel XE#787]) +24 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#3433]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][51] -> [DMESG-WARN][52] ([Intel XE#3468]) +1 other test dmesg-warn [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#3468]) +1 other test incomplete [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1152]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#373]) +7 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-7/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-max: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2325]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2252]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#3278]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][60] ([Intel XE#1178]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#307]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][62] ([Intel XE#1178]) +1 other test fail [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2320]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#2321]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x64: - shard-dg2-set2: [PASS][65] -> [SKIP][66] ([Intel XE#2423] / [i915#2575]) +99 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-64x64.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-64x64.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1424]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2321]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-bmg: [PASS][69] -> [INCOMPLETE][70] ([Intel XE#3226]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2291]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#309]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][74] -> [DMESG-WARN][75] ([Intel XE#877]) +2 other tests dmesg-warn [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2291]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_dirtyfb@default-dirtyfb-ioctl@a-edp-1: - shard-lnl: [PASS][77] -> [DMESG-WARN][78] ([Intel XE#3466]) +65 other tests dmesg-warn [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_dirtyfb@default-dirtyfb-ioctl@a-edp-1.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-7/igt@kms_dirtyfb@default-dirtyfb-ioctl@a-edp-1.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#1508]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1340]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#3070]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#2244]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2244]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [PASS][84] -> [SKIP][85] ([Intel XE#2373]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_feature_discovery@display-2x.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1138]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1137]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3: - shard-bmg: [PASS][88] -> [FAIL][89] ([Intel XE#3486]) +1 other test fail [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3: - shard-bmg: [PASS][90] -> [FAIL][91] ([Intel XE#3321] / [Intel XE#3486]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: [PASS][92] -> [FAIL][93] ([Intel XE#3321] / [Intel XE#3487]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: [PASS][94] -> [FAIL][95] ([Intel XE#2882]) +1 other test fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2316]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1421]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][98] ([Intel XE#3468]) +13 other tests dmesg-warn [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_flip@2x-plain-flip-ts-check-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-bmg: [PASS][99] -> [SKIP][100] ([Intel XE#2316]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#886]) +6 other tests fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][103] ([Intel XE#301]) +5 other tests fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [FAIL][104] ([Intel XE#3486]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][105] ([Intel XE#301] / [Intel XE#3486]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [PASS][106] -> [INCOMPLETE][107] ([Intel XE#2597] / [Intel XE#3468]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@c-dp2: - shard-bmg: [PASS][108] -> [DMESG-FAIL][109] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-fail [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-suspend@c-dp2.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_flip@flip-vs-suspend@c-dp2.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a3: - shard-bmg: [PASS][110] -> [INCOMPLETE][111] ([Intel XE#1727] / [Intel XE#2635] / [Intel XE#3468]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1397] / [Intel XE#1745]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1397]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode: - shard-bmg: [PASS][114] -> [DMESG-FAIL][115] ([Intel XE#2705] / [Intel XE#3468]) +2 other tests dmesg-fail [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling: - shard-dg2-set2: [PASS][116] -> [SKIP][117] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#455]) +7 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#2136]) +29 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1401]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2293]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#651]) +7 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][125] -> [SKIP][126] ([Intel XE#2136]) +29 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][127] ([Intel XE#2333]) +8 other tests fail [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt: - shard-bmg: [PASS][128] -> [INCOMPLETE][129] ([Intel XE#2050]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2311]) +18 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#656]) +21 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#651]) +8 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2352]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2313]) +15 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2312]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#653]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1503]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-3/igt@kms_hdr@static-toggle-dpms.html * igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256: - shard-bmg: NOTRUN -> [DMESG-FAIL][138] ([Intel XE#3468]) +5 other tests dmesg-fail [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#2763]) +11 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2763]) +9 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2763]) +8 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-lnl: [PASS][143] -> [DMESG-WARN][144] ([Intel XE#2566] / [Intel XE#3466]) +1 other test dmesg-warn [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][145] -> [FAIL][146] ([Intel XE#718]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [PASS][147] -> [DMESG-WARN][148] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-warn [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg2-set2: [PASS][149] -> [ABORT][150] ([Intel XE#1727] / [Intel XE#3468]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#1439] / [Intel XE#3141]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-6/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][152] -> [SKIP][153] ([Intel XE#2446]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@universal-planes@plane-59: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][154] ([Intel XE#3468]) +8 other tests dmesg-warn [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_pm_rpm@universal-planes@plane-59.html * igt@kms_pm_rpm@universal-planes@plane-77: - shard-dg2-set2: NOTRUN -> [ABORT][155] ([Intel XE#3468]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_pm_rpm@universal-planes@plane-77.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#2893]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#1489]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2387]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-2/igt@kms_psr2_su@page_flip-p010.html - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1128]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-dpms: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1406]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-3/igt@kms_psr@fbc-pr-dpms.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#2136] / [Intel XE#2351]) +16 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#3414]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@kms_rotation_crc@bad-pixel-format.html - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#3414]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-8/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#2423] / [i915#2575]) +35 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/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-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2330]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][168] -> [SKIP][169] ([Intel XE#1435]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vblank@wait-forked@pipe-a-hdmi-a-3: - shard-bmg: [PASS][170] -> [DMESG-WARN][171] ([Intel XE#3468]) +44 other tests dmesg-warn [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_vblank@wait-forked@pipe-a-hdmi-a-3.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_vblank@wait-forked@pipe-a-hdmi-a-3.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][172] -> [FAIL][173] ([Intel XE#2159]) +1 other test fail [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#1499]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_vrr@flip-basic.html * igt@kms_vrr@max-min: - shard-lnl: [PASS][175] -> [FAIL][176] ([Intel XE#1522]) +1 other test fail [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_vrr@max-min.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-4/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-fb-id: - shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#756]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-8/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#756]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-3/igt@kms_writeback@writeback-pixel-formats.html * igt@testdisplay: - shard-dg2-set2: [PASS][179] -> [SKIP][180] ([Intel XE#2423]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@testdisplay.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@testdisplay.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#2905]) +6 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug_online@resume-dss: - shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#2905]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-5/igt@xe_eudebug_online@resume-dss.html * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram: - shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#2905]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: NOTRUN -> [TIMEOUT][184] ([Intel XE#1473]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#688]) +4 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#1130]) +72 other tests skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html * igt@xe_exec_basic@many-basic-defer-mmap: - shard-lnl: [PASS][187] -> [DMESG-WARN][188] ([Intel XE#3514]) +1 other test dmesg-warn [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@xe_exec_basic@many-basic-defer-mmap.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-5/igt@xe_exec_basic@many-basic-defer-mmap.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#2322]) +8 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#1392]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html * igt@xe_exec_fault_mode@twice-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#288]) +5 other tests skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-prefetch.html - shard-lnl: [PASS][192] -> [DMESG-FAIL][193] ([Intel XE#3466]) +4 other tests dmesg-fail [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@xe_exec_fault_mode@twice-userptr-prefetch.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-7/igt@xe_exec_fault_mode@twice-userptr-prefetch.html * igt@xe_exec_reset@cm-close-execqueues-close-fd: - shard-lnl: NOTRUN -> [DMESG-WARN][194] ([Intel XE#3466]) +3 other tests dmesg-warn [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-7/igt@xe_exec_reset@cm-close-execqueues-close-fd.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early: - shard-bmg: [PASS][195] -> [DMESG-WARN][196] ([Intel XE#3467]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init: - shard-bmg: NOTRUN -> [DMESG-WARN][197] ([Intel XE#3467]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html * igt@xe_live_ktest@xe_migrate: - shard-bmg: [PASS][198] -> [SKIP][199] ([Intel XE#1192]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_live_ktest@xe_migrate.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-3/igt@xe_live_ktest@xe_migrate.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][200] ([Intel XE#1999]) +1 other test fail [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#2457]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@xe_module_load@force-load.html - shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#378]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@xe_module_load@force-load.html * igt@xe_oa@invalid-remove-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][203] ([Intel XE#2541]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@xe_oa@invalid-remove-userspace-config.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][204] ([Intel XE#2248]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][205] ([Intel XE#2284] / [Intel XE#366]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-4/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: NOTRUN -> [SKIP][206] ([Intel XE#2284] / [Intel XE#366]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@xe_pm@d3cold-mmap-vram.html - shard-bmg: NOTRUN -> [SKIP][207] ([Intel XE#2284]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s4-mocs: - shard-bmg: [PASS][208] -> [DMESG-WARN][209] ([Intel XE#2280] / [Intel XE#3468]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_pm@s4-mocs.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@xe_pm@s4-mocs.html * igt@xe_pm_residency@cpg-basic: - shard-lnl: NOTRUN -> [SKIP][210] ([Intel XE#584]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-1/igt@xe_pm_residency@cpg-basic.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][211] ([Intel XE#944]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#3342]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-2/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_vm@large-split-binds-536870912: - shard-dg2-set2: [PASS][213] -> [SKIP][214] ([Intel XE#1130]) +184 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_vm@large-split-binds-536870912.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@xe_vm@large-split-binds-536870912.html * igt@xe_wedged@basic-wedged: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][215] ([Intel XE#2919]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@xe_wedged@basic-wedged.html - shard-bmg: NOTRUN -> [DMESG-WARN][216] ([Intel XE#2919]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@xe_wedged@basic-wedged.html #### Possible fixes #### * igt@core_getversion@all-cards: - shard-dg2-set2: [FAIL][217] ([Intel XE#3440]) -> [PASS][218] [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@core_getversion@all-cards.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@core_getversion@all-cards.html * igt@core_hotunplug@hotreplug: - shard-bmg: [DMESG-WARN][219] ([Intel XE#3521]) -> [PASS][220] [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@core_hotunplug@hotreplug.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@unbind-rebind: - shard-dg2-set2: [SKIP][221] ([Intel XE#1885]) -> [PASS][222] +2 other tests pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_hotunplug@unbind-rebind.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@core_hotunplug@unbind-rebind.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [SKIP][223] ([Intel XE#3453]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html * igt@fbdev@unaligned-read: - shard-dg2-set2: [SKIP][225] ([Intel XE#2134]) -> [PASS][226] +2 other tests pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@fbdev@unaligned-read.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@fbdev@unaligned-read.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [FAIL][227] ([Intel XE#911]) -> [PASS][228] +3 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [SKIP][229] ([Intel XE#2423] / [i915#2575]) -> [PASS][230] +94 other tests pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-bmg: [INCOMPLETE][231] ([Intel XE#2613]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][233] ([Intel XE#2136]) -> [PASS][234] +27 other tests pass [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@4-tiled-addfb-size-overflow.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [DMESG-FAIL][235] ([Intel XE#3468]) -> [PASS][236] +26 other tests pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-lnl: [INCOMPLETE][237] ([Intel XE#3466]) -> [PASS][238] +1 other test pass [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2-set2: [INCOMPLETE][239] ([Intel XE#1195] / [Intel XE#3226]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][241] ([Intel XE#877]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-dg2-set2: [FAIL][243] ([Intel XE#1475]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_dirtyfb@default-dirtyfb-ioctl@a-dp-2: - shard-bmg: [DMESG-WARN][245] -> [PASS][246] +1 other test pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_dirtyfb@default-dirtyfb-ioctl@a-dp-2.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_dirtyfb@default-dirtyfb-ioctl@a-dp-2.html * igt@kms_dp_aux_dev: - shard-dg2-set2: [SKIP][247] ([Intel XE#2423]) -> [PASS][248] +1 other test pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_dp_aux_dev.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_dp_aux_dev.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][249] ([Intel XE#3321] / [Intel XE#3486]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [INCOMPLETE][251] ([Intel XE#2597]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: - shard-bmg: [DMESG-WARN][253] ([Intel XE#3468]) -> [PASS][254] +125 other tests pass [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-bmg: [DMESG-WARN][255] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@flip-vs-panning-interruptible.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-3/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@wf_vblank-ts-check: - shard-lnl: [FAIL][257] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip@wf_vblank-ts-check@c-edp1: - shard-lnl: [FAIL][259] ([Intel XE#886]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: - shard-dg2-set2: [SKIP][261] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][262] +14 other tests pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html * igt@kms_plane_cursor@primary: - shard-lnl: [DMESG-WARN][263] ([Intel XE#3466]) -> [PASS][264] +38 other tests pass [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_plane_cursor@primary.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-5/igt@kms_plane_cursor@primary.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-bmg: [DMESG-WARN][265] ([Intel XE#2566]) -> [PASS][266] +1 other test pass [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][267] ([Intel XE#718]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@cursor: - shard-dg2-set2: [SKIP][269] ([Intel XE#2446]) -> [PASS][270] +2 other tests pass [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_rpm@cursor.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@kms_pm_rpm@cursor.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][271] ([Intel XE#2883]) -> [PASS][272] +2 other tests pass [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][273] ([Intel XE#899]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vblank@query-busy: - shard-bmg: [INCOMPLETE][275] ([Intel XE#1727]) -> [PASS][276] +3 other tests pass [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_vblank@query-busy.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-2/igt@kms_vblank@query-busy.html * igt@kms_vrr@negative-basic: - shard-bmg: [INCOMPLETE][277] -> [PASS][278] +2 other tests pass [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_vrr@negative-basic.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_vrr@negative-basic.html * igt@xe_exec_balancer@many-execqueues-virtual-rebind: - shard-dg2-set2: [DMESG-WARN][279] ([Intel XE#1727]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@xe_exec_balancer@many-execqueues-virtual-rebind.html * igt@xe_exec_basic@many-null-rebind: - shard-dg2-set2: [SKIP][281] ([Intel XE#1130]) -> [PASS][282] +199 other tests pass [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@xe_exec_basic@many-null-rebind.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [INCOMPLETE][283] ([Intel XE#1195]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race: - shard-lnl: [DMESG-FAIL][285] ([Intel XE#3466]) -> [PASS][286] +3 other tests pass [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-7/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][287] ([Intel XE#1192]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@xe_live_ktest@xe_mocs.html * igt@xe_module_load@reload-no-display: - shard-bmg: [DMESG-WARN][289] ([Intel XE#3467]) -> [PASS][290] +2 other tests pass [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_module_load@reload-no-display.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@xe_module_load@reload-no-display.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][291] ([Intel XE#569]) -> [PASS][292] +1 other test pass [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s3-basic-exec.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [DMESG-WARN][293] ([Intel XE#569]) -> [PASS][294] +1 other test pass [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm_residency@gt-c6-freeze@gt1: - shard-bmg: [DMESG-FAIL][295] ([Intel XE#1727]) -> [PASS][296] +1 other test pass [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt1.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-2/igt@xe_pm_residency@gt-c6-freeze@gt1.html * igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer: - shard-bmg: [DMESG-WARN][297] ([Intel XE#1727]) -> [PASS][298] +3 other tests pass [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-3/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html #### Warnings #### * igt@core_hotunplug@hotunbind-rebind: - shard-dg2-set2: [DMESG-WARN][299] ([Intel XE#3521]) -> [SKIP][300] ([Intel XE#1885]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@core_hotunplug@hotunbind-rebind.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@core_hotunplug@hotunbind-rebind.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][301] ([Intel XE#2423] / [i915#2575]) -> [SKIP][302] ([Intel XE#623]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][303] ([Intel XE#2423] / [i915#2575]) -> [SKIP][304] ([Intel XE#873]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: [SKIP][305] ([Intel XE#2136]) -> [SKIP][306] ([Intel XE#316]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][307] ([Intel XE#316]) -> [SKIP][308] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-bmg: [DMESG-WARN][309] ([Intel XE#3468]) -> [DMESG-FAIL][310] ([Intel XE#3468]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][311] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][312] ([Intel XE#316]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][313] ([Intel XE#316]) -> [SKIP][314] ([Intel XE#2136]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: [DMESG-WARN][315] ([Intel XE#2705]) -> [DMESG-WARN][316] ([Intel XE#2705] / [Intel XE#3468]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][317] ([Intel XE#2136]) -> [SKIP][318] ([Intel XE#1124]) +8 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: [SKIP][319] ([Intel XE#1124]) -> [SKIP][320] ([Intel XE#2136]) +8 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-dg2-set2: [SKIP][321] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][322] ([Intel XE#1124]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][323] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][324] ([Intel XE#619]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][325] ([Intel XE#2136]) -> [SKIP][326] ([Intel XE#610]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][327] ([Intel XE#1124]) -> [SKIP][328] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p: - shard-dg2-set2: [SKIP][329] ([Intel XE#2423] / [i915#2575]) -> [SKIP][330] ([Intel XE#367]) +4 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][331] ([Intel XE#2423] / [i915#2575]) -> [SKIP][332] ([Intel XE#2191]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: [SKIP][333] ([Intel XE#2191]) -> [SKIP][334] ([Intel XE#2423] / [i915#2575]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][335] ([Intel XE#367]) -> [SKIP][336] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][337] ([Intel XE#2136]) -> [SKIP][338] ([Intel XE#2907]) +2 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][339] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][340] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][341] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][342] ([Intel XE#2136]) +9 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][343] ([Intel XE#3442]) -> [SKIP][344] ([Intel XE#2136]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [FAIL][345] ([Intel XE#616]) -> [SKIP][346] ([Intel XE#2136]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][347] ([Intel XE#2907]) -> [SKIP][348] ([Intel XE#2136]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][349] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][350] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][351] ([Intel XE#2136]) -> [SKIP][352] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][353] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][354] ([Intel XE#314]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@degamma: - shard-dg2-set2: [SKIP][355] ([Intel XE#2423] / [i915#2575]) -> [SKIP][356] ([Intel XE#306]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_chamelium_color@degamma.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][357] ([Intel XE#373]) -> [SKIP][358] ([Intel XE#2423] / [i915#2575]) +15 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][359] ([Intel XE#2423] / [i915#2575]) -> [SKIP][360] ([Intel XE#373]) +13 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_color@invalid-degamma-lut-sizes: - shard-dg2-set2: [DMESG-WARN][361] ([Intel XE#1727]) -> [SKIP][362] ([Intel XE#2423] / [i915#2575]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_color@invalid-degamma-lut-sizes.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_color@invalid-degamma-lut-sizes.html * igt@kms_content_protection@atomic: - shard-bmg: [FAIL][363] ([Intel XE#1178]) -> [SKIP][364] ([Intel XE#2341]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_content_protection@atomic.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: [SKIP][365] ([Intel XE#2423] / [i915#2575]) -> [FAIL][366] ([Intel XE#1178]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][367] ([Intel XE#307]) -> [SKIP][368] ([Intel XE#2423] / [i915#2575]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-dg2-set2: [FAIL][369] ([Intel XE#1178]) -> [SKIP][370] ([Intel XE#2423] / [i915#2575]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_content_protection@srm.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][371] ([Intel XE#308]) -> [SKIP][372] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x170.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: [SKIP][373] ([Intel XE#2423] / [i915#2575]) -> [SKIP][374] ([Intel XE#308]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][375] ([Intel XE#2423] / [i915#2575]) -> [SKIP][376] ([Intel XE#323]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [SKIP][377] ([Intel XE#323]) -> [SKIP][378] ([Intel XE#2423] / [i915#2575]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dsc@dsc-basic: - shard-dg2-set2: [SKIP][379] ([Intel XE#455]) -> [SKIP][380] ([Intel XE#2351]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_dsc@dsc-basic.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][381] ([Intel XE#455]) -> [SKIP][382] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_dsc@dsc-with-bpc-formats.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [FAIL][383] ([Intel XE#1695]) -> [DMESG-FAIL][384] ([Intel XE#3468]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_fbcon_fbt@fbc.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2-set2: [SKIP][385] ([Intel XE#2136]) -> [INCOMPLETE][386] ([Intel XE#3468]) +1 other test incomplete [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_fbcon_fbt@fbc-suspend.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][387] ([Intel XE#776]) -> [SKIP][388] ([Intel XE#2136]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_fbcon_fbt@psr.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][389] ([Intel XE#2423] / [i915#2575]) -> [SKIP][390] ([Intel XE#701]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_feature_discovery@chamelium.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][391] ([Intel XE#301]) -> [SKIP][392] ([Intel XE#2423] / [i915#2575]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank: - shard-dg2-set2: [DMESG-FAIL][393] ([Intel XE#1727]) -> [SKIP][394] ([Intel XE#2423] / [i915#2575]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [DMESG-WARN][395] ([Intel XE#3468]) -> [FAIL][396] ([Intel XE#2882]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html - shard-dg2-set2: [SKIP][397] ([Intel XE#2423] / [i915#2575]) -> [FAIL][398] ([Intel XE#301]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp2: - shard-bmg: [DMESG-WARN][399] ([Intel XE#3468]) -> [FAIL][400] ([Intel XE#3486]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp2.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp2.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-dg2-set2: [INCOMPLETE][401] ([Intel XE#1195] / [Intel XE#1727]) -> [SKIP][402] ([Intel XE#2136]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg2-set2: [INCOMPLETE][403] ([Intel XE#1195] / [Intel XE#3468]) -> [SKIP][404] ([Intel XE#2136] / [Intel XE#2351]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][405] ([Intel XE#455]) -> [SKIP][406] ([Intel XE#2136]) +2 other tests skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg2-set2: [SKIP][407] ([Intel XE#2136]) -> [SKIP][408] ([Intel XE#455]) +2 other tests skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][409] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][410] ([Intel XE#455]) +4 other tests skip [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][411] ([Intel XE#2311]) -> [SKIP][412] ([Intel XE#2312]) +13 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][413] ([Intel XE#2136]) -> [SKIP][414] ([Intel XE#651]) +22 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][415] ([Intel XE#651]) -> [SKIP][416] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: [SKIP][417] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][418] ([Intel XE#651]) +7 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc: - shard-bmg: [FAIL][419] ([Intel XE#2333]) -> [DMESG-FAIL][420] ([Intel XE#3468]) +3 other tests dmesg-fail [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-dg2-set2: [INCOMPLETE][421] ([Intel XE#1195]) -> [SKIP][422] ([Intel XE#2136]) [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-rte.html - shard-bmg: [INCOMPLETE][423] ([Intel XE#3468]) -> [FAIL][424] ([Intel XE#2333]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [FAIL][425] ([Intel XE#2333]) -> [SKIP][426] ([Intel XE#2312]) +5 other tests skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-bmg: [DMESG-FAIL][427] ([Intel XE#3468]) -> [SKIP][428] ([Intel XE#2312]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [DMESG-FAIL][429] ([Intel XE#3468]) -> [FAIL][430] ([Intel XE#2333]) +9 other tests fail [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2-set2: [INCOMPLETE][431] ([Intel XE#1195] / [Intel XE#3468]) -> [SKIP][432] ([Intel XE#2136]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][433] ([Intel XE#658]) -> [SKIP][434] ([Intel XE#2136] / [Intel XE#2351]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][435] ([Intel XE#651]) -> [SKIP][436] ([Intel XE#2136]) +25 other tests skip [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][437] ([Intel XE#2136]) -> [SKIP][438] ([Intel XE#653]) +30 other tests skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][439] ([Intel XE#2313]) -> [SKIP][440] ([Intel XE#2312]) +13 other tests skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: [SKIP][441] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][442] ([Intel XE#653]) +11 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][443] ([Intel XE#653]) -> [SKIP][444] ([Intel XE#2136]) +25 other tests skip [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][445] ([Intel XE#653]) -> [SKIP][446] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][447] ([Intel XE#2136]) -> [SKIP][448] ([Intel XE#2927]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][449] ([Intel XE#2136]) -> [SKIP][450] ([Intel XE#346]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: [SKIP][451] ([Intel XE#2925]) -> [SKIP][452] ([Intel XE#2136]) [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][453] ([Intel XE#2423] / [i915#2575]) -> [SKIP][454] ([Intel XE#356]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: [SKIP][455] ([Intel XE#2423] / [i915#2575]) -> [SKIP][456] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2-set2: [SKIP][457] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][458] ([Intel XE#2423] / [i915#2575]) +1 other test skip [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2-set2: [SKIP][459] ([Intel XE#2136]) -> [SKIP][460] ([Intel XE#870]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_backlight@basic-brightness.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][461] ([Intel XE#2938]) -> [SKIP][462] ([Intel XE#2136]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_pm_backlight@brightness-with-dpms.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][463] ([Intel XE#870]) -> [SKIP][464] ([Intel XE#2136]) +2 other tests skip [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_pm_backlight@fade.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][465] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][466] ([Intel XE#1129]) [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@basic-rte: - shard-dg2-set2: [ABORT][467] ([Intel XE#3468]) -> [SKIP][468] ([Intel XE#2446]) +1 other test skip [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_pm_rpm@basic-rte.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@legacy-planes-dpms: - shard-dg2-set2: [SKIP][469] ([Intel XE#2446]) -> [DMESG-WARN][470] ([Intel XE#3468]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_rpm@legacy-planes-dpms.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_pm_rpm@legacy-planes-dpms.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-bmg: [INCOMPLETE][471] ([Intel XE#2864]) -> [INCOMPLETE][472] ([Intel XE#2864] / [Intel XE#3468]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_pm_rpm@universal-planes: - shard-dg2-set2: [SKIP][473] ([Intel XE#2446]) -> [ABORT][474] ([Intel XE#3468]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_rpm@universal-planes.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_pm_rpm@universal-planes.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-dg2-set2: [DMESG-WARN][475] ([Intel XE#2042]) -> [SKIP][476] ([Intel XE#2446]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@universal-planes-dpms.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-dg2-set2: [SKIP][477] ([Intel XE#1489]) -> [SKIP][478] ([Intel XE#2136]) +7 other tests skip [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][479] ([Intel XE#2136]) -> [SKIP][480] ([Intel XE#1489]) +9 other tests skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-set2: [SKIP][481] ([Intel XE#1122]) -> [SKIP][482] ([Intel XE#2136]) +1 other test skip [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_psr2_su@page_flip-p010.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][483] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][484] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_psr@fbc-pr-sprite-plane-onoff.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-dpms: - shard-dg2-set2: [SKIP][485] ([Intel XE#2136]) -> [SKIP][486] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_psr@fbc-psr2-dpms.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@kms_psr@fbc-psr2-dpms.html * igt@kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][487] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][488] ([Intel XE#2136]) +12 other tests skip [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_psr@pr-sprite-blt.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-primary-page-flip: - shard-dg2-set2: [SKIP][489] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][490] ([Intel XE#2351]) [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_psr@psr-primary-page-flip.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr-sprite-blt: - shard-dg2-set2: [SKIP][491] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][492] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr@psr-sprite-blt.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_psr@psr-sprite-blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][493] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][494] ([Intel XE#2939]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][495] ([Intel XE#2136]) -> [SKIP][496] ([Intel XE#2939]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: [SKIP][497] ([Intel XE#2423] / [i915#2575]) -> [SKIP][498] ([Intel XE#3414]) +1 other test skip [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-270.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: [SKIP][499] ([Intel XE#3414]) -> [SKIP][500] ([Intel XE#2423] / [i915#2575]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-90.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][501] ([Intel XE#2426]) -> [FAIL][502] ([Intel XE#1729]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [SKIP][503] ([Intel XE#2423] / [i915#2575]) -> [FAIL][504] ([Intel XE#1729]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][505] ([Intel XE#2426]) -> [SKIP][506] ([Intel XE#2509]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: [SKIP][507] ([Intel XE#455]) -> [SKIP][508] ([Intel XE#2423] / [i915#2575]) +6 other tests skip [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_vrr@flip-dpms.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - shard-dg2-set2: [SKIP][509] ([Intel XE#2423] / [i915#2575]) -> [SKIP][510] ([Intel XE#455]) +14 other tests skip [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_vrr@flipline.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg2-set2: [SKIP][511] ([Intel XE#2423] / [i915#2575]) -> [SKIP][512] ([Intel XE#2168]) [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_vrr@lobf.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][513] ([Intel XE#2423] / [i915#2575]) -> [SKIP][514] ([Intel XE#756]) +1 other test skip [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_writeback@writeback-fb-id.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: [SKIP][515] ([Intel XE#756]) -> [SKIP][516] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_writeback@writeback-pixel-formats.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][517] ([Intel XE#2423] / [i915#2575]) -> [SKIP][518] ([Intel XE#1091] / [Intel XE#2849]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][519] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][520] ([Intel XE#1130]) [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][521] ([Intel XE#1130]) -> [SKIP][522] ([Intel XE#1123]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][523] ([Intel XE#1123]) -> [SKIP][524] ([Intel XE#1130]) [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][525] ([Intel XE#1130]) -> [SKIP][526] ([Intel XE#1126]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: [SKIP][527] ([Intel XE#2905]) -> [SKIP][528] ([Intel XE#1130]) +14 other tests skip [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_eudebug@basic-vm-access-parameters.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@xe_eudebug@basic-vm-access-parameters.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][529] ([Intel XE#1473]) -> [SKIP][530] ([Intel XE#1130]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_basic@twice-userptr: - shard-dg2-set2: [DMESG-WARN][531] ([Intel XE#1727]) -> [SKIP][532] ([Intel XE#1130]) +3 other tests skip [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_exec_basic@twice-userptr.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@xe_exec_basic@twice-userptr.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: [SKIP][533] ([Intel XE#288]) -> [SKIP][534] ([Intel XE#1130]) +33 other tests skip [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_fault_mode@once-rebind-imm: - shard-dg2-set2: [SKIP][535] ([Intel XE#1130]) -> [SKIP][536] ([Intel XE#288]) +31 other tests skip [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_exec_fault_mode@once-rebind-imm.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@xe_exec_fault_mode@once-rebind-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: [SKIP][537] ([Intel XE#2360]) -> [SKIP][538] ([Intel XE#1130]) [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: - shard-dg2-set2: [SKIP][539] ([Intel XE#1130]) -> [SKIP][540] ([Intel XE#2360]) [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: [SKIP][541] ([Intel XE#1130]) -> [SKIP][542] ([Intel XE#2905]) +11 other tests skip [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_fault_injection@inject-fault-probe-function-xe_device_create: - shard-dg2-set2: [DMESG-WARN][543] ([Intel XE#3467]) -> [SKIP][544] ([Intel XE#1130]) +2 other tests skip [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-dg2-set2: [DMESG-WARN][545] ([Intel XE#3343]) -> [SKIP][546] ([Intel XE#1130]) [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-dg2-set2: [SKIP][547] ([Intel XE#1130]) -> [DMESG-WARN][548] ([Intel XE#3343]) +1 other test dmesg-warn [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-dg2-set2: [SKIP][549] ([Intel XE#1130]) -> [DMESG-WARN][550] ([Intel XE#3467]) [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-bmg: [DMESG-FAIL][551] ([Intel XE#3467]) -> [FAIL][552] ([Intel XE#3499] / [Intel XE#3539]) [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [FAIL][553] ([Intel XE#3499]) -> [FAIL][554] ([Intel XE#3499] / [Intel XE#3539]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-lnl: [FAIL][555] ([Intel XE#3499]) -> [FAIL][556] ([Intel XE#3499] / [Intel XE#3539]) +3 other tests fail [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-lnl-6/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-bmg: [FAIL][557] ([Intel XE#3499]) -> [DMESG-FAIL][558] ([Intel XE#3467] / [Intel XE#3468]) [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-3/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][559] ([Intel XE#3467]) -> [DMESG-FAIL][560] ([Intel XE#3467] / [Intel XE#3468]) [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [DMESG-WARN][561] ([Intel XE#3467]) -> [DMESG-WARN][562] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_gt_freq@freq_suspend: - shard-dg2-set2: [SKIP][563] ([Intel XE#1130]) -> [DMESG-WARN][564] ([Intel XE#3468]) +1 other test dmesg-warn [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_gt_freq@freq_suspend.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@xe_gt_freq@freq_suspend.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][565] ([Intel XE#1130]) -> [SKIP][566] ([Intel XE#255]) [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_huc_copy@huc_copy.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_bo: - shard-bmg: [INCOMPLETE][567] ([Intel XE#2998]) -> [SKIP][568] ([Intel XE#1192]) [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_live_ktest@xe_bo.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][569] ([Intel XE#2833]) -> [SKIP][570] ([Intel XE#1192]) [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@xe_live_ktest@xe_eudebug.html [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@xe_live_ktest@xe_eudebug.html * igt@xe_live_ktest@xe_mocs: - shard-dg2-set2: [SKIP][571] ([Intel XE#1192]) -> [FAIL][572] ([Intel XE#1999]) [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html * igt@xe_mmap@small-bar: - shard-dg2-set2: [SKIP][573] ([Intel XE#1130]) -> [SKIP][574] ([Intel XE#512]) [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_mmap@small-bar.html [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@xe_mmap@small-bar.html * igt@xe_module_load@reload: - shard-dg2-set2: [FAIL][575] ([Intel XE#2136]) -> [DMESG-WARN][576] ([Intel XE#3467]) [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_module_load@reload.html [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@xe_module_load@reload.html - shard-bmg: [DMESG-WARN][577] ([Intel XE#3468]) -> [DMESG-WARN][578] ([Intel XE#3467]) [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_module_load@reload.html [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-4/igt@xe_module_load@reload.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: [SKIP][579] ([Intel XE#2541]) -> [SKIP][580] ([Intel XE#1130]) +7 other tests skip [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_oa@polling-small-buf: - shard-dg2-set2: [SKIP][581] ([Intel XE#1130]) -> [SKIP][582] ([Intel XE#2541]) +8 other tests skip [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_oa@polling-small-buf.html [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-433/igt@xe_oa@polling-small-buf.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: [SKIP][583] ([Intel XE#1130]) -> [SKIP][584] ([Intel XE#2838] / [Intel XE#979]) [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pat@pat-index-xehpc.html [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@write: - shard-dg2-set2: [FAIL][585] ([Intel XE#1173]) -> [SKIP][586] ([Intel XE#1061]) [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_peer2peer@write.html [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-mmap-system: - shard-dg2-set2: [SKIP][587] ([Intel XE#1130]) -> [SKIP][588] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pm@d3cold-mmap-system.html [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-bmg: [DMESG-FAIL][589] ([Intel XE#3468]) -> [DMESG-WARN][590] ([Intel XE#1616] / [Intel XE#3468]) [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pm@s2idle-vm-bind-prefetch.html [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][591] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][592] ([Intel XE#1130]) [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-dg2-set2: [SKIP][593] ([Intel XE#1130]) -> [DMESG-WARN][594] ([Intel XE#3468] / [Intel XE#569]) [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_pm@s3-d3hot-basic-exec.html [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-463/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: [SKIP][595] ([Intel XE#579]) -> [SKIP][596] ([Intel XE#1130]) [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-config: - shard-dg2-set2: [SKIP][597] ([Intel XE#944]) -> [SKIP][598] ([Intel XE#1130]) [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_query@multigpu-query-config.html [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-434/igt@xe_query@multigpu-query-config.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][599] ([Intel XE#1130]) -> [SKIP][600] ([Intel XE#944]) +3 other tests skip [599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_query@multigpu-query-engines.html [600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-435/igt@xe_query@multigpu-query-engines.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][601] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][602] ([Intel XE#1130]) [601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_wedged@wedged-mode-toggle.html [602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [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#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#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#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [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#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [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#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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3130 [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#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [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#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3514 [Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521 [Intel XE#3539]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3539 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [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#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#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#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [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#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_8118 -> IGTPW_12149 * Linux: xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd -> xe-2256-0cb17ecec562c61d45997a2fced4e5ed99b31f99 IGTPW_12149: 12149 IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd xe-2256-0cb17ecec562c61d45997a2fced4e5ed99b31f99: 0cb17ecec562c61d45997a2fced4e5ed99b31f99 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12149/index.html ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for Skip test if joiner display is connected 2024-11-20 17:43 [PATCH i-g-t 0/3] Skip test if joiner display is connected Jeevan B ` (4 preceding siblings ...) 2024-11-21 2:51 ` ✗ Xe.CI.Full: failure " Patchwork @ 2024-11-23 13:39 ` Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-11-23 13:39 UTC (permalink / raw) To: B, Jeevan; +Cc: igt-dev == Series Details == Series: Skip test if joiner display is connected URL : https://patchwork.freedesktop.org/series/141614/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15724_full -> IGTPW_12149_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12149_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12149_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12149_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ccs@large-ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-14/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_eio@kms: - shard-tglu: NOTRUN -> [DMESG-WARN][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@gem_eio@kms.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-dg2: [PASS][3] -> [SKIP][4] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-8/igt@gem_lmem_evict@dontneed-evict-race.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@gem_lmem_evict@dontneed-evict-race.html * igt@i915_selftest@live: - shard-dg1: [PASS][5] -> [ABORT][6] +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg1-17/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@i915_selftest@live.html * igt@i915_selftest@live@sanitycheck: - shard-tglu: [PASS][7] -> [ABORT][8] +2 other tests abort [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-9/igt@i915_selftest@live@sanitycheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-2/igt@i915_selftest@live@sanitycheck.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg2: NOTRUN -> [WARN][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@i915_suspend@basic-s2idle-without-i915.html - shard-tglu-1: NOTRUN -> [ABORT][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-5/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-sliding-256x256: - shard-rkl: NOTRUN -> [DMESG-WARN][12] +14 other tests dmesg-warn [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x256.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [PASS][13] -> [DMESG-FAIL][14] +3 other tests dmesg-fail [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-1/igt@kms_flip@flip-vs-suspend.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html * igt@kms_hdmi_inject@inject-audio: - shard-rkl: [PASS][15] -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-7/igt@kms_hdmi_inject@inject-audio.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-4/igt@kms_hdmi_inject@inject-audio.html - shard-dg1: [PASS][17] -> [SKIP][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg1-14/igt@kms_hdmi_inject@inject-audio.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@kms_hdmi_inject@inject-audio.html - shard-tglu: [PASS][19] -> [SKIP][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane_alpha_blend@constant-alpha-mid: - shard-rkl: [PASS][21] -> [DMESG-WARN][22] +42 other tests dmesg-warn [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-3/igt@kms_plane_alpha_blend@constant-alpha-mid.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-1/igt@kms_plane_alpha_blend@constant-alpha-mid.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][23] +7 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html #### Warnings #### * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: [SKIP][24] ([i915#4270]) -> [TIMEOUT][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_tiled_swapping@non-threaded: - shard-rkl: [DMESG-FAIL][26] ([i915#12964]) -> [FAIL][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-1/igt@gem_tiled_swapping@non-threaded.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-4/igt@gem_tiled_swapping@non-threaded.html - shard-snb: [FAIL][28] ([i915#12941]) -> [FAIL][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-snb1/igt@gem_tiled_swapping@non-threaded.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-snb5/igt@gem_tiled_swapping@non-threaded.html * igt@i915_module_load@reload-no-display: - shard-tglu: [ABORT][30] -> [DMESG-WARN][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-5/igt@i915_module_load@reload-no-display.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-4/igt@i915_module_load@reload-no-display.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: [SKIP][32] ([i915#5354]) -> [SKIP][33] +10 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-5/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: [SKIP][34] ([i915#2575]) -> [SKIP][35] +6 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@2x-modeset-vs-vblank-race: - {shard-dg2-9}: NOTRUN -> [SKIP][36] +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-9/igt@kms_flip@2x-modeset-vs-vblank-race.html Known issues ------------ Here are the changes found in IGTPW_12149_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_allocator@default-alignment: - shard-dg2: [PASS][37] -> [SKIP][38] +30 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-3/igt@api_intel_allocator@default-alignment.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@api_intel_allocator@default-alignment.html * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#6230]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][40] ([i915#6230]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-4/igt@api_intel_bb@crc32.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#8414]) +26 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@drm_fdinfo@isolation@vecs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#8414]) +23 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@drm_fdinfo@virtual-busy: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#12506]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@drm_fdinfo@virtual-busy.html * igt@drm_fdinfo@virtual-idle: - shard-dg2: [PASS][44] -> [SKIP][45] ([i915#12506]) +7 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-7/igt@drm_fdinfo@virtual-idle.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@drm_fdinfo@virtual-idle.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][46] ([i915#3555] / [i915#9323]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][47] -> [INCOMPLETE][48] ([i915#12392] / [i915#7297]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#8562]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-7/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_engines@execute-one: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#2575]) +96 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@gem_ctx_engines@execute-one.html * igt@gem_ctx_persistence@engines-mixed: - shard-snb: NOTRUN -> [SKIP][51] ([i915#1099]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-snb6/igt@gem_ctx_persistence@engines-mixed.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#8555]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@hostile: - shard-dg1: NOTRUN -> [FAIL][53] ([i915#11980] / [i915#12580]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#5882]) +7 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#280]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-8/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][56] ([i915#10030] / [i915#7975] / [i915#8213]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-2/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][57] ([i915#5784]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4771]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][59] ([i915#6344]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4812]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@gem_exec_fence@submit.html - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4812]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3539] / [i915#4852]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3539]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3539] / [i915#4852]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3281]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3281]) +10 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-6/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3281]) +14 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4537] / [i915#4812]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][69] ([i915#11441]) +1 other test incomplete [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-6/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: NOTRUN -> [ABORT][70] ([i915#7975] / [i915#8213]) +1 other test abort [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html - shard-dg2: NOTRUN -> [ABORT][71] ([i915#7975] / [i915#8213]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4860]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4860]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#4613] / [i915#7582]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#12936]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4565]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@massive: - shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#4613]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][78] ([i915#4613]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-glk2/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#4613]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-dg1: NOTRUN -> [SKIP][80] ([i915#12193]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][81] ([i915#4613]) +5 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-random: - shard-dg2: [PASS][82] -> [SKIP][83] ([i915#12936]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-3/igt@gem_lmem_swapping@verify-random.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#284]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-7/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4083]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4077]) +16 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4077]) +10 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-3/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4083]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-3/igt@gem_mmap_wc@close.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3282]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-8/igt@gem_pread@snoop.html - shard-rkl: NOTRUN -> [SKIP][90] ([i915#3282]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-2/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3282]) +8 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][92] ([i915#2658]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-valid-protected-context: - shard-tglu: [PASS][93] -> [SKIP][94] ([i915#4270]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-4/igt@gem_pxp@create-valid-protected-context.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-4/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#12975]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][96] ([i915#12917]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4270]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4270]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#2575] / [i915#5190]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#5190] / [i915#8428]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#4079]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@gem_render_tiled_blits@basic.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4885]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4079]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4879]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#3297] / [i915#3323]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-5/igt@gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3297] / [i915#3323]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#3297]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#3297] / [i915#4880]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#3297]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#3297]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#3297]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][112] ([i915#3297]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_watchdog@default-virtual: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#12961]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@gem_watchdog@default-virtual.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#2527]) +5 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#2527]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-2/igt@gen9_exec_parse@bb-start-out.html - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#2527] / [i915#2856]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#2856]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#2527] / [i915#2856]) +4 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4881]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-8/igt@i915_fb_tiling.html * igt@i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#7178]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][121] ([i915#6412]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-5/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#8399]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-7/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [PASS][123] -> [FAIL][124] ([i915#12942]) +1 other test fail [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-accuracy.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][125] ([i915#2681]) +1 other test warn [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#11681] / [i915#6621]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_selftest@mock@memory_region: - shard-tglu: NOTRUN -> [DMESG-WARN][127] ([i915#9311]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@i915_selftest@mock@memory_region.html * igt@i915_selftest@perf: - shard-dg2: [PASS][128] -> [FAIL][129] ([i915#12867]) +4 other tests fail [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-6/igt@i915_selftest@perf.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@i915_selftest@perf.html * igt@intel_hwmon@hwmon-write: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#7707]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4212]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-y-tiled-legacy: - shard-dg2: [PASS][132] -> [SKIP][133] ([i915#2575] / [i915#5190]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-1/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-glk: NOTRUN -> [FAIL][134] ([i915#10991] / [i915#12766]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [FAIL][135] ([i915#10991]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#8709]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@crc: - shard-rkl: [PASS][137] -> [INCOMPLETE][138] ([i915#9878]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-7/igt@kms_async_flips@crc.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-5/igt@kms_async_flips@crc.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][140] ([i915#1769] / [i915#3555]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][141] ([i915#1769] / [i915#3555]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#5286]) +7 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html - shard-dg1: NOTRUN -> [SKIP][143] ([i915#5286]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#5286]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#5286]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5286]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3638]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4538] / [i915#5190]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-3/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#5190]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][150] +11 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][151] +102 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-2/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-180: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#4538]) +11 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-glk: NOTRUN -> [SKIP][153] +100 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-glk9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#6095]) +170 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#12313]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#6095]) +9 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#12313]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#12313]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][160] ([i915#12313]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#12805]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#6095]) +74 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#6095]) +17 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#6095]) +58 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-dp-4: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#10307] / [i915#6095]) +147 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-dp-4.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#3742]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-3/igt@kms_cdclk@mode-transition-all-outputs.html - shard-dg2: NOTRUN -> [SKIP][167] ([i915#11616] / [i915#7213]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@hdmi-audio: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#7828]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#7828]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-4/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#7828]) +9 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#7828]) +15 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#7828]) +13 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-7/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#3116] / [i915#3299]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3299]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3299]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-14/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#9424]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#7116]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#7116] / [i915#9424]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#3555]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#12976]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#12976]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#12976]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg1: NOTRUN -> [SKIP][183] ([i915#12976]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_edge_walk@256x256-left-edge: - shard-rkl: [PASS][184] -> [DMESG-WARN][185] ([i915#12964]) +1 other test dmesg-warn [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-3/igt@kms_cursor_edge_walk@256x256-left-edge.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-1/igt@kms_cursor_edge_walk@256x256-left-edge.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#5354]) +26 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#4103] / [i915#4213]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [PASS][188] -> [FAIL][189] ([i915#2346]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-snb6/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#9067]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][191] ([i915#9067]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3555]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#1769] / [i915#3555] / [i915#3804]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3804]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#1257]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#3840]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][197] ([i915#3840]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-10/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-3/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#3840]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#3469]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-7/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#3469]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#4881]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#9934]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3637]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#8381]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3637]) +5 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-2/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-snb: [PASS][208] -> [FAIL][209] ([i915#2122]) +1 other test fail [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-snb1/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9934]) +12 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@blocking-wf_vblank@b-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][211] ([i915#2122]) +2 other tests fail [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@kms_flip@blocking-wf_vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#8381]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend: - shard-dg1: [PASS][213] -> [DMESG-WARN][214] ([i915#4423]) +1 other test dmesg-warn [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg1-13/igt@kms_flip@flip-vs-suspend.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a4: - shard-dg1: NOTRUN -> [DMESG-WARN][215] ([i915#4423]) +1 other test dmesg-warn [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@kms_flip@flip-vs-suspend@d-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#2672]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#2587] / [i915#2672]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672]) +6 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2672]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#2587] / [i915#2672] / [i915#3555]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#3555]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#2672] / [i915#3555]) +6 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#2587] / [i915#2672]) +6 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [PASS][227] -> [FAIL][228] ([i915#6880]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#1825]) +10 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][230] +62 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][231] +29 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][232] +48 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#9766]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#3458]) +11 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#8708]) +29 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#3023]) +6 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#8708]) +14 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#3458]) +24 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_getfb@getfb-handle-closed: - shard-dg2: [PASS][239] -> [SKIP][240] ([i915#2575]) +136 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-8/igt@kms_getfb@getfb-handle-closed.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@kms_getfb@getfb-handle-closed.html * igt@kms_hdmi_inject@inject-audio: - shard-snb: [PASS][241] -> [SKIP][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-snb2/igt@kms_hdmi_inject@inject-audio.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-snb4/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228]) +4 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8228]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-hdr: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#8228]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-8/igt@kms_hdr@invalid-hdr.html - shard-rkl: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-2/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-dg2: [PASS][248] -> [SKIP][249] ([i915#3555] / [i915#8228]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-10/igt@kms_hdr@static-swap.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@kms_hdr@static-swap.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#10656]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#12388]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#12394]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#6301]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#6301]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-3/igt@kms_panel_fitting@legacy.html - shard-dg2: NOTRUN -> [SKIP][255] ([i915#6301]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][256] ([i915#12169]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][257] ([i915#10647]) +1 other test fail [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_cursor@viewport: - shard-rkl: [PASS][258] -> [DMESG-WARN][259] ([i915#12917]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-7/igt@kms_plane_cursor@viewport.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-4/igt@kms_plane_cursor@viewport.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8821]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#6953]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#2575] / [i915#9423]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#12247]) +17 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - shard-dg2: [PASS][264] -> [SKIP][265] ([i915#2575] / [i915#9423]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-8/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#12247]) +4 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#12247] / [i915#6953] / [i915#9423]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][268] ([i915#12247] / [i915#6953]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][269] ([i915#12247] / [i915#6953]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][270] ([i915#12247] / [i915#6953]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#12247]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#12247]) +8 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#12247]) +11 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#12343]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@kms_pm_backlight@brightness-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][275] ([i915#12343]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-snb: NOTRUN -> [SKIP][276] +71 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-snb6/igt@kms_pm_backlight@fade.html - shard-tglu: NOTRUN -> [SKIP][277] ([i915#9812]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-2/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#5354]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#9685]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#9685]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-4/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#9340]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#8430]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][283] -> [SKIP][284] ([i915#9519]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#12937]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][286] ([i915#9519]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#9519]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#9519]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][289] ([i915#9519]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#11520]) +6 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#11520]) +3 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk: NOTRUN -> [SKIP][292] ([i915#11520]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-glk2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#11520]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-snb: NOTRUN -> [SKIP][294] ([i915#11520]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-snb1/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#11520]) +4 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html - shard-dg1: NOTRUN -> [SKIP][296] ([i915#11520]) +9 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-14/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#9683]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@pr-sprite-render: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +9 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-2/igt@kms_psr@pr-sprite-render.html - shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#9732]) +6 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@kms_psr@pr-sprite-render.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#9732]) +27 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-8/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#1072] / [i915#9732]) +16 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-8/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#1072] / [i915#9732]) +35 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#5289]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#12755] / [i915#5190]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#3555]) +9 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][306] ([i915#3555]) +6 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_setmode@basic: - shard-tglu: [PASS][307] -> [FAIL][308] ([i915#5465]) +2 other tests fail [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-3/igt@kms_setmode@basic.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-3/igt@kms_setmode@basic.html * igt@kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#9906]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-17/igt@kms_vrr@max-min.html - shard-tglu: NOTRUN -> [SKIP][310] ([i915#9906]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@kms_vrr@max-min.html - shard-dg2: NOTRUN -> [SKIP][311] ([i915#9906]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-1/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#3555] / [i915#9906]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#9906]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#2437]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-8/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#2437] / [i915#9412]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][316] ([i915#2437] / [i915#9412]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][317] ([i915#2437]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-glk9/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#2437]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-13/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#7387]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@perf@global-sseu-config-invalid.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#2435]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html - shard-dg1: NOTRUN -> [SKIP][321] ([i915#2433]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][322] -> [FAIL][323] ([i915#4349]) +4 other tests fail [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@frequency@gt0: - shard-dg1: NOTRUN -> [FAIL][324] ([i915#12549] / [i915#6806]) +1 other test fail [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@most-busy-check-all: - shard-rkl: [PASS][325] -> [FAIL][326] ([i915#4349]) +1 other test fail [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-1/igt@perf_pmu@most-busy-check-all.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-1/igt@perf_pmu@most-busy-check-all.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#8516]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][328] ([i915#8516]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-2/igt@perf_pmu@rc6-all-gts.html - shard-dg2: NOTRUN -> [SKIP][329] ([i915#8516]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-8/igt@perf_pmu@rc6-all-gts.html - shard-rkl: NOTRUN -> [SKIP][330] ([i915#8516]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-4/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#3291] / [i915#3708]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#3708] / [i915#4077]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#9917]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-dg1: NOTRUN -> [SKIP][334] ([i915#9917]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-18/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1: - shard-tglu: NOTRUN -> [FAIL][335] ([i915#12910]) +19 other tests fail [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2: - shard-tglu-1: NOTRUN -> [FAIL][336] ([i915#12910]) +8 other tests fail [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html * igt@tools_test@tools_test: - shard-dg2: [PASS][337] -> [FAIL][338] ([i915#12875]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-3/igt@tools_test@tools_test.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@tools_test@tools_test.html #### Possible fixes #### * igt@core_getversion@all-cards: - shard-dg2: [FAIL][339] ([i915#12869]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@core_getversion@all-cards.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-6/igt@core_getversion@all-cards.html * igt@fbdev@nullptr: - shard-dg2: [SKIP][341] ([i915#2582]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@fbdev@nullptr.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@fbdev@nullptr.html * igt@gem_ctx_engines@invalid-engines: - shard-rkl: [FAIL][343] ([i915#12031]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-7/igt@gem_ctx_engines@invalid-engines.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html - shard-tglu: [FAIL][345] ([i915#12031]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-3/igt@gem_ctx_engines@invalid-engines.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-8/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_persistence@hostile: - shard-tglu: [FAIL][347] ([i915#11980] / [i915#12580]) -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-5/igt@gem_ctx_persistence@hostile.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-10/igt@gem_ctx_persistence@hostile.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-dg2: [SKIP][349] ([i915#12936]) -> [PASS][350] +1 other test pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_lmem_swapping@parallel-random-engines.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: [SKIP][351] ([i915#4270]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-9/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-6/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][353] ([i915#12941]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-7/igt@gem_tiled_swapping@non-threaded.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-4/igt@gem_tiled_swapping@non-threaded.html * igt@gem_vm_create@execbuf: - shard-dg2: [SKIP][355] ([i915#2575]) -> [PASS][356] +112 other tests pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_vm_create@execbuf.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@gem_vm_create@execbuf.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][357] ([i915#12739] / [i915#3591]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rpm@sysfs-read: - shard-rkl: [SKIP][359] ([i915#12964]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-2/igt@i915_pm_rpm@sysfs-read.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-2/igt@i915_pm_rpm@sysfs-read.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [WARN][361] -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-dg2: [FAIL][363] ([i915#10991] / [i915#12766]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-5/igt@kms_async_flips@alternate-sync-async-flip.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [FAIL][365] ([i915#5956]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-10/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-snb: [SKIP][367] -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [SKIP][369] ([i915#12402]) -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-dg2: [FAIL][371] ([i915#2122]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@plain-flip-fb-recreate: - shard-dg1: [FAIL][373] ([i915#12517] / [i915#2122]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg1-12/igt@kms_flip@plain-flip-fb-recreate.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg1-14/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1: - shard-tglu: [FAIL][375] ([i915#2122]) -> [PASS][376] +7 other tests pass [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-3/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [FAIL][377] ([i915#2122]) -> [PASS][378] +5 other tests pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: [SKIP][379] -> [PASS][380] +16 other tests pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0: - shard-rkl: [DMESG-WARN][381] ([i915#12964]) -> [PASS][382] +35 other tests pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-1/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-dg2: [SKIP][383] ([i915#2575] / [i915#9423]) -> [PASS][384] +3 other tests pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][385] ([i915#9295]) -> [PASS][386] [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][387] ([i915#4281]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [SKIP][389] ([i915#9340]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-3/igt@kms_pm_lpsp@kms-lpsp.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][391] ([i915#9519]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [SKIP][393] ([i915#12937]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@kms_pm_rpm@dpms-non-lpsp.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-3/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg2: [FAIL][395] ([i915#8717]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-2/igt@kms_pm_rpm@i2c.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@kms_pm_rpm@i2c.html * igt@kms_vblank@query-forked-hang: - shard-rkl: [DMESG-WARN][397] ([i915#12917]) -> [PASS][398] +4 other tests pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-3/igt@kms_vblank@query-forked-hang.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-3/igt@kms_vblank@query-forked-hang.html * igt@perf@blocking@0-rcs0: - shard-tglu: [FAIL][399] ([i915#10538] / [i915#12664]) -> [PASS][400] +1 other test pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-3/igt@perf@blocking@0-rcs0.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-7/igt@perf@blocking@0-rcs0.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [SKIP][401] ([i915#12506]) -> [PASS][402] +2 other tests pass [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@perf_pmu@all-busy-idle-check-all.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-6/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@module-unload: - shard-tglu: [ABORT][403] -> [PASS][404] +1 other test pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-10/igt@perf_pmu@module-unload.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-tglu-2/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@runtime-pm-gt0: - shard-rkl: [SKIP][405] -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-1/igt@perf_pmu@rc6@runtime-pm-gt0.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-rkl-5/igt@perf_pmu@rc6@runtime-pm-gt0.html #### Warnings #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: [SKIP][407] ([i915#2575]) -> [SKIP][408] ([i915#8411]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@drm_fdinfo@busy-hang: - shard-dg2: [SKIP][409] ([i915#8414]) -> [SKIP][410] ([i915#12506]) +2 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-2/igt@drm_fdinfo@busy-hang.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@drm_fdinfo@busy-hang.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg2: [SKIP][411] ([i915#12506]) -> [SKIP][412] ([i915#8414]) +3 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@drm_fdinfo@virtual-busy-all.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-3/igt@drm_fdinfo@virtual-busy-all.html * igt@gem_busy@semaphore: - shard-dg2: [SKIP][413] ([i915#2575]) -> [SKIP][414] ([i915#3936]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_busy@semaphore.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@gem_busy@semaphore.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: [SKIP][415] ([i915#7697]) -> [SKIP][416] ([i915#2575]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-6/igt@gem_close_race@multigpu-basic-process.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [SKIP][417] ([i915#2575]) -> [ABORT][418] ([i915#9846]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: [SKIP][419] ([i915#2575]) -> [SKIP][420] ([i915#8562]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_create@create-ext-set-pat.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-3/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_isolation@preservation-s3: - shard-dg2: [INCOMPLETE][421] ([i915#12353]) -> [SKIP][422] ([i915#2575]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-1/igt@gem_ctx_isolation@preservation-s3.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_persistence@hostile: - shard-dg2: [SKIP][423] ([i915#2575]) -> [FAIL][424] ([i915#11980] / [i915#12580]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_ctx_persistence@hostile.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-4/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: [SKIP][425] ([i915#2575]) -> [SKIP][426] ([i915#280]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-6/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@unwedge-stress: - shard-dg2: [FAIL][427] ([i915#12714] / [i915#5784]) -> [SKIP][428] ([i915#2575]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-3/igt@gem_eio@unwedge-stress.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: [SKIP][429] ([i915#2575]) -> [SKIP][430] ([i915#4812]) +1 other test skip [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-6/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: [SKIP][431] ([i915#2575]) -> [SKIP][432] ([i915#4771]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_exec_balancer@bonded-pair.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-7/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: [SKIP][433] ([i915#4812]) -> [SKIP][434] ([i915#2575]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-2/igt@gem_exec_balancer@bonded-semaphore.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: [SKIP][435] ([i915#8555]) -> [SKIP][436] ([i915#2575]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-5/igt@gem_exec_balancer@noheartbeat.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: [SKIP][437] ([i915#3539] / [i915#4852]) -> [SKIP][438] ([i915#2575]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-4/igt@gem_exec_flush@basic-uc-pro-default.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: [SKIP][439] ([i915#2575]) -> [SKIP][440] ([i915#3539] / [i915#4852]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-before-default.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-10/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: [SKIP][441] ([i915#3281]) -> [SKIP][442] ([i915#2575]) +4 other tests skip [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-gtt.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: [SKIP][443] ([i915#2575]) -> [SKIP][444] ([i915#3281]) +3 other tests skip [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [INCOMPLETE][445] -> [ABORT][446] ([i915#7975] / [i915#8213]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-8/igt@gem_exec_suspend@basic-s4-devices.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: [SKIP][447] ([i915#2575]) -> [SKIP][448] ([i915#4860]) [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_mmap@pf-nonblock: - shard-dg2: [SKIP][449] ([i915#4083]) -> [SKIP][450] ([i915#2575]) +2 other tests skip [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-10/igt@gem_mmap@pf-nonblock.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@gem_mmap@pf-nonblock.html * igt@gem_mmap_gtt@big-copy: - shard-dg2: [SKIP][451] ([i915#2575]) -> [SKIP][452] ([i915#4077]) +3 other tests skip [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_mmap_gtt@big-copy.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-2/igt@gem_mmap_gtt@big-copy.html * igt@gem_mmap_wc@set-cache-level: - shard-dg2: [SKIP][453] ([i915#2575]) -> [SKIP][454] ([i915#4083]) [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_mmap_wc@set-cache-level.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-8/igt@gem_mmap_wc@set-cache-level.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: [SKIP][455] ([i915#3282]) -> [SKIP][456] ([i915#2575]) +2 other tests skip [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@uncached: - shard-dg2: [SKIP][457] ([i915#2575]) -> [SKIP][458] ([i915#3282]) +4 other tests skip [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_pread@uncached.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg2-5/igt@gem_pread@uncached.html * igt@gem_pxp@display-protected-crc: - shard-dg2: [SKIP][459] ([i915#4270]) -> [SKIP][460] ([i915#2575]) +3 other tests skip [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-6/igt@gem_pxp@display-protected-crc.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/shard-dg == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12149/index.html ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-11-23 13:39 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-20 17:43 [PATCH i-g-t 0/3] Skip test if joiner display is connected Jeevan B 2024-11-20 17:43 ` [PATCH i-g-t 1/3] lib/igt_kms: Add is_joiner_mode function Jeevan B 2024-11-21 18:05 ` Sharma, Swati2 2024-11-20 17:43 ` [PATCH i-g-t 2/3] tests/kms_async_flips: Skip Async flips on joiner output Jeevan B 2024-11-21 18:07 ` Sharma, Swati2 2024-11-20 17:43 ` [PATCH i-g-t 3/3] tests/kms_display_modes: Skip test if joiner display is connected Jeevan B 2024-11-21 18:49 ` Sharma, Swati2 2024-11-20 18:53 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-11-21 2:51 ` ✗ Xe.CI.Full: failure " Patchwork 2024-11-23 13:39 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox