* [PATCH i-g-t v1 0/2] Limit debug logging in CI for scaling tests
@ 2025-11-06 9:22 Naladala Ramanaidu
2025-11-06 9:22 ` [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Reduce debug log level " Naladala Ramanaidu
` (4 more replies)
0 siblings, 5 replies; 11+ messages in thread
From: Naladala Ramanaidu @ 2025-11-06 9:22 UTC (permalink / raw)
To: igt-dev; +Cc: pranay.samala, Naladala Ramanaidu
This change conditionally enables DRM debug logging only when multiple
outputs are connected. It helps reduce log size and prevents CI runners
from exceeding disk usage limits, which previously caused test
termination.
Naladala Ramanaidu (2):
tests/kms_plane_scaling: Reduce debug log level in CI for scaling
tests
HAX patch do not merge
tests/intel-ci/i915.fast-feedback.testlist | 220 ++++----------
tests/intel-ci/xe-fast-feedback.testlist | 325 ++++-----------------
tests/kms_plane_scaling.c | 5 +
3 files changed, 103 insertions(+), 447 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 11+ messages in thread* [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Reduce debug log level in CI for scaling tests 2025-11-06 9:22 [PATCH i-g-t v1 0/2] Limit debug logging in CI for scaling tests Naladala Ramanaidu @ 2025-11-06 9:22 ` Naladala Ramanaidu 2025-11-06 12:59 ` Samala, Pranay 2025-11-06 13:09 ` Jani Nikula 2025-11-06 9:22 ` [PATCH i-g-t v1 2/2] HAX patch do not merge Naladala Ramanaidu ` (3 subsequent siblings) 4 siblings, 2 replies; 11+ messages in thread From: Naladala Ramanaidu @ 2025-11-06 9:22 UTC (permalink / raw) To: igt-dev; +Cc: pranay.samala, Naladala Ramanaidu Reduce excessive logging in CI environments when multiple outputs are connected. It prevents CI runners from exceeding disk usage limits. Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- tests/kms_plane_scaling.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index 63d35d76b..34c8f8a64 100644 --- a/tests/kms_plane_scaling.c +++ b/tests/kms_plane_scaling.c @@ -32,6 +32,7 @@ #include "igt.h" #include "igt_vec.h" +#include "igt_sysfs.h" #include <math.h> /** @@ -1358,11 +1359,15 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) data.devid = is_intel_device(data.drm_fd) ? intel_get_drm_devid(data.drm_fd) : 0; igt_require(data.display.is_atomic); + igt_install_exit_handler(igt_drm_debug_mask_reset_exit_handler); } igt_subtest_group { igt_output_t *output; + if (igt_get_connected_output_count(&data.display) > 1) + update_debug_mask_if_ci(DRM_UT_DRIVER | DRM_UT_CORE); + for (int index = 0; index < ARRAY_SIZE(scaler_with_pixel_format_tests); index++) { igt_describe(scaler_with_pixel_format_tests[index].describe); igt_subtest_with_dynamic(scaler_with_pixel_format_tests[index].name) { -- 2.43.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* RE: [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Reduce debug log level in CI for scaling tests 2025-11-06 9:22 ` [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Reduce debug log level " Naladala Ramanaidu @ 2025-11-06 12:59 ` Samala, Pranay 2025-11-06 13:09 ` Jani Nikula 1 sibling, 0 replies; 11+ messages in thread From: Samala, Pranay @ 2025-11-06 12:59 UTC (permalink / raw) To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org Hi Rama, > -----Original Message----- > From: Naladala, Ramanaidu <ramanaidu.naladala@intel.com> > Sent: Thursday, November 6, 2025 2:52 PM > To: igt-dev@lists.freedesktop.org > Cc: Samala, Pranay <pranay.samala@intel.com>; Naladala, Ramanaidu > <ramanaidu.naladala@intel.com> > Subject: [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Reduce debug log level > in CI for scaling tests > > Reduce excessive logging in CI environments when multiple outputs are > connected. It prevents CI runners from exceeding disk usage limits. > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> LGTM, Reviewed-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/kms_plane_scaling.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index > 63d35d76b..34c8f8a64 100644 > --- a/tests/kms_plane_scaling.c > +++ b/tests/kms_plane_scaling.c > @@ -32,6 +32,7 @@ > > #include "igt.h" > #include "igt_vec.h" > +#include "igt_sysfs.h" > #include <math.h> > > /** > @@ -1358,11 +1359,15 @@ igt_main_args("", long_opts, help_str, > opt_handler, &data) > data.devid = is_intel_device(data.drm_fd) ? > intel_get_drm_devid(data.drm_fd) : 0; > igt_require(data.display.is_atomic); > + > igt_install_exit_handler(igt_drm_debug_mask_reset_exit_handler); > } > > igt_subtest_group { > igt_output_t *output; > > + if (igt_get_connected_output_count(&data.display) > 1) > + update_debug_mask_if_ci(DRM_UT_DRIVER | > DRM_UT_CORE); > + > for (int index = 0; index < > ARRAY_SIZE(scaler_with_pixel_format_tests); index++) { > > igt_describe(scaler_with_pixel_format_tests[index].describe); > > igt_subtest_with_dynamic(scaler_with_pixel_format_tests[index].na > me) { > -- > 2.43.0 ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Reduce debug log level in CI for scaling tests 2025-11-06 9:22 ` [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Reduce debug log level " Naladala Ramanaidu 2025-11-06 12:59 ` Samala, Pranay @ 2025-11-06 13:09 ` Jani Nikula 2025-11-07 13:54 ` Ville Syrjälä 1 sibling, 1 reply; 11+ messages in thread From: Jani Nikula @ 2025-11-06 13:09 UTC (permalink / raw) To: Naladala Ramanaidu, igt-dev Cc: pranay.samala, Naladala Ramanaidu, Syrjala, Ville, Saarinen, Jani On Thu, 06 Nov 2025, Naladala Ramanaidu <ramanaidu.naladala@intel.com> wrote: > Reduce excessive logging in CI environments when multiple outputs > are connected. It prevents CI runners from exceeding disk usage > limits. So how do we debug issues when there are no KMD debug logs? This can't be the go-to solution in the long run. Moreover, update_debug_mask_if_ci() doesn't even log the actual mask being switched to. BR, Jani. > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > --- > tests/kms_plane_scaling.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c > index 63d35d76b..34c8f8a64 100644 > --- a/tests/kms_plane_scaling.c > +++ b/tests/kms_plane_scaling.c > @@ -32,6 +32,7 @@ > > #include "igt.h" > #include "igt_vec.h" > +#include "igt_sysfs.h" > #include <math.h> > > /** > @@ -1358,11 +1359,15 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > data.devid = is_intel_device(data.drm_fd) ? > intel_get_drm_devid(data.drm_fd) : 0; > igt_require(data.display.is_atomic); > + igt_install_exit_handler(igt_drm_debug_mask_reset_exit_handler); > } > > igt_subtest_group { > igt_output_t *output; > > + if (igt_get_connected_output_count(&data.display) > 1) > + update_debug_mask_if_ci(DRM_UT_DRIVER | DRM_UT_CORE); > + > for (int index = 0; index < ARRAY_SIZE(scaler_with_pixel_format_tests); index++) { > igt_describe(scaler_with_pixel_format_tests[index].describe); > igt_subtest_with_dynamic(scaler_with_pixel_format_tests[index].name) { -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Reduce debug log level in CI for scaling tests 2025-11-06 13:09 ` Jani Nikula @ 2025-11-07 13:54 ` Ville Syrjälä 2025-11-07 16:10 ` Naladala, Ramanaidu 0 siblings, 1 reply; 11+ messages in thread From: Ville Syrjälä @ 2025-11-07 13:54 UTC (permalink / raw) To: Jani Nikula Cc: Naladala Ramanaidu, igt-dev, pranay.samala, Syrjala, Ville, Saarinen, Jani On Thu, Nov 06, 2025 at 03:09:08PM +0200, Jani Nikula wrote: > On Thu, 06 Nov 2025, Naladala Ramanaidu <ramanaidu.naladala@intel.com> wrote: > > Reduce excessive logging in CI environments when multiple outputs > > are connected. It prevents CI runners from exceeding disk usage > > limits. > > So how do we debug issues when there are no KMD debug logs? This can't > be the go-to solution in the long run. Yeah, this stuff is already causing problems. Eg. igt@kms_atomic_transition@plane-toggle-modeset-transition keeps failing randomly on tgl, but since the debugs are disabled the logs are completely useless. I've thrown https://patchwork.freedesktop.org/series/155702 a few times at trybot to get more logs, but since it's random no luck so far. If we didn't have this "disable debugs" crap in the first place the bug would probably have been solved as soon as it appeared. > > Moreover, update_debug_mask_if_ci() doesn't even log the actual mask > being switched to. > > > BR, > Jani. > > > > > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > > --- > > tests/kms_plane_scaling.c | 5 +++++ > > 1 file changed, 5 insertions(+) > > > > diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c > > index 63d35d76b..34c8f8a64 100644 > > --- a/tests/kms_plane_scaling.c > > +++ b/tests/kms_plane_scaling.c > > @@ -32,6 +32,7 @@ > > > > #include "igt.h" > > #include "igt_vec.h" > > +#include "igt_sysfs.h" > > #include <math.h> > > > > /** > > @@ -1358,11 +1359,15 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > > data.devid = is_intel_device(data.drm_fd) ? > > intel_get_drm_devid(data.drm_fd) : 0; > > igt_require(data.display.is_atomic); > > + igt_install_exit_handler(igt_drm_debug_mask_reset_exit_handler); > > } > > > > igt_subtest_group { > > igt_output_t *output; > > > > + if (igt_get_connected_output_count(&data.display) > 1) > > + update_debug_mask_if_ci(DRM_UT_DRIVER | DRM_UT_CORE); > > + > > for (int index = 0; index < ARRAY_SIZE(scaler_with_pixel_format_tests); index++) { > > igt_describe(scaler_with_pixel_format_tests[index].describe); > > igt_subtest_with_dynamic(scaler_with_pixel_format_tests[index].name) { > > -- > Jani Nikula, Intel -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Reduce debug log level in CI for scaling tests 2025-11-07 13:54 ` Ville Syrjälä @ 2025-11-07 16:10 ` Naladala, Ramanaidu 2025-11-07 20:34 ` Kamil Konieczny 0 siblings, 1 reply; 11+ messages in thread From: Naladala, Ramanaidu @ 2025-11-07 16:10 UTC (permalink / raw) To: Ville Syrjälä, Jani Nikula Cc: igt-dev, pranay.samala, Syrjala, Ville, Saarinen, Jani [-- Attachment #1: Type: text/plain, Size: 2926 bytes --] Hi Ville/Nikula Jani, Thanks for the pointing the problems. On 11/7/2025 7:24 PM, Ville Syrjälä wrote: > On Thu, Nov 06, 2025 at 03:09:08PM +0200, Jani Nikula wrote: >> On Thu, 06 Nov 2025, Naladala Ramanaidu<ramanaidu.naladala@intel.com> wrote: >>> Reduce excessive logging in CI environments when multiple outputs >>> are connected. It prevents CI runners from exceeding disk usage >>> limits. >> So how do we debug issues when there are no KMD debug logs? This can't >> be the go-to solution in the long run. > Yeah, this stuff is already causing problems. Eg. > igt@kms_atomic_transition@plane-toggle-modeset-transition keeps > failing randomly on tgl, but since the debugs are disabled the > logs are completely useless. > > I've thrownhttps://patchwork.freedesktop.org/series/155702 a few > times at trybot to get more logs, but since it's random no luck so > far. If we didn't have this "disable debugs" crap in the first > place the bug would probably have been solved as soon as it > appeared. In recent days observed that many tests are failing or incomplete due to limitations in the test CI environment. Specifically, the issues related to log memory space and log line count. examples: disk usage issue: https://gfx-ci-internal.igk.intel.com/cibuglog/issue/28035?query_key=ee34b0f8805b0bdf398a1f0fb816d255a978a81f Lane count issue: https://gfx-ci.igk.intel.com/cibuglog-ng/issue/19731?query_key=3a88cc35a02fed031e37c0b1dae196e821340a7b Please suggest right direction to fix this types of runner issues. > >> Moreover, update_debug_mask_if_ci() doesn't even log the actual mask >> being switched to. >> >> >> BR, >> Jani. >> >> >>> Signed-off-by: Naladala Ramanaidu<ramanaidu.naladala@intel.com> >>> --- >>> tests/kms_plane_scaling.c | 5 +++++ >>> 1 file changed, 5 insertions(+) >>> >>> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c >>> index 63d35d76b..34c8f8a64 100644 >>> --- a/tests/kms_plane_scaling.c >>> +++ b/tests/kms_plane_scaling.c >>> @@ -32,6 +32,7 @@ >>> >>> #include "igt.h" >>> #include "igt_vec.h" >>> +#include "igt_sysfs.h" >>> #include <math.h> >>> >>> /** >>> @@ -1358,11 +1359,15 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) >>> data.devid = is_intel_device(data.drm_fd) ? >>> intel_get_drm_devid(data.drm_fd) : 0; >>> igt_require(data.display.is_atomic); >>> + igt_install_exit_handler(igt_drm_debug_mask_reset_exit_handler); >>> } >>> >>> igt_subtest_group { >>> igt_output_t *output; >>> >>> + if (igt_get_connected_output_count(&data.display) > 1) >>> + update_debug_mask_if_ci(DRM_UT_DRIVER | DRM_UT_CORE); >>> + >>> for (int index = 0; index < ARRAY_SIZE(scaler_with_pixel_format_tests); index++) { >>> igt_describe(scaler_with_pixel_format_tests[index].describe); >>> igt_subtest_with_dynamic(scaler_with_pixel_format_tests[index].name) { >> -- >> Jani Nikula, Intel [-- Attachment #2: Type: text/html, Size: 75666 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Reduce debug log level in CI for scaling tests 2025-11-07 16:10 ` Naladala, Ramanaidu @ 2025-11-07 20:34 ` Kamil Konieczny 0 siblings, 0 replies; 11+ messages in thread From: Kamil Konieczny @ 2025-11-07 20:34 UTC (permalink / raw) To: Naladala, Ramanaidu Cc: Ville Syrjälä, Jani Nikula, igt-dev, pranay.samala, Syrjala, Ville, Saarinen, Jani, Ewelina Musial, Ryszard Knop Hi Naladala,, On 2025-11-07 at 21:40:46 +0530, Naladala, Ramanaidu wrote: > Hi Ville/Nikula Jani, > > Thanks for the pointing the problems. > > On 11/7/2025 7:24 PM, Ville Syrjälä wrote: > > On Thu, Nov 06, 2025 at 03:09:08PM +0200, Jani Nikula wrote: > > > On Thu, 06 Nov 2025, Naladala Ramanaidu<ramanaidu.naladala@intel.com> wrote: > > > > Reduce excessive logging in CI environments when multiple outputs > > > > are connected. It prevents CI runners from exceeding disk usage > > > > limits. > > > So how do we debug issues when there are no KMD debug logs? This can't > > > be the go-to solution in the long run. > > Yeah, this stuff is already causing problems. Eg. > > igt@kms_atomic_transition@plane-toggle-modeset-transition keeps > > failing randomly on tgl, but since the debugs are disabled the > > logs are completely useless. > > > > I've thrownhttps://patchwork.freedesktop.org/series/155702 a few > > times at trybot to get more logs, but since it's random no luck so > > far. If we didn't have this "disable debugs" crap in the first > > place the bug would probably have been solved as soon as it > > appeared. > > In recent days observed that many tests are failing or incomplete due to > limitations in the test CI environment. Specifically, the issues related to > log memory space and log line count. > > examples: > disk usage issue: https://gfx-ci-internal.igk.intel.com/cibuglog/issue/28035?query_key=ee34b0f8805b0bdf398a1f0fb816d255a978a81f > Lane count issue: https://gfx-ci.igk.intel.com/cibuglog-ng/issue/19731?query_key=3a88cc35a02fed031e37c0b1dae196e821340a7b > > > Please suggest right direction to fix this types of runner issues. > As for runner please talk with me and CI. For example, one idea would be to drop or extreamly cut all successfull logs, leaving only failures intact. Regards, Kamil +cc Ewelina and Ryszard > > > > > Moreover, update_debug_mask_if_ci() doesn't even log the actual mask > > > being switched to. > > > > > > > > > BR, > > > Jani. > > > > > > > > > > Signed-off-by: Naladala Ramanaidu<ramanaidu.naladala@intel.com> > > > > --- > > > > tests/kms_plane_scaling.c | 5 +++++ > > > > 1 file changed, 5 insertions(+) > > > > > > > > diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c > > > > index 63d35d76b..34c8f8a64 100644 > > > > --- a/tests/kms_plane_scaling.c > > > > +++ b/tests/kms_plane_scaling.c > > > > @@ -32,6 +32,7 @@ > > > > #include "igt.h" > > > > #include "igt_vec.h" > > > > +#include "igt_sysfs.h" > > > > #include <math.h> > > > > /** > > > > @@ -1358,11 +1359,15 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > > > > data.devid = is_intel_device(data.drm_fd) ? > > > > intel_get_drm_devid(data.drm_fd) : 0; > > > > igt_require(data.display.is_atomic); > > > > + igt_install_exit_handler(igt_drm_debug_mask_reset_exit_handler); > > > > } > > > > igt_subtest_group { > > > > igt_output_t *output; > > > > + if (igt_get_connected_output_count(&data.display) > 1) > > > > + update_debug_mask_if_ci(DRM_UT_DRIVER | DRM_UT_CORE); > > > > + > > > > for (int index = 0; index < ARRAY_SIZE(scaler_with_pixel_format_tests); index++) { > > > > igt_describe(scaler_with_pixel_format_tests[index].describe); > > > > igt_subtest_with_dynamic(scaler_with_pixel_format_tests[index].name) { > > > -- > > > Jani Nikula, Intel ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t v1 2/2] HAX patch do not merge 2025-11-06 9:22 [PATCH i-g-t v1 0/2] Limit debug logging in CI for scaling tests Naladala Ramanaidu 2025-11-06 9:22 ` [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Reduce debug log level " Naladala Ramanaidu @ 2025-11-06 9:22 ` Naladala Ramanaidu 2025-11-06 19:29 ` ✗ Xe.CI.BAT: failure for Limit debug logging in CI for scaling tests Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 11+ messages in thread From: Naladala Ramanaidu @ 2025-11-06 9:22 UTC (permalink / raw) To: igt-dev; +Cc: pranay.samala, Naladala Ramanaidu HAX patch do not merge Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- tests/intel-ci/i915.fast-feedback.testlist | 220 ++++---------- tests/intel-ci/xe-fast-feedback.testlist | 325 ++++----------------- 2 files changed, 98 insertions(+), 447 deletions(-) diff --git a/tests/intel-ci/i915.fast-feedback.testlist b/tests/intel-ci/i915.fast-feedback.testlist index 2799bbaa5..8b9c5caa5 100644 --- a/tests/intel-ci/i915.fast-feedback.testlist +++ b/tests/intel-ci/i915.fast-feedback.testlist @@ -1,171 +1,49 @@ -# Try to load the driver if it's not available yet. -igt@i915_module_load@load - -# Keep alphabetically sorted by default -igt@core_auth@basic-auth -igt@core_debugfs@read-all-entries -igt@core_sysfs@read-all-entries -igt@fbdev@eof -igt@fbdev@info -igt@fbdev@nullptr -igt@fbdev@read -igt@fbdev@write -igt@gem_basic@bad-close -igt@gem_basic@create-close -igt@gem_basic@create-fd-close -igt@gem_busy@busy@all-engines -igt@gem_close_race@basic-process -igt@gem_close_race@basic-threads -igt@gem_ctx_create@basic -igt@gem_ctx_create@basic-files -igt@gem_ctx_exec@basic -igt@gem_exec_basic@basic -igt@gem_exec_create@basic -igt@gem_exec_fence@basic-busy -igt@gem_exec_fence@basic-wait -igt@gem_exec_fence@basic-await -igt@gem_exec_fence@nb-await -igt@gem_exec_gttfill@basic -igt@gem_exec_parallel@engines -igt@gem_exec_store@basic -igt@gem_flink_basic@bad-flink -igt@gem_flink_basic@bad-open -igt@gem_flink_basic@basic -igt@gem_flink_basic@double-flink -igt@gem_flink_basic@flink-lifetime -igt@gem_huc_copy@huc-copy -igt@gem_linear_blits@basic -igt@gem_mmap@basic -igt@gem_mmap_gtt@basic -igt@gem_render_linear_blits@basic -igt@gem_render_tiled_blits@basic -igt@gem_ringfill@basic-all -igt@gem_softpin@allocator-basic -igt@gem_softpin@allocator-basic-reserve -igt@gem_softpin@safe-alignment -igt@gem_sync@basic-all -igt@gem_sync@basic-each -igt@gem_tiled_blits@basic -igt@gem_tiled_fence_blits@basic -igt@gem_tiled_pread_basic -igt@gem_wait@busy@all-engines -igt@gem_wait@wait@all-engines -igt@i915_getparams_basic@basic-eu-total -igt@i915_getparams_basic@basic-subslice-total -igt@i915_hangman@error-state-basic -igt@i915_pciid -igt@intel_hwmon -igt@kms_addfb_basic@addfb25-4-tiled -igt@kms_addfb_basic@addfb25-bad-modifier -igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling -igt@kms_addfb_basic@addfb25-modifier-no-flag -igt@kms_addfb_basic@addfb25-x-tiled-legacy -igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy -igt@kms_addfb_basic@addfb25-yf-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-small-legacy -igt@kms_addfb_basic@bad-pitch-0 -igt@kms_addfb_basic@bad-pitch-1024 -igt@kms_addfb_basic@bad-pitch-128 -igt@kms_addfb_basic@bad-pitch-256 -igt@kms_addfb_basic@bad-pitch-32 -igt@kms_addfb_basic@bad-pitch-63 -igt@kms_addfb_basic@bad-pitch-65536 -igt@kms_addfb_basic@bad-pitch-999 -igt@kms_addfb_basic@basic -igt@kms_addfb_basic@basic-x-tiled-legacy -igt@kms_addfb_basic@basic-y-tiled-legacy -igt@kms_addfb_basic@bo-too-small -igt@kms_addfb_basic@bo-too-small-due-to-tiling -igt@kms_addfb_basic@clobberred-modifier -igt@kms_addfb_basic@framebuffer-vs-set-tiling -igt@kms_addfb_basic@invalid-get-prop -igt@kms_addfb_basic@invalid-get-prop-any -igt@kms_addfb_basic@invalid-set-prop -igt@kms_addfb_basic@invalid-set-prop-any -igt@kms_addfb_basic@no-handle -igt@kms_addfb_basic@size-max -igt@kms_addfb_basic@small-bo -igt@kms_addfb_basic@tile-pitch-mismatch -igt@kms_addfb_basic@too-high -igt@kms_addfb_basic@too-wide -igt@kms_addfb_basic@unused-handle -igt@kms_addfb_basic@unused-modifier -igt@kms_addfb_basic@unused-offsets -igt@kms_addfb_basic@unused-pitches -igt@kms_busy@basic -igt@kms_prop_blob@basic -igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic -igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy -igt@kms_cursor_legacy@basic-flip-after-cursor-atomic -igt@kms_cursor_legacy@basic-flip-after-cursor-legacy -igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size -igt@kms_cursor_legacy@basic-flip-before-cursor-atomic -igt@kms_cursor_legacy@basic-flip-before-cursor-legacy -igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size -igt@kms_dsc@dsc-basic -igt@kms_flip@basic-flip-vs-dpms -igt@kms_flip@basic-flip-vs-modeset -igt@kms_flip@basic-flip-vs-wf_vblank -igt@kms_flip@basic-plain-flip -igt@kms_force_connector_basic@force-connector-state -igt@kms_force_connector_basic@force-edid -igt@kms_force_connector_basic@force-load-detect -igt@kms_force_connector_basic@prune-stale-modes -igt@kms_frontbuffer_tracking@basic -igt@kms_hdmi_inject@inject-audio -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24 -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 -igt@kms_pipe_crc_basic@hang-read-crc -igt@kms_pipe_crc_basic@nonblocking-crc -igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence -igt@kms_pipe_crc_basic@read-crc -igt@kms_pipe_crc_basic@read-crc-frame-sequence -igt@kms_pm_backlight@basic-brightness -igt@kms_pm_rpm@basic-pci-d3-state -igt@kms_pm_rpm@basic-rte -igt@kms_psr@psr-primary-page-flip -igt@kms_psr@psr-cursor-plane-move -igt@kms_psr@psr-sprite-plane-onoff -igt@kms_psr@psr-primary-mmap-gtt -igt@kms_setmode@basic-clone-single-crtc -igt@i915_pm_rps@basic-api -igt@prime_self_import@basic-llseek-bad -igt@prime_self_import@basic-llseek-size -igt@prime_self_import@basic-with_fd_dup -igt@prime_self_import@basic-with_one_bo -igt@prime_self_import@basic-with_one_bo_two_files -igt@prime_self_import@basic-with_two_bos -igt@prime_vgem@basic-fence-flip -igt@prime_vgem@basic-fence-mmap -igt@prime_vgem@basic-fence-read -igt@prime_vgem@basic-gtt -igt@prime_vgem@basic-read -igt@prime_vgem@basic-write -igt@vgem_basic@setversion -igt@vgem_basic@create -igt@vgem_basic@debugfs -igt@vgem_basic@dmabuf-export -igt@vgem_basic@dmabuf-fence -igt@vgem_basic@dmabuf-fence-before -igt@vgem_basic@dmabuf-mmap -igt@vgem_basic@mmap -igt@vgem_basic@second-client -igt@vgem_basic@sysfs - -# All tests that do module unloading and reloading are executed last. -# They will sometimes reveal issues of earlier tests leaving the -# driver in a broken state that is not otherwise noticed in that test. - -igt@core_hotunplug@unbind-rebind -igt@vgem_basic@unload -igt@i915_module_load@reload -igt@gem_lmem_swapping@basic -igt@gem_lmem_swapping@parallel-random-engines -igt@gem_lmem_swapping@random-engines -igt@gem_lmem_swapping@verify-random -igt@i915_pm_rpm@module-reload - -# Kernel selftests -igt@i915_selftest@live -igt@dmabuf@all-tests +igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format +igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format +igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format +igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format +igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format +igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format +igt@kms_plane_scaling@plane-upscale-20x20-with-rotation +igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation +igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation +igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation +igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation +igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation +igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers +igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers +igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers +igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers +igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers +igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers +igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats +igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation +igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers +igt@kms_plane_scaling@planes-upscale-20x20 +igt@kms_plane_scaling@planes-upscale-factor-0-25 +igt@kms_plane_scaling@planes-scaler-unity-scaling +igt@kms_plane_scaling@planes-downscale-factor-0-25 +igt@kms_plane_scaling@planes-downscale-factor-0-5 +igt@kms_plane_scaling@planes-downscale-factor-0-75 +igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 +igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 +igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 +igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 +igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 +igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75 +igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 +igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5 +igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75 +igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 +igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 +igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling +igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 +igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25 +igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling +igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20 +igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25 +igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling +igt@kms_plane_scaling@intel-max-src-size +igt@kms_plane_scaling@invalid-num-scalers +igt@kms_plane_scaling@invalid-parameters +igt@kms_plane_scaling@2x-scaler-multi-pipe diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index 017e3ba2a..8b9c5caa5 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,276 +1,49 @@ -# Should be the first test -igt@xe_module_load@load - -igt@fbdev@eof -igt@fbdev@info -igt@fbdev@nullptr -igt@fbdev@read -igt@fbdev@write - -igt@core_debugfs@read-all-entries -igt@core_sysfs@read-all-entries -igt@kms_addfb_basic@addfb25-4-tiled -igt@kms_addfb_basic@addfb25-bad-modifier -igt@kms_addfb_basic@addfb25-modifier-no-flag -igt@kms_addfb_basic@addfb25-x-tiled-legacy -igt@kms_addfb_basic@addfb25-yf-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-legacy -igt@kms_addfb_basic@addfb25-y-tiled-small-legacy -igt@kms_addfb_basic@bad-pitch-0 -igt@kms_addfb_basic@bad-pitch-1024 -igt@kms_addfb_basic@bad-pitch-128 -igt@kms_addfb_basic@bad-pitch-256 -igt@kms_addfb_basic@bad-pitch-32 -igt@kms_addfb_basic@bad-pitch-63 -igt@kms_addfb_basic@bad-pitch-65536 -igt@kms_addfb_basic@bad-pitch-999 -igt@kms_addfb_basic@basic -igt@kms_addfb_basic@basic-x-tiled-legacy -igt@kms_addfb_basic@bo-too-small -igt@kms_addfb_basic@invalid-get-prop -igt@kms_addfb_basic@invalid-get-prop-any -igt@kms_addfb_basic@invalid-set-prop -igt@kms_addfb_basic@invalid-set-prop-any -igt@kms_addfb_basic@no-handle -igt@kms_addfb_basic@size-max -igt@kms_addfb_basic@small-bo -igt@kms_addfb_basic@too-high -igt@kms_addfb_basic@too-wide -igt@kms_addfb_basic@unused-handle -igt@kms_addfb_basic@unused-modifier -igt@kms_addfb_basic@unused-offsets -igt@kms_addfb_basic@unused-pitches -igt@kms_cursor_legacy@basic-flip-after-cursor-atomic -igt@kms_cursor_legacy@basic-flip-after-cursor-legacy -igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size -igt@kms_cursor_legacy@basic-flip-before-cursor-atomic -igt@kms_cursor_legacy@basic-flip-before-cursor-legacy -igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size -igt@kms_dsc@dsc-basic -igt@kms_flip@basic-flip-vs-dpms -igt@kms_flip@basic-flip-vs-modeset -igt@kms_flip@basic-flip-vs-wf_vblank -igt@kms_flip@basic-plain-flip -igt@kms_force_connector_basic@force-connector-state -igt@kms_force_connector_basic@force-edid -igt@kms_force_connector_basic@prune-stale-modes -igt@kms_frontbuffer_tracking@basic -igt@kms_hdmi_inject@inject-audio -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24 -igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 -igt@kms_pipe_crc_basic@hang-read-crc -igt@kms_pipe_crc_basic@nonblocking-crc -igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence -igt@kms_pipe_crc_basic@read-crc -igt@kms_pipe_crc_basic@read-crc-frame-sequence -igt@kms_prop_blob@basic -igt@kms_psr@psr-primary-page-flip -igt@kms_psr@psr-cursor-plane-move -igt@kms_psr@psr-sprite-plane-onoff -igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all -igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1 -igt@xe_compute@compute-square -igt@xe_create@create-execqueues-noleak -igt@xe_create@create-execqueues-leak -igt@xe_create@create-invalid-mbz -igt@xe_create@create-massive-size -igt@xe_debugfs@xe-base -igt@xe_debugfs@xe-forcewake -igt@xe_dma_buf_sync@export-dma-buf-once-write-sync -igt@xe_dma_buf_sync@export-dma-buf-once-read-sync -igt@xe_dma_buf_sync@export-dma-buf-once-read-write-sync -igt@xe_dma_buf_sync@export-dma-buf-once-write-read-sync -igt@xe_evict_ccs@evict-overcommit-simple -igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd -igt@xe_exec_atomic@basic-dec-all -igt@xe_exec_atomic@basic-inc-all -igt@xe_exec_balancer@twice-virtual-basic -igt@xe_exec_balancer@no-exec-virtual-basic -igt@xe_exec_balancer@twice-cm-virtual-basic -igt@xe_exec_balancer@no-exec-cm-virtual-basic -igt@xe_exec_balancer@twice-virtual-userptr -igt@xe_exec_balancer@twice-cm-virtual-userptr -igt@xe_exec_balancer@twice-virtual-rebind -igt@xe_exec_balancer@twice-cm-virtual-rebind -igt@xe_exec_balancer@twice-virtual-userptr-rebind -igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind -igt@xe_exec_balancer@twice-virtual-userptr-invalidate -igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate -igt@xe_exec_balancer@twice-parallel-basic -igt@xe_exec_balancer@no-exec-parallel-basic -igt@xe_exec_balancer@twice-parallel-userptr -igt@xe_exec_balancer@twice-parallel-rebind -igt@xe_exec_balancer@twice-parallel-userptr-rebind -igt@xe_exec_balancer@twice-parallel-userptr-invalidate -igt@xe_exec_basic@twice-basic -igt@xe_exec_basic@no-exec-basic -igt@xe_exec_basic@twice-basic-defer-mmap -igt@xe_exec_basic@twice-basic-defer-bind -igt@xe_exec_basic@twice-userptr -igt@xe_exec_basic@twice-rebind -igt@xe_exec_basic@twice-userptr-rebind -igt@xe_exec_basic@twice-userptr-invalidate -igt@xe_exec_basic@no-exec-userptr-invalidate -igt@xe_exec_basic@twice-bindexecqueue -igt@xe_exec_basic@no-exec-bindexecqueue -igt@xe_exec_basic@twice-bindexecqueue-userptr -igt@xe_exec_basic@twice-bindexecqueue-rebind -igt@xe_exec_basic@twice-bindexecqueue-userptr-rebind -igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate -igt@xe_exec_compute_mode@twice-basic -igt@xe_exec_compute_mode@twice-preempt-fence-early -igt@xe_exec_compute_mode@twice-userptr -igt@xe_exec_compute_mode@twice-rebind -igt@xe_exec_compute_mode@twice-userptr-rebind -igt@xe_exec_compute_mode@twice-userptr-invalidate -igt@xe_exec_compute_mode@twice-bindexecqueue -igt@xe_exec_compute_mode@twice-bindexecqueue-userptr -igt@xe_exec_compute_mode@twice-bindexecqueue-rebind -igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind -igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate -igt@xe_exec_queue_property@invalid-property -igt@xe_exec_reset@close-fd-no-exec -igt@xe_exec_reset@cm-close-fd-no-exec -igt@xe_exec_reset@virtual-close-fd-no-exec -igt@xe_exec_store@basic-store -igt@xe_gpgpu_fill@basic -igt@xe_gt_freq@freq_basic_api -igt@xe_gt_freq@freq_fixed_idle -igt@xe_gt_freq@freq_range_idle -igt@xe_huc_copy@huc_copy -igt@xe_intel_bb@add-remove-objects -igt@xe_intel_bb@bb-with-allocator -igt@xe_intel_bb@blit-reloc -igt@xe_intel_bb@blit-simple -igt@xe_intel_bb@create-in-region -igt@xe_intel_bb@delta-check -igt@xe_intel_bb@destroy-bb -igt@xe_intel_bb@intel-bb-blit-none -igt@xe_intel_bb@intel-bb-blit-x -igt@xe_intel_bb@intel-bb-blit-y -igt@xe_intel_bb@lot-of-buffers -igt@xe_intel_bb@offset-control -igt@xe_intel_bb@purge-bb -igt@xe_intel_bb@render -igt@xe_intel_bb@reset-bb -igt@xe_intel_bb@simple-bb -igt@xe_intel_bb@simple-bb-ctx -igt@xe_mmap@bad-extensions -igt@xe_mmap@bad-flags -igt@xe_mmap@bad-object -igt@xe_mmap@cpu-caching -igt@xe_mmap@system -igt@xe_mmap@vram -igt@xe_mmap@vram-system -igt@xe_pm_residency@gt-c6-on-idle -igt@xe_prime_self_import@basic-with_one_bo -igt@xe_prime_self_import@basic-with_fd_dup -#igt@xe_prime_self_import@basic-llseek-size -igt@xe_query@query-engines -igt@xe_query@query-mem-usage -igt@xe_query@query-gt-list -igt@xe_query@query-config -igt@xe_query@query-hwconfig -igt@xe_query@query-topology -igt@xe_query@query-invalid-extension -igt@xe_query@query-invalid-query -igt@xe_query@query-invalid-size -igt@xe_spin_batch@spin-basic -igt@xe_spin_batch@spin-batch -igt@xe_sriov_flr@flr-vf1-clear -igt@xe_sysfs_defaults@engine-defaults -igt@xe_sysfs_scheduler@preempt_timeout_us-invalid -igt@xe_sysfs_scheduler@preempt_timeout_us-min-max -igt@xe_sysfs_scheduler@timeslice_duration_us-invalid -igt@xe_sysfs_scheduler@timeslice_duration_us-min-max -igt@xe_sysfs_scheduler@job_timeout_ms-invalid -igt@xe_sysfs_scheduler@job_timeout_ms-min-max -#igt@xe_vm@bind-once -#igt@xe_vm@scratch -igt@xe_vm@shared-pte-page -igt@xe_vm@shared-pde-page -igt@xe_vm@shared-pde2-page -igt@xe_vm@shared-pde3-page -igt@xe_vm@bind-execqueues-independent -igt@xe_vm@large-split-binds-268435456 -igt@xe_vm@munmap-style-unbind-one-partial -igt@xe_vm@munmap-style-unbind-end -igt@xe_vm@munmap-style-unbind-front -igt@xe_vm@munmap-style-unbind-userptr-one-partial -igt@xe_vm@munmap-style-unbind-userptr-end -igt@xe_vm@munmap-style-unbind-userptr-front -igt@xe_vm@munmap-style-unbind-userptr-inval-end -igt@xe_vm@munmap-style-unbind-userptr-inval-front -igt@xe_pat@userptr-coh-none -igt@xe_pat@prime-self-import-coh -igt@xe_pat@prime-external-import-coh -igt@xe_pat@pat-index-all -igt@xe_pat@pat-index-xelp -igt@xe_pat@pat-index-xehpc -igt@xe_pat@pat-index-xelpg -igt@xe_pat@pat-index-xe2 -igt@xe_waitfence@abstime -igt@xe_waitfence@engine -igt@xe_waitfence@reltime - -# All tests that do module unloading and reloading are executed last. -# They will sometimes reveal issues of earlier tests leaving the -# driver in a broken state that is not otherwise noticed in that test. -igt@core_hotunplug@unbind-rebind - -# Run KUnit tests at the end -igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit -igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit -igt@xe_live_ktest@xe_dma_buf -igt@xe_live_ktest@xe_migrate - -# Move fault_mode tests at the end to unblock execution -igt@xe_exec_fault_mode@twice-basic -igt@xe_exec_fault_mode@many-basic -igt@xe_exec_fault_mode@twice-userptr -igt@xe_exec_fault_mode@twice-rebind -igt@xe_exec_fault_mode@twice-userptr-rebind -igt@xe_exec_fault_mode@twice-userptr-invalidate -igt@xe_exec_fault_mode@twice-bindexecqueue -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr -igt@xe_exec_fault_mode@twice-bindexecqueue-rebind -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate -igt@xe_exec_fault_mode@twice-basic-imm -igt@xe_exec_fault_mode@twice-userptr-imm -igt@xe_exec_fault_mode@twice-rebind-imm -igt@xe_exec_fault_mode@twice-userptr-rebind-imm -igt@xe_exec_fault_mode@twice-userptr-invalidate-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm -igt@xe_exec_fault_mode@twice-basic-prefetch -igt@xe_exec_fault_mode@twice-userptr-prefetch -igt@xe_exec_fault_mode@twice-rebind-prefetch -igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch -igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-prefetch -igt@xe_exec_fault_mode@twice-invalid-fault -igt@xe_exec_fault_mode@twice-invalid-userptr-fault -igt@xe_exec_threads@threads-basic -igt@xe_exec_threads@threads-mixed-basic -igt@xe_exec_threads@threads-mixed-shared-vm-basic -igt@xe_exec_threads@threads-mixed-fd-basic -igt@xe_exec_threads@threads-mixed-userptr-invalidate -igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race -igt@xe_evict@evict-beng-small -igt@xe_evict@evict-beng-small-cm -igt@xe_evict@evict-beng-small-external -igt@xe_evict@evict-beng-small-external-cm -igt@xe_evict@evict-beng-small-multi-vm -igt@xe_evict@evict-small -igt@xe_evict@evict-small-cm -igt@xe_evict@evict-small-external -igt@xe_evict@evict-small-external-cm -igt@xe_evict@evict-small-multi-vm +igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format +igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format +igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format +igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format +igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format +igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format +igt@kms_plane_scaling@plane-upscale-20x20-with-rotation +igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation +igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation +igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation +igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation +igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation +igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers +igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers +igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers +igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers +igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers +igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers +igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats +igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation +igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers +igt@kms_plane_scaling@planes-upscale-20x20 +igt@kms_plane_scaling@planes-upscale-factor-0-25 +igt@kms_plane_scaling@planes-scaler-unity-scaling +igt@kms_plane_scaling@planes-downscale-factor-0-25 +igt@kms_plane_scaling@planes-downscale-factor-0-5 +igt@kms_plane_scaling@planes-downscale-factor-0-75 +igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 +igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5 +igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75 +igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 +igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5 +igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75 +igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 +igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5 +igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75 +igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20 +igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25 +igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling +igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20 +igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25 +igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling +igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20 +igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25 +igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling +igt@kms_plane_scaling@intel-max-src-size +igt@kms_plane_scaling@invalid-num-scalers +igt@kms_plane_scaling@invalid-parameters +igt@kms_plane_scaling@2x-scaler-multi-pipe -- 2.43.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✗ Xe.CI.BAT: failure for Limit debug logging in CI for scaling tests 2025-11-06 9:22 [PATCH i-g-t v1 0/2] Limit debug logging in CI for scaling tests Naladala Ramanaidu 2025-11-06 9:22 ` [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Reduce debug log level " Naladala Ramanaidu 2025-11-06 9:22 ` [PATCH i-g-t v1 2/2] HAX patch do not merge Naladala Ramanaidu @ 2025-11-06 19:29 ` Patchwork 2025-11-06 20:30 ` ✗ i915.CI.BAT: " Patchwork 2025-11-07 17:02 ` ✗ Xe.CI.Full: " Patchwork 4 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-11-06 19:29 UTC (permalink / raw) To: Naladala, Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8864 bytes --] == Series Details == Series: Limit debug logging in CI for scaling tests URL : https://patchwork.freedesktop.org/series/157133/ State : failure == Summary == CI Bug Log - changes from XEIGT_8613_BAT -> XEIGTPW_14011_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14011_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14011_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (13 -> 11) ------------------------------ Missing (2): bat-adlp-vm bat-ptl-vm Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14011_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_scaling@invalid-parameters: - bat-lnl-2: NOTRUN -> [SKIP][1] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-lnl-2/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c: - bat-ptl-1: NOTRUN -> [SKIP][2] +104 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-ptl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - bat-ptl-2: NOTRUN -> [SKIP][3] +29 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-ptl-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html Known issues ------------ Here are the changes found in XEIGTPW_14011_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_plane_scaling@2x-scaler-multi-pipe: - bat-ptl-2: NOTRUN -> [SKIP][4] ([Intel XE#5879]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-ptl-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-dg2-oem2: NOTRUN -> [SKIP][5] ([Intel XE#309]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-dg2-oem2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-ptl-1: NOTRUN -> [SKIP][6] ([Intel XE#4887] / [Intel XE#5879]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-ptl-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-lnl-1: NOTRUN -> [SKIP][7] ([Intel XE#309]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-lnl-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2571]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-bmg-1: NOTRUN -> [SKIP][9] ([Intel XE#2571]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-adlp-7: NOTRUN -> [SKIP][10] ([Intel XE#309]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-adlp-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - bat-ptl-1: NOTRUN -> [SKIP][11] ([Intel XE#4887] / [Intel XE#5959]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-ptl-1/igt@kms_plane_scaling@intel-max-src-size.html - bat-lnl-1: NOTRUN -> [SKIP][12] ([Intel XE#3307]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-lnl-1/igt@kms_plane_scaling@intel-max-src-size.html - bat-bmg-2: NOTRUN -> [SKIP][13] ([Intel XE#2685] / [Intel XE#3307]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-bmg-2/igt@kms_plane_scaling@intel-max-src-size.html - bat-lnl-2: NOTRUN -> [SKIP][14] ([Intel XE#3307]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-lnl-2/igt@kms_plane_scaling@intel-max-src-size.html - bat-ptl-2: NOTRUN -> [SKIP][15] ([Intel XE#5959]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-ptl-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@invalid-num-scalers: - bat-bmg-2: NOTRUN -> [SKIP][16] ([Intel XE#3307]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-bmg-2/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@invalid-parameters: - bat-bmg-2: NOTRUN -> [SKIP][17] ([Intel XE#4887]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-bmg-2/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - bat-adlp-7: NOTRUN -> [SKIP][18] ([Intel XE#2763]) +29 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-adlp-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a: - bat-lnl-2: NOTRUN -> [SKIP][19] ([Intel XE#2763]) +139 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-lnl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - bat-atsm-2: NOTRUN -> [SKIP][20] ([Intel XE#1024]) +38 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-atsm-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - bat-adlp-7: NOTRUN -> [SKIP][21] ([Intel XE#2763] / [Intel XE#455]) +19 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-adlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d: - bat-bmg-1: NOTRUN -> [SKIP][22] ([Intel XE#2763]) +29 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - bat-pvc-2: NOTRUN -> [SKIP][23] ([Intel XE#1024]) +38 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-pvc-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d: - bat-bmg-2: NOTRUN -> [SKIP][24] ([Intel XE#2763]) +174 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a: - bat-lnl-1: NOTRUN -> [SKIP][25] ([Intel XE#2763]) +53 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d: - bat-ptl-1: NOTRUN -> [SKIP][26] ([Intel XE#4887]) +71 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/bat-ptl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4887 [Intel XE#5879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5879 [Intel XE#5959]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5959 Build changes ------------- * IGT: IGT_8613 -> IGTPW_14011 * Linux: xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad -> xe-4059-6c75cb975886e76f3a87367959a748dcc29bd9a3 IGTPW_14011: 14011 IGT_8613: b542242f5b116e3b554b4068ef5dfa4451075b2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad: 6aa8d62a50c33f091548cc961a713223d488d6ad xe-4059-6c75cb975886e76f3a87367959a748dcc29bd9a3: 6c75cb975886e76f3a87367959a748dcc29bd9a3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/index.html [-- Attachment #2: Type: text/html, Size: 11077 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.BAT: failure for Limit debug logging in CI for scaling tests 2025-11-06 9:22 [PATCH i-g-t v1 0/2] Limit debug logging in CI for scaling tests Naladala Ramanaidu ` (2 preceding siblings ...) 2025-11-06 19:29 ` ✗ Xe.CI.BAT: failure for Limit debug logging in CI for scaling tests Patchwork @ 2025-11-06 20:30 ` Patchwork 2025-11-07 17:02 ` ✗ Xe.CI.Full: " Patchwork 4 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-11-06 20:30 UTC (permalink / raw) To: Naladala, Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 48158 bytes --] == Series Details == Series: Limit debug logging in CI for scaling tests URL : https://patchwork.freedesktop.org/series/157133/ State : failure == Summary == CI Bug Log - changes from IGT_8613 -> IGTPW_14011 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14011 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14011, 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_14011/index.html Participating hosts (43 -> 42) ------------------------------ Additional (1): bat-adlp-6 Missing (2): fi-snb-2520m bat-adls-6 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14011: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - bat-jsl-5: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-jsl-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers (NEW): - bat-adlp-9: NOTRUN -> [SKIP][2] +44 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-adlp-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a (NEW): - bat-twl-1: NOTRUN -> [SKIP][3] +37 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-twl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c (NEW): - bat-jsl-1: NOTRUN -> [SKIP][4] +90 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-jsl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - bat-jsl-5: NOTRUN -> [INCOMPLETE][5] +3 other tests incomplete [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-jsl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation: - bat-twl-2: NOTRUN -> [SKIP][6] +70 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-twl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - bat-jsl-5: NOTRUN -> [SKIP][7] +57 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-jsl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d (NEW): - bat-rpls-4: NOTRUN -> [SKIP][8] +63 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-rpls-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - bat-arlh-3: NOTRUN -> [SKIP][9] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-arlh-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a (NEW): - bat-rplp-1: NOTRUN -> [SKIP][10] +44 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-rplp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a (NEW): - bat-adlp-6: NOTRUN -> [SKIP][11] +44 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-adlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - bat-adlp-11: NOTRUN -> [SKIP][12] +134 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-adlp-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html New tests --------- New tests have been introduced between IGT_8613 and IGTPW_14011: ### New IGT tests (47) ### * igt@kms_plane_scaling@invalid-num-scalers@pipe-a-dp-7-invalid-num-scalers: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_plane_scaling@invalid-num-scalers@pipe-b-dp-7-invalid-num-scalers: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_plane_scaling@invalid-num-scalers@pipe-c-dp-7-invalid-num-scalers: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_plane_scaling@invalid-num-scalers@pipe-d-dp-7-invalid-num-scalers: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - Statuses : 41 skip(s) - Exec time: [0.0, 15.52] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - Statuses : 39 skip(s) - Exec time: [0.0, 3.65] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b: - Statuses : 39 skip(s) - Exec time: [0.0, 5.91] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c: - Statuses : 37 skip(s) - Exec time: [0.0, 5.93] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d: - Statuses : 19 skip(s) - Exec time: [0.0, 2.88] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - Statuses : 41 skip(s) - Exec time: [0.0, 17.90] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a: - Statuses : 39 skip(s) - Exec time: [0.0, 3.30] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - Statuses : 39 skip(s) - Exec time: [0.0, 7.84] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c: - Statuses : 37 skip(s) - Exec time: [0.0, 6.74] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - Statuses : 19 skip(s) - Exec time: [0.0, 2.58] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - Statuses : 41 skip(s) - Exec time: [0.0, 15.19] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: - Statuses : 39 skip(s) - Exec time: [0.0, 3.53] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b: - Statuses : 39 skip(s) - Exec time: [0.0, 5.82] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: - Statuses : 37 skip(s) - Exec time: [0.0, 5.82] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - Statuses : 19 skip(s) - Exec time: [0.0, 3.15] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - Statuses : 39 skip(s) - Exec time: [0.0, 4.28] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b: - Statuses : 39 skip(s) - Exec time: [0.0, 6.08] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c: - Statuses : 37 skip(s) - Exec time: [0.0, 6.00] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - Statuses : 19 skip(s) - Exec time: [0.0, 3.09] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - Statuses : 39 skip(s) - Exec time: [0.0, 3.58] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: - Statuses : 39 skip(s) - Exec time: [0.0, 6.11] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c: - Statuses : 37 skip(s) - Exec time: [0.0, 6.01] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - Statuses : 19 skip(s) - Exec time: [0.0, 2.90] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a: - Statuses : 39 skip(s) - Exec time: [0.0, 3.63] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b: - Statuses : 39 skip(s) - Exec time: [0.0, 5.96] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - Statuses : 37 skip(s) - Exec time: [0.0, 5.98] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - Statuses : 19 skip(s) - Exec time: [0.0, 2.96] s * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a: - Statuses : 39 skip(s) - Exec time: [0.0, 3.37] s * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - Statuses : 39 skip(s) - Exec time: [0.0, 5.97] s * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c: - Statuses : 37 skip(s) - Exec time: [0.0, 5.98] s * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d: - Statuses : 19 skip(s) - Exec time: [0.0, 3.01] s * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a: - Statuses : 39 skip(s) - Exec time: [0.0, 3.63] s * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: - Statuses : 39 skip(s) - Exec time: [0.0, 6.12] s * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - Statuses : 37 skip(s) - Exec time: [0.0, 6.06] s * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - Statuses : 19 skip(s) - Exec time: [0.0, 3.08] s * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - Statuses : 39 skip(s) - Exec time: [0.0, 3.72] s * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - Statuses : 39 skip(s) - Exec time: [0.0, 6.07] s * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c: - Statuses : 37 skip(s) - Exec time: [0.0, 6.05] s * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d: - Statuses : 19 skip(s) - Exec time: [0.0, 3.13] s * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a: - Statuses : 39 skip(s) - Exec time: [0.0, 3.60] s * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - Statuses : 39 skip(s) - Exec time: [0.0, 6.05] s * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c: - Statuses : 37 skip(s) - Exec time: [0.0, 6.08] s * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - Statuses : 19 skip(s) - Exec time: [0.0, 3.18] s Known issues ------------ Here are the changes found in IGTPW_14011 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_plane_scaling@2x-scaler-multi-pipe: - fi-cfl-guc: NOTRUN -> [SKIP][13] +70 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-cfl-guc/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-mtlp-6: NOTRUN -> [SKIP][14] ([i915#8152] / [i915#9792]) +9 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-arls-6: NOTRUN -> [SKIP][15] ([i915#13046] / [i915#9809]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-arls-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#13046] / [i915#5354] / [i915#9423]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-9/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#9809]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-dg1-6: NOTRUN -> [SKIP][18] ([i915#12311] / [i915#5354] / [i915#8152]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-jsl-1: NOTRUN -> [SKIP][19] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-jsl-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-arls-5: NOTRUN -> [SKIP][20] ([i915#13046] / [i915#9809]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-arls-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-arlh-3: NOTRUN -> [SKIP][21] ([i915#13046]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-arlh-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-dg1-7: NOTRUN -> [SKIP][22] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-adlp-9: NOTRUN -> [SKIP][23] ([i915#13046]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-adlp-9/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-twl-2: NOTRUN -> [SKIP][24] ([i915#13046]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-twl-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-dg2-11: NOTRUN -> [SKIP][25] ([i915#13046] / [i915#5354] / [i915#9423]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-11/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-twl-1: NOTRUN -> [SKIP][26] ([i915#13046]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-twl-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-jsl-5: NOTRUN -> [SKIP][27] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-jsl-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-dg2-8: NOTRUN -> [SKIP][28] ([i915#5354] / [i915#8152] / [i915#9423]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - bat-rplp-1: NOTRUN -> [SKIP][29] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-rplp-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - fi-tgl-1115g4: NOTRUN -> [SKIP][30] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-tgl-1115g4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - bat-mtlp-9: NOTRUN -> [SKIP][31] ([i915#6953]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-9/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@invalid-num-scalers: - bat-mtlp-6: NOTRUN -> [SKIP][32] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9792]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-6/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@invalid-parameters: - fi-rkl-11600: NOTRUN -> [SKIP][33] ([i915#8152]) +9 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-rkl-11600/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers (NEW): - bat-dg1-6: NOTRUN -> [SKIP][34] ([i915#12247] / [i915#12311] / [i915#8152]) +46 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c (NEW): - bat-dg2-11: NOTRUN -> [SKIP][35] ([i915#12247]) +39 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d (NEW): - bat-dg1-7: NOTRUN -> [SKIP][36] ([i915#12247]) +73 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format (NEW): - bat-dg2-14: NOTRUN -> [SKIP][37] ([i915#12247] / [i915#9423]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-14/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a (NEW): - fi-ilk-650: NOTRUN -> [SKIP][38] +138 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-ilk-650/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d (NEW): - bat-mtlp-9: NOTRUN -> [SKIP][39] ([i915#12247]) +68 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation (NEW): - bat-dg2-9: NOTRUN -> [SKIP][40] ([i915#12247] / [i915#9423]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html - bat-dg2-11: NOTRUN -> [SKIP][41] ([i915#12247] / [i915#9423]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a (NEW): - bat-apl-1: NOTRUN -> [SKIP][42] +68 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-apl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c (NEW): - fi-tgl-1115g4: NOTRUN -> [SKIP][43] ([i915#12247]) +73 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-tgl-1115g4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - fi-pnv-d510: NOTRUN -> [SKIP][44] +48 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-pnv-d510/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - bat-arlh-3: NOTRUN -> [SKIP][45] ([i915#12247]) +112 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-arlh-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation: - bat-rpls-4: NOTRUN -> [SKIP][46] ([i915#9423]) +9 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-rpls-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html - bat-dg2-8: NOTRUN -> [SKIP][47] ([i915#12247] / [i915#8152] / [i915#9423]) +13 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - fi-ivb-3770: NOTRUN -> [SKIP][48] +183 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-ivb-3770/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers: - bat-dg2-8: NOTRUN -> [SKIP][49] ([i915#8152] / [i915#9423]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c: - fi-rkl-11600: NOTRUN -> [SKIP][50] ([i915#12247] / [i915#8152]) +60 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-rkl-11600/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d: - bat-mtlp-6: NOTRUN -> [SKIP][51] ([i915#12247] / [i915#8152]) +32 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c: - fi-bsw-nick: NOTRUN -> [SKIP][52] +183 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-bsw-nick/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - fi-rkl-11600: NOTRUN -> [SKIP][53] ([i915#3555] / [i915#8152]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-rkl-11600/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html - bat-dg2-8: NOTRUN -> [SKIP][54] ([i915#3555] / [i915#8152] / [i915#9423]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d: - bat-mtlp-6: NOTRUN -> [SKIP][55] ([i915#8152]) +11 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b: - fi-rkl-11600: NOTRUN -> [SKIP][56] ([i915#12247]) +89 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-rkl-11600/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d: - bat-adlp-11: NOTRUN -> [SKIP][57] ([i915#8152]) +68 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-adlp-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - bat-dg1-7: NOTRUN -> [SKIP][58] ([i915#3555]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - bat-rpls-4: NOTRUN -> [SKIP][59] ([i915#3555] / [i915#9423]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-rpls-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - bat-jsl-5: NOTRUN -> [SKIP][60] ([i915#3555]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-jsl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - bat-jsl-1: NOTRUN -> [SKIP][61] ([i915#3555]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-jsl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - fi-tgl-1115g4: NOTRUN -> [SKIP][62] ([i915#3555]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-tgl-1115g4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a: - bat-mtlp-6: NOTRUN -> [SKIP][63] ([i915#12247]) +134 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d: - bat-dg1-6: NOTRUN -> [SKIP][64] ([i915#12311] / [i915#8152]) +20 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d: - bat-dg2-8: NOTRUN -> [SKIP][65] ([i915#8152]) +11 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b: - fi-glk-j4005: NOTRUN -> [SKIP][66] +64 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-glk-j4005/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - bat-mtlp-9: NOTRUN -> [SKIP][67] ([i915#12247] / [i915#6953]) +6 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-9/igt@kms_plane_scaling@planes-downscale-factor-0-25.html - bat-dg2-9: NOTRUN -> [SKIP][68] ([i915#12247] / [i915#6953] / [i915#9423]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - bat-atsm-1: NOTRUN -> [SKIP][69] ([i915#6078]) +48 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-atsm-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html - bat-mtlp-6: NOTRUN -> [SKIP][70] ([i915#12247] / [i915#8152] / [i915#9792]) +13 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b (NEW): - bat-arls-6: NOTRUN -> [SKIP][71] ([i915#12247]) +69 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-arls-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - fi-tgl-1115g4: NOTRUN -> [SKIP][72] ([i915#12247] / [i915#6953]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-tgl-1115g4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - bat-adlp-6: NOTRUN -> [SKIP][73] ([i915#6953]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-adlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - bat-dg1-7: NOTRUN -> [SKIP][74] ([i915#12247] / [i915#6953]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - bat-adlp-9: NOTRUN -> [SKIP][75] ([i915#6953]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-adlp-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - bat-rpls-4: NOTRUN -> [SKIP][76] ([i915#6953] / [i915#9423]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-rpls-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b (NEW): - bat-dg2-9: NOTRUN -> [SKIP][77] ([i915#12247]) +39 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c (NEW): - bat-dg2-14: NOTRUN -> [SKIP][78] ([i915#12247]) +39 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html - bat-dg2-8: NOTRUN -> [SKIP][79] ([i915#12247]) +134 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - fi-kbl-x1275: NOTRUN -> [SKIP][80] +183 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-kbl-x1275/igt@kms_plane_scaling@planes-downscale-factor-0-5.html - bat-adlp-11: NOTRUN -> [SKIP][81] ([i915#6953] / [i915#8152]) +11 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-adlp-11/igt@kms_plane_scaling@planes-downscale-factor-0-5.html - bat-dg2-8: NOTRUN -> [SKIP][82] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) +6 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-5.html - bat-mtlp-6: NOTRUN -> [SKIP][83] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9792]) +6 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a: - fi-elk-e7500: NOTRUN -> [SKIP][84] +138 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-elk-e7500/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a: - bat-mtlp-8: NOTRUN -> [SKIP][85] ([i915#12247]) +101 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html - bat-dg1-6: NOTRUN -> [SKIP][86] ([i915#12247] / [i915#12311]) +134 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - fi-rkl-11600: NOTRUN -> [SKIP][87] ([i915#6953] / [i915#8152]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-rkl-11600/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html - bat-twl-2: NOTRUN -> [SKIP][88] ([i915#6953]) +8 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-twl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - bat-arls-5: NOTRUN -> [SKIP][89] ([i915#12247] / [i915#6953]) +9 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-arls-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - bat-mtlp-6: NOTRUN -> [SKIP][90] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9792]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html - bat-adlp-11: NOTRUN -> [SKIP][91] ([i915#3558] / [i915#8152]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-adlp-11/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html - bat-dg1-6: NOTRUN -> [SKIP][92] ([i915#12247] / [i915#12311] / [i915#3558] / [i915#8152]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html - bat-dg2-8: NOTRUN -> [SKIP][93] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - bat-mtlp-6: NOTRUN -> [SKIP][94] ([i915#3555] / [i915#8152] / [i915#9792]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html - bat-adlp-11: NOTRUN -> [SKIP][95] ([i915#3555] / [i915#8152]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-adlp-11/igt@kms_plane_scaling@planes-scaler-unity-scaling.html - bat-dg1-6: NOTRUN -> [SKIP][96] ([i915#12311] / [i915#3555] / [i915#8152]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a: - bat-kbl-2: NOTRUN -> [SKIP][97] +183 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-kbl-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - fi-kbl-7567u: NOTRUN -> [SKIP][98] +70 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-kbl-7567u/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - fi-cfl-8700k: NOTRUN -> [SKIP][99] +71 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-cfl-8700k/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - bat-twl-1: NOTRUN -> [SKIP][100] ([i915#6953]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-twl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - bat-jsl-5: NOTRUN -> [SKIP][101] ([i915#6953]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-jsl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - bat-dg2-14: NOTRUN -> [SKIP][102] ([i915#12247] / [i915#6953] / [i915#9423]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-14/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - bat-rplp-1: NOTRUN -> [SKIP][103] ([i915#6953]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-rplp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b (NEW): - fi-skl-6600u: NOTRUN -> [SKIP][104] +107 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-skl-6600u/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c (NEW): - fi-hsw-4770: NOTRUN -> [SKIP][105] +183 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-hsw-4770/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - bat-mtlp-8: NOTRUN -> [SKIP][106] ([i915#6953]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html - bat-dg1-6: NOTRUN -> [SKIP][107] ([i915#12311] / [i915#6953] / [i915#8152]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html - bat-dg2-8: NOTRUN -> [SKIP][108] ([i915#6953] / [i915#8152] / [i915#9423]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html - bat-jsl-1: NOTRUN -> [SKIP][109] ([i915#6953]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-jsl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75: - bat-dg1-6: NOTRUN -> [SKIP][110] ([i915#12311] / [i915#3555] / [i915#6953] / [i915#8152]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html - bat-dg2-8: NOTRUN -> [SKIP][111] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20: - bat-mtlp-6: NOTRUN -> [SKIP][112] ([i915#6953] / [i915#8152] / [i915#9792]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - bat-adlp-6: NOTRUN -> [SKIP][113] ([i915#3555]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-adlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-mtlp-6: NOTRUN -> [SKIP][114] ([i915#12247] / [i915#3555] / [i915#8152] / [i915#9792]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-dg1-7: NOTRUN -> [SKIP][115] ([i915#12247] / [i915#3555]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-adlp-9: NOTRUN -> [SKIP][116] ([i915#3555]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-adlp-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-dg2-11: NOTRUN -> [SKIP][117] ([i915#12247] / [i915#3555] / [i915#9423]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-dg2-14: NOTRUN -> [SKIP][118] ([i915#12247] / [i915#3555] / [i915#9423]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-14/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-rplp-1: NOTRUN -> [SKIP][119] ([i915#3555]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-rplp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - fi-rkl-11600: NOTRUN -> [SKIP][120] ([i915#12247] / [i915#3555] / [i915#8152]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-rkl-11600/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-mtlp-9: NOTRUN -> [SKIP][121] ([i915#12247] / [i915#3555]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-dg2-9: NOTRUN -> [SKIP][122] ([i915#12247] / [i915#3555] / [i915#9423]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-mtlp-8: NOTRUN -> [SKIP][123] ([i915#12247] / [i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-dg1-6: NOTRUN -> [SKIP][124] ([i915#12247] / [i915#12311] / [i915#3555] / [i915#8152]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-dg2-8: NOTRUN -> [SKIP][125] ([i915#12247] / [i915#3555] / [i915#8152] / [i915#9423]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - fi-tgl-1115g4: NOTRUN -> [SKIP][126] ([i915#12247] / [i915#3555]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-tgl-1115g4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - bat-mtlp-9: NOTRUN -> [SKIP][127] ([i915#12247] / [i915#3555] / [i915#6953]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html - bat-adlp-11: NOTRUN -> [SKIP][128] ([i915#3555] / [i915#6953] / [i915#8152]) +5 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-adlp-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html - bat-mtlp-8: NOTRUN -> [SKIP][129] ([i915#12247] / [i915#3555] / [i915#6953]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html - bat-dg1-6: NOTRUN -> [SKIP][130] ([i915#12247] / [i915#12311] / [i915#3555] / [i915#6953] / [i915#8152]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html - bat-dg2-8: NOTRUN -> [SKIP][131] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html - bat-jsl-1: NOTRUN -> [SKIP][132] ([i915#3555] / [i915#6953]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-jsl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html - bat-mtlp-6: NOTRUN -> [SKIP][133] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9792]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a: - fi-kbl-guc: NOTRUN -> [SKIP][134] +183 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-kbl-guc/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - bat-arls-6: NOTRUN -> [SKIP][135] ([i915#12247] / [i915#6953]) +9 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-arls-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20@pipe-d: - bat-arlh-2: NOTRUN -> [SKIP][136] ([i915#11346]) +33 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-arlh-2/igt@kms_plane_scaling@planes-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - fi-rkl-11600: NOTRUN -> [SKIP][137] ([i915#3555] / [i915#6953] / [i915#8152]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-rkl-11600/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - fi-rkl-11600: NOTRUN -> [SKIP][138] ([i915#12247] / [i915#6953] / [i915#8152]) +6 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-rkl-11600/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - bat-dg2-11: NOTRUN -> [SKIP][139] ([i915#12247] / [i915#6953] / [i915#9423]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a (NEW): - bat-arls-5: NOTRUN -> [SKIP][140] ([i915#12247]) +69 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-arls-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - bat-mtlp-8: NOTRUN -> [SKIP][141] ([i915#12247] / [i915#6953]) +6 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html - bat-dg1-6: NOTRUN -> [SKIP][142] ([i915#12247] / [i915#12311] / [i915#6953] / [i915#8152]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg1-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a: - fi-kbl-8809g: NOTRUN -> [SKIP][143] +183 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-kbl-8809g/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - bat-arlh-2: NOTRUN -> [SKIP][144] ([i915#11346] / [i915#12247]) +194 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-arlh-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html - fi-rkl-11600: NOTRUN -> [SKIP][145] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/fi-rkl-11600/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d: - bat-dg2-8: NOTRUN -> [SKIP][146] ([i915#12247] / [i915#8152]) +32 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/bat-dg2-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3558 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8613 -> IGTPW_14011 * Linux: CI_DRM_17499 -> CI_DRM_17501 CI-20190529: 20190529 CI_DRM_17499: 6aa8d62a50c33f091548cc961a713223d488d6ad @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_17501: 9deffe4baace482f9414f36f53f3385868533fd6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14011: 14011 IGT_8613: b542242f5b116e3b554b4068ef5dfa4451075b2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14011/index.html [-- Attachment #2: Type: text/html, Size: 69579 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for Limit debug logging in CI for scaling tests 2025-11-06 9:22 [PATCH i-g-t v1 0/2] Limit debug logging in CI for scaling tests Naladala Ramanaidu ` (3 preceding siblings ...) 2025-11-06 20:30 ` ✗ i915.CI.BAT: " Patchwork @ 2025-11-07 17:02 ` Patchwork 4 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-11-07 17:02 UTC (permalink / raw) To: Naladala, Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 45916 bytes --] == Series Details == Series: Limit debug logging in CI for scaling tests URL : https://patchwork.freedesktop.org/series/157133/ State : failure == Summary == CI Bug Log - changes from XEIGT_8613_FULL -> XEIGTPW_14011_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14011_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14011_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 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14011_FULL: ### IGT changes ### #### Possible regressions #### * igt@panthor/panthor_group@group_submit: - shard-dg2-set2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-433/igt@panthor/panthor_group@group_submit.html * igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate: - shard-dg2-set2: [PASS][2] -> [ABORT][3] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-dg2-432/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-435/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate.html * igt@xe_pm_residency@cpg-basic: - shard-bmg: NOTRUN -> [DMESG-FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-2/igt@xe_pm_residency@cpg-basic.html Known issues ------------ Here are the changes found in XEIGTPW_14011_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1125]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-5/igt@intel_hwmon@hwmon-write.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#316]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +4 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#367]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#2907]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-2/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: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#787]) +55 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3432]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#3432]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][21] -> [INCOMPLETE][22] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][23] -> [INCOMPLETE][24] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][25] -> [INCOMPLETE][26] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_cdclk@mode-transition: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2724]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-2/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_color@ctm-0-25: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#306]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-7/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#373]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-433/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#373]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-2/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2252]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: NOTRUN -> [FAIL][34] ([Intel XE#1178]) +2 other tests fail [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-464/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][35] ([Intel XE#3304]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-464/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][36] ([Intel XE#1178]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-8/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#308]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#309]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#2291]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1340]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#4494] / [i915#3804]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-433/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_dp_link_training@uhbr-mst: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#4354]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-4/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#1138]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-2/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#2316]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-nonexisting-fb: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1421]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-7/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][48] -> [FAIL][49] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: NOTRUN -> [INCOMPLETE][50] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-7/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1401] / [Intel XE#1745]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1401]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2293]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#651]) +14 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#5390]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2311]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-stridechange: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#651]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-stridechange.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#6312]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2313]) +8 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2312]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#653]) +15 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#656]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#3374] / [Intel XE#3544]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#455]) +13 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-464/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#1503]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-8/igt@kms_hdr@invalid-metadata-sizes.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2763]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#718]) +1 other test fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-464/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-8/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr@fbc-pr-sprite-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-433/igt@kms_psr@fbc-pr-sprite-plane-move.html * igt@kms_psr@pr-basic: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1406]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-3/igt@kms_psr@pr-basic.html * igt@kms_psr@psr-sprite-render: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-2/igt@kms_psr@psr-sprite-render.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#3414]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#3414] / [Intel XE#3904]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-7/igt@kms_rotation_crc@bad-tiling.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#1435]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#330]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-7/igt@kms_tv_load_detect@load-detect.html * igt@panthor/panthor_group@group_submit: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#6530]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-3/igt@panthor/panthor_group@group_submit.html - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#6530]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-2/igt@panthor/panthor_group@group_submit.html * igt@xe_copy_basic@mem-page-copy-1: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#5300]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-464/igt@xe_copy_basic@mem-page-copy-1.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1126]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug@basic-vm-access: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#4837]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@xe_eudebug@basic-vm-access.html - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#4837]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-464/igt@xe_eudebug@basic-vm-access.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint-faultable: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#4837]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-8/igt@xe_eudebug_online@interrupt-all-set-breakpoint-faultable.html * igt@xe_evict@evict-large-external: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#688]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-4/igt@xe_evict@evict-large-external.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2322]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#288]) +14 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-436/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2360]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_system_allocator@process-many-stride-mmap-prefetch-shared: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#4915]) +165 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-432/igt@xe_exec_system_allocator@process-many-stride-mmap-prefetch-shared.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4943]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-huge: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#4943]) +4 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-huge.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2229]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-432/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_oa@non-zero-reason-all: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#6377]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-432/igt@xe_oa@non-zero-reason-all.html * igt@xe_oa@syncs-userptr-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#3573]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-436/igt@xe_oa@syncs-userptr-wait-cfg.html * igt@xe_peer2peer@write: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1061]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-7/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-basic: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2284] / [Intel XE#366]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-463/igt@xe_pm@d3cold-basic.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2284]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-1/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0: - shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#6251]) +1 other test fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-lnl-7/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_compute0.html * igt@xe_pxp@pxp-termination-key-update-post-rpm: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#4733]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-432/igt@xe_pxp@pxp-termination-key-update-post-rpm.html - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#4733]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-5/igt@xe_pxp@pxp-termination-key-update-post-rpm.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#944]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-434/igt@xe_query@multigpu-query-engines.html - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#944]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-1/igt@xe_query@multigpu-query-engines.html * igt@xe_render_copy@render-stress-0-copies: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#4814]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-436/igt@xe_render_copy@render-stress-0-copies.html * igt@xe_sriov_vram@vf-access-after-resize-up: - shard-bmg: [PASS][110] -> [FAIL][111] ([Intel XE#5937]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-5/igt@xe_sriov_vram@vf-access-after-resize-up.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-1/igt@xe_sriov_vram@vf-access-after-resize-up.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1: - shard-lnl: [FAIL][112] ([Intel XE#5993]) -> [PASS][113] +3 other tests pass [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][114] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4: - shard-dg2-set2: [INCOMPLETE][116] ([Intel XE#6014] / [Intel XE#6168]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][118] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [SKIP][120] ([Intel XE#2291]) -> [PASS][121] +1 other test pass [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [FAIL][122] ([Intel XE#5299]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [SKIP][124] ([Intel XE#2316]) -> [PASS][125] +2 other tests pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-lnl: [FAIL][126] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][128] ([Intel XE#718]) -> [PASS][129] +1 other test pass [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html * igt@xe_gt_freq@freq_suspend: - shard-bmg: [DMESG-WARN][130] ([Intel XE#6481]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-6/igt@xe_gt_freq@freq_suspend.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-1/igt@xe_gt_freq@freq_suspend.html * igt@xe_pmu@gt-c6-idle: - shard-dg2-set2: [FAIL][132] ([Intel XE#6366]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-dg2-466/igt@xe_pmu@gt-c6-idle.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-dg2-433/igt@xe_pmu@gt-c6-idle.html #### Warnings #### * igt@kms_content_protection@srm: - shard-bmg: [SKIP][134] ([Intel XE#2341]) -> [FAIL][135] ([Intel XE#1178]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-6/igt@kms_content_protection@srm.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-8/igt@kms_content_protection@srm.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-bmg: [FAIL][136] ([Intel XE#3098]) -> [SKIP][137] ([Intel XE#2316]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-5/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][138] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][139] ([Intel XE#301]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][140] ([Intel XE#2311]) -> [SKIP][141] ([Intel XE#2312]) +11 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][142] ([Intel XE#2312]) -> [SKIP][143] ([Intel XE#2311]) +10 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][144] ([Intel XE#2312]) -> [SKIP][145] ([Intel XE#5390]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][146] ([Intel XE#5390]) -> [SKIP][147] ([Intel XE#2312]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][148] ([Intel XE#2313]) -> [SKIP][149] ([Intel XE#2312]) +7 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][150] ([Intel XE#2312]) -> [SKIP][151] ([Intel XE#2313]) +8 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: [SKIP][152] ([Intel XE#4596]) -> [SKIP][153] ([Intel XE#5021]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: [SKIP][154] ([Intel XE#5021]) -> [SKIP][155] ([Intel XE#4596]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-yf.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][156] ([Intel XE#2426]) -> [SKIP][157] ([Intel XE#2509]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8613/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [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#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299 [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300 [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993 [Intel XE#6014]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6014 [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168 [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6366 [Intel XE#6377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6377 [Intel XE#6481]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6481 [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#6530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6530 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8613 -> IGTPW_14011 * Linux: xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad -> xe-4059-6c75cb975886e76f3a87367959a748dcc29bd9a3 IGTPW_14011: 14011 IGT_8613: b542242f5b116e3b554b4068ef5dfa4451075b2b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4058-6aa8d62a50c33f091548cc961a713223d488d6ad: 6aa8d62a50c33f091548cc961a713223d488d6ad xe-4059-6c75cb975886e76f3a87367959a748dcc29bd9a3: 6c75cb975886e76f3a87367959a748dcc29bd9a3 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14011/index.html [-- Attachment #2: Type: text/html, Size: 53770 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-11-07 20:34 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-11-06 9:22 [PATCH i-g-t v1 0/2] Limit debug logging in CI for scaling tests Naladala Ramanaidu 2025-11-06 9:22 ` [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Reduce debug log level " Naladala Ramanaidu 2025-11-06 12:59 ` Samala, Pranay 2025-11-06 13:09 ` Jani Nikula 2025-11-07 13:54 ` Ville Syrjälä 2025-11-07 16:10 ` Naladala, Ramanaidu 2025-11-07 20:34 ` Kamil Konieczny 2025-11-06 9:22 ` [PATCH i-g-t v1 2/2] HAX patch do not merge Naladala Ramanaidu 2025-11-06 19:29 ` ✗ Xe.CI.BAT: failure for Limit debug logging in CI for scaling tests Patchwork 2025-11-06 20:30 ` ✗ i915.CI.BAT: " Patchwork 2025-11-07 17:02 ` ✗ Xe.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