* [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests
@ 2026-03-11 7:40 Naladala Ramanaidu
2026-03-11 7:40 ` [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Skip unsupported scaling scenarios Naladala Ramanaidu
` (8 more replies)
0 siblings, 9 replies; 17+ messages in thread
From: Naladala Ramanaidu @ 2026-03-11 7:40 UTC (permalink / raw)
To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu
Some scaling tests are expected to be skipped, but they still iterate over
all display modes, which generates excessive logging and eventually hits
CI disk‑usage limits. To address this, early skip logic is added before the
dynamic tests begin, preventing unnecessary mode iterations and reducing CI
load.
Naladala Ramanaidu (2):
tests/kms_plane_scaling: Skip unsupported scaling scenarios
HAX patch do not merge
tests/intel-ci/i915.fast-feedback.testlist | 216 +++-----------
tests/intel-ci/xe.fast-feedback.testlist | 323 +++------------------
tests/kms_plane_scaling.c | 38 +++
3 files changed, 128 insertions(+), 449 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 17+ messages in thread* [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Skip unsupported scaling scenarios 2026-03-11 7:40 [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Naladala Ramanaidu @ 2026-03-11 7:40 ` Naladala Ramanaidu 2026-03-11 10:00 ` B, Jeevan 2026-03-17 7:38 ` [PATCH i-g-t v2] " Naladala Ramanaidu 2026-03-11 7:40 ` [PATCH i-g-t v1 2/2] HAX patch do not merge Naladala Ramanaidu ` (7 subsequent siblings) 8 siblings, 2 replies; 17+ messages in thread From: Naladala Ramanaidu @ 2026-03-11 7:40 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu Skip unsupported downscale tests on Intel platforms, aligning test coverage with hardware limitations and reducing CI noise. Bspec: 50441 Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- tests/kms_plane_scaling.c | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index ab619fb2b..60390fae8 100644 --- a/tests/kms_plane_scaling.c +++ b/tests/kms_plane_scaling.c @@ -533,6 +533,24 @@ const struct { }, }; +static bool is_intel_downscale_supported(data_t *data, const char * const name, + const enum scaler_combo_test_type test_type) +{ + if ((intel_display_ver(data->devid) >= 14) && + (test_type == TEST_PLANES_DOWNSCALE)) + return false; + + if ((intel_display_ver(data->devid) >= 14) && + (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) && + strstr(name, "planes-upscale")) + return false; + + if (strstr(name, "downscale-factor-0-25")) + return false; + + return true; +} + static int get_width(drmModeModeInfo *mode, double scaling_factor) { if (scaling_factor == 0.0) @@ -1373,6 +1391,11 @@ int igt_main_args("", long_opts, help_str, opt_handler, &data) 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) { + if (is_intel_device(data.drm_fd) && + !is_intel_downscale_supported(&data, + scaler_with_pixel_format_tests[index].name, + 0)) + continue; for_each_crtc(&data.display, crtc) { igt_dynamic_f("pipe-%s", igt_crtc_name(crtc)) { for_each_valid_output_on_crtc(&data.display, @@ -1404,6 +1427,11 @@ int igt_main_args("", long_opts, help_str, opt_handler, &data) for (int index = 0; index < ARRAY_SIZE(scaler_with_rotation_tests); index++) { igt_describe(scaler_with_rotation_tests[index].describe); igt_subtest_with_dynamic(scaler_with_rotation_tests[index].name) { + if (is_intel_device(data.drm_fd) && + !is_intel_downscale_supported(&data, + scaler_with_rotation_tests[index].name, + 0)) + continue; for_each_crtc(&data.display, crtc) { igt_dynamic_f("pipe-%s", igt_crtc_name(crtc)) { for_each_valid_output_on_crtc(&data.display, @@ -1435,6 +1463,11 @@ int igt_main_args("", long_opts, help_str, opt_handler, &data) for (int index = 0; index < ARRAY_SIZE(scaler_with_modifiers_tests); index++) { igt_describe(scaler_with_modifiers_tests[index].describe); igt_subtest_with_dynamic(scaler_with_modifiers_tests[index].name) { + if (is_intel_device(data.drm_fd) && + !is_intel_downscale_supported(&data, + scaler_with_modifiers_tests[index].name, + 0)) + continue; for_each_crtc(&data.display, crtc) { igt_dynamic_f("pipe-%s", igt_crtc_name(crtc)) { for_each_valid_output_on_crtc(&data.display, @@ -1548,6 +1581,11 @@ int igt_main_args("", long_opts, help_str, opt_handler, &data) for (int index = 0; index < ARRAY_SIZE(scaler_with_2_planes_tests); index++) { igt_describe(scaler_with_2_planes_tests[index].describe); igt_subtest_with_dynamic(scaler_with_2_planes_tests[index].name) { + if (is_intel_device(data.drm_fd) && + !is_intel_downscale_supported(&data, + scaler_with_2_planes_tests[index].name, + scaler_with_2_planes_tests[index].test_type)) + continue; for_each_crtc(&data.display, crtc) { igt_dynamic_f("pipe-%s", igt_crtc_name(crtc)) { for_each_valid_output_on_crtc(&data.display, -- 2.43.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Skip unsupported scaling scenarios 2026-03-11 7:40 ` [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Skip unsupported scaling scenarios Naladala Ramanaidu @ 2026-03-11 10:00 ` B, Jeevan 2026-03-11 10:15 ` Naladala, Ramanaidu 2026-03-17 7:38 ` [PATCH i-g-t v2] " Naladala Ramanaidu 1 sibling, 1 reply; 17+ messages in thread From: B, Jeevan @ 2026-03-11 10:00 UTC (permalink / raw) To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org Cc: Sharma, Swati2, Naladala, Ramanaidu > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Naladala > Ramanaidu > Sent: Wednesday, March 11, 2026 1:10 PM > To: igt-dev@lists.freedesktop.org > Cc: Sharma, Swati2 <swati2.sharma@intel.com>; Naladala, Ramanaidu > <ramanaidu.naladala@intel.com> > Subject: [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Skip unsupported scaling > scenarios > > Skip unsupported downscale tests on Intel platforms, aligning test coverage with > hardware limitations and reducing CI noise. > > Bspec: 50441 > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > --- > tests/kms_plane_scaling.c | 38 ++++++++++++++++++++++++++++++++++++++ > 1 file changed, 38 insertions(+) > > diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index > ab619fb2b..60390fae8 100644 > --- a/tests/kms_plane_scaling.c > +++ b/tests/kms_plane_scaling.c > @@ -533,6 +533,24 @@ const struct { > }, > }; > > +static bool is_intel_downscale_supported(data_t *data, const char * const > name, > + const enum scaler_combo_test_type > test_type) { > + if ((intel_display_ver(data->devid) >= 14) && > + (test_type == TEST_PLANES_DOWNSCALE)) > + return false; > + > + if ((intel_display_ver(data->devid) >= 14) && > + (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) && > + strstr(name, "planes-upscale")) > + return false; > + > + if (strstr(name, "downscale-factor-0-25")) > + return false; > + > + return true; > +} > + > static int get_width(drmModeModeInfo *mode, double scaling_factor) { > if (scaling_factor == 0.0) > @@ -1373,6 +1391,11 @@ int igt_main_args("", long_opts, help_str, > opt_handler, &data) > 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) > { > + if (is_intel_device(data.drm_fd) && > + !is_intel_downscale_supported(&data, > + > scaler_with_pixel_format_tests[index].name, > + 0)) > + continue; > for_each_crtc(&data.display, crtc) { > igt_dynamic_f("pipe-%s", > igt_crtc_name(crtc)) { > > for_each_valid_output_on_crtc(&data.display, > @@ -1404,6 +1427,11 @@ int igt_main_args("", long_opts, help_str, > opt_handler, &data) > for (int index = 0; index < > ARRAY_SIZE(scaler_with_rotation_tests); index++) { > > igt_describe(scaler_with_rotation_tests[index].describe); > I think we should avoid using continue here and instead use igt_skip_on() or igt_require(). Since this is inside a dynamic subtest, the block should not be entered if the feature is not supported. We should skip the test and proceed with the next case without listing an unsupported test. Thanks Jeevan B > igt_subtest_with_dynamic(scaler_with_rotation_tests[index].name) { > + if (is_intel_device(data.drm_fd) && > + !is_intel_downscale_supported(&data, > + > scaler_with_rotation_tests[index].name, > + 0)) > + continue; > for_each_crtc(&data.display, crtc) { > igt_dynamic_f("pipe-%s", > igt_crtc_name(crtc)) { > > for_each_valid_output_on_crtc(&data.display, > @@ -1435,6 +1463,11 @@ int igt_main_args("", long_opts, help_str, > opt_handler, &data) > for (int index = 0; index < > ARRAY_SIZE(scaler_with_modifiers_tests); index++) { > > igt_describe(scaler_with_modifiers_tests[index].describe); > > igt_subtest_with_dynamic(scaler_with_modifiers_tests[index].name) { > + if (is_intel_device(data.drm_fd) && > + !is_intel_downscale_supported(&data, > + > scaler_with_modifiers_tests[index].name, > + 0)) > + continue; > for_each_crtc(&data.display, crtc) { > igt_dynamic_f("pipe-%s", > igt_crtc_name(crtc)) { > > for_each_valid_output_on_crtc(&data.display, > @@ -1548,6 +1581,11 @@ int igt_main_args("", long_opts, help_str, > opt_handler, &data) > for (int index = 0; index < > ARRAY_SIZE(scaler_with_2_planes_tests); index++) { > > igt_describe(scaler_with_2_planes_tests[index].describe); > > igt_subtest_with_dynamic(scaler_with_2_planes_tests[index].name) { > + if (is_intel_device(data.drm_fd) && > + !is_intel_downscale_supported(&data, > + > scaler_with_2_planes_tests[index].name, > + > scaler_with_2_planes_tests[index].test_type)) > + continue; > for_each_crtc(&data.display, crtc) { > igt_dynamic_f("pipe-%s", > igt_crtc_name(crtc)) { > > for_each_valid_output_on_crtc(&data.display, > -- > 2.43.0 ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Skip unsupported scaling scenarios 2026-03-11 10:00 ` B, Jeevan @ 2026-03-11 10:15 ` Naladala, Ramanaidu 0 siblings, 0 replies; 17+ messages in thread From: Naladala, Ramanaidu @ 2026-03-11 10:15 UTC (permalink / raw) To: B, Jeevan, igt-dev@lists.freedesktop.org; +Cc: Sharma, Swati2 Hi Jeevan, Thanks for the review. On 3/11/2026 3:30 PM, B, Jeevan wrote: >> -----Original Message----- >> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Naladala >> Ramanaidu >> Sent: Wednesday, March 11, 2026 1:10 PM >> To: igt-dev@lists.freedesktop.org >> Cc: Sharma, Swati2 <swati2.sharma@intel.com>; Naladala, Ramanaidu >> <ramanaidu.naladala@intel.com> >> Subject: [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Skip unsupported scaling >> scenarios >> >> Skip unsupported downscale tests on Intel platforms, aligning test coverage with >> hardware limitations and reducing CI noise. >> >> Bspec: 50441 >> >> Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> >> --- >> tests/kms_plane_scaling.c | 38 ++++++++++++++++++++++++++++++++++++++ >> 1 file changed, 38 insertions(+) >> >> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index >> ab619fb2b..60390fae8 100644 >> --- a/tests/kms_plane_scaling.c >> +++ b/tests/kms_plane_scaling.c >> @@ -533,6 +533,24 @@ const struct { >> }, >> }; >> >> +static bool is_intel_downscale_supported(data_t *data, const char * const >> name, >> + const enum scaler_combo_test_type >> test_type) { >> + if ((intel_display_ver(data->devid) >= 14) && >> + (test_type == TEST_PLANES_DOWNSCALE)) >> + return false; >> + >> + if ((intel_display_ver(data->devid) >= 14) && >> + (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) && >> + strstr(name, "planes-upscale")) >> + return false; >> + >> + if (strstr(name, "downscale-factor-0-25")) >> + return false; >> + >> + return true; >> +} >> + >> static int get_width(drmModeModeInfo *mode, double scaling_factor) { >> if (scaling_factor == 0.0) >> @@ -1373,6 +1391,11 @@ int igt_main_args("", long_opts, help_str, >> opt_handler, &data) >> 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) >> { >> + if (is_intel_device(data.drm_fd) && >> + !is_intel_downscale_supported(&data, >> + >> scaler_with_pixel_format_tests[index].name, >> + 0)) >> + continue; >> for_each_crtc(&data.display, crtc) { >> igt_dynamic_f("pipe-%s", >> igt_crtc_name(crtc)) { >> >> for_each_valid_output_on_crtc(&data.display, >> @@ -1404,6 +1427,11 @@ int igt_main_args("", long_opts, help_str, >> opt_handler, &data) >> for (int index = 0; index < >> ARRAY_SIZE(scaler_with_rotation_tests); index++) { >> >> igt_describe(scaler_with_rotation_tests[index].describe); >> > I think we should avoid using continue here and instead use igt_skip_on() or igt_require(). > Since this is inside a dynamic subtest, the block should not be entered if the feature is not supported. > We should skip the test and proceed with the next case without listing an unsupported test. > > Thanks > Jeevan B Agree. I will fix and float next rev. >> igt_subtest_with_dynamic(scaler_with_rotation_tests[index].name) { >> + if (is_intel_device(data.drm_fd) && >> + !is_intel_downscale_supported(&data, >> + >> scaler_with_rotation_tests[index].name, >> + 0)) >> + continue; >> for_each_crtc(&data.display, crtc) { >> igt_dynamic_f("pipe-%s", >> igt_crtc_name(crtc)) { >> >> for_each_valid_output_on_crtc(&data.display, >> @@ -1435,6 +1463,11 @@ int igt_main_args("", long_opts, help_str, >> opt_handler, &data) >> for (int index = 0; index < >> ARRAY_SIZE(scaler_with_modifiers_tests); index++) { >> >> igt_describe(scaler_with_modifiers_tests[index].describe); >> >> igt_subtest_with_dynamic(scaler_with_modifiers_tests[index].name) { >> + if (is_intel_device(data.drm_fd) && >> + !is_intel_downscale_supported(&data, >> + >> scaler_with_modifiers_tests[index].name, >> + 0)) >> + continue; >> for_each_crtc(&data.display, crtc) { >> igt_dynamic_f("pipe-%s", >> igt_crtc_name(crtc)) { >> >> for_each_valid_output_on_crtc(&data.display, >> @@ -1548,6 +1581,11 @@ int igt_main_args("", long_opts, help_str, >> opt_handler, &data) >> for (int index = 0; index < >> ARRAY_SIZE(scaler_with_2_planes_tests); index++) { >> >> igt_describe(scaler_with_2_planes_tests[index].describe); >> >> igt_subtest_with_dynamic(scaler_with_2_planes_tests[index].name) { >> + if (is_intel_device(data.drm_fd) && >> + !is_intel_downscale_supported(&data, >> + >> scaler_with_2_planes_tests[index].name, >> + >> scaler_with_2_planes_tests[index].test_type)) >> + continue; >> for_each_crtc(&data.display, crtc) { >> igt_dynamic_f("pipe-%s", >> igt_crtc_name(crtc)) { >> >> for_each_valid_output_on_crtc(&data.display, >> -- >> 2.43.0 ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t v2] tests/kms_plane_scaling: Skip unsupported scaling scenarios 2026-03-11 7:40 ` [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Skip unsupported scaling scenarios Naladala Ramanaidu 2026-03-11 10:00 ` B, Jeevan @ 2026-03-17 7:38 ` Naladala Ramanaidu 2026-03-18 4:29 ` Samala, Pranay 1 sibling, 1 reply; 17+ messages in thread From: Naladala Ramanaidu @ 2026-03-17 7:38 UTC (permalink / raw) To: igt-dev; +Cc: jeevan.b, Naladala Ramanaidu Skip unsupported downscale tests on Intel platforms, aligning test coverage with hardware limitations and reducing CI noise. v2: Convert helper to issue skips for unsupported downscale requirements. Address review comments. (Jeevan) Bspec: 50441 Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- tests/kms_plane_scaling.c | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index ab619fb2b..3e25d9743 100644 --- a/tests/kms_plane_scaling.c +++ b/tests/kms_plane_scaling.c @@ -533,6 +533,22 @@ const struct { }, }; +static void is_intel_downscale_supported(data_t *data, const char * const name, + const enum scaler_combo_test_type test_type) +{ + if ((intel_display_ver(data->devid) >= 14) && + (test_type == TEST_PLANES_DOWNSCALE)) + igt_skip("Required downscale not supported on scalar 2.\n"); + + if ((intel_display_ver(data->devid) >= 14) && + (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) && + strstr(name, "planes-upscale")) + igt_skip("Required downscale not supported on scalar 2.\n"); + + if (strstr(name, "downscale-factor-0-25")) + igt_skip("Required downscale not supported.\n"); +} + static int get_width(drmModeModeInfo *mode, double scaling_factor) { if (scaling_factor == 0.0) @@ -1373,6 +1389,10 @@ int igt_main_args("", long_opts, help_str, opt_handler, &data) 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) { + if (is_intel_device(data.drm_fd)) + is_intel_downscale_supported(&data, + scaler_with_pixel_format_tests[index].name, + 0); for_each_crtc(&data.display, crtc) { igt_dynamic_f("pipe-%s", igt_crtc_name(crtc)) { for_each_valid_output_on_crtc(&data.display, @@ -1404,6 +1424,10 @@ int igt_main_args("", long_opts, help_str, opt_handler, &data) for (int index = 0; index < ARRAY_SIZE(scaler_with_rotation_tests); index++) { igt_describe(scaler_with_rotation_tests[index].describe); igt_subtest_with_dynamic(scaler_with_rotation_tests[index].name) { + if (is_intel_device(data.drm_fd)) + is_intel_downscale_supported(&data, + scaler_with_rotation_tests[index].name, + 0); for_each_crtc(&data.display, crtc) { igt_dynamic_f("pipe-%s", igt_crtc_name(crtc)) { for_each_valid_output_on_crtc(&data.display, @@ -1435,6 +1459,10 @@ int igt_main_args("", long_opts, help_str, opt_handler, &data) for (int index = 0; index < ARRAY_SIZE(scaler_with_modifiers_tests); index++) { igt_describe(scaler_with_modifiers_tests[index].describe); igt_subtest_with_dynamic(scaler_with_modifiers_tests[index].name) { + if (is_intel_device(data.drm_fd)) + is_intel_downscale_supported(&data, + scaler_with_modifiers_tests[index].name, + 0); for_each_crtc(&data.display, crtc) { igt_dynamic_f("pipe-%s", igt_crtc_name(crtc)) { for_each_valid_output_on_crtc(&data.display, @@ -1548,6 +1576,10 @@ int igt_main_args("", long_opts, help_str, opt_handler, &data) for (int index = 0; index < ARRAY_SIZE(scaler_with_2_planes_tests); index++) { igt_describe(scaler_with_2_planes_tests[index].describe); igt_subtest_with_dynamic(scaler_with_2_planes_tests[index].name) { + if (is_intel_device(data.drm_fd)) + is_intel_downscale_supported(&data, + scaler_with_2_planes_tests[index].name, + scaler_with_2_planes_tests[index].test_type); for_each_crtc(&data.display, crtc) { igt_dynamic_f("pipe-%s", igt_crtc_name(crtc)) { for_each_valid_output_on_crtc(&data.display, -- 2.43.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t v2] tests/kms_plane_scaling: Skip unsupported scaling scenarios 2026-03-17 7:38 ` [PATCH i-g-t v2] " Naladala Ramanaidu @ 2026-03-18 4:29 ` Samala, Pranay 2026-03-18 4:42 ` B, Jeevan 0 siblings, 1 reply; 17+ messages in thread From: Samala, Pranay @ 2026-03-18 4:29 UTC (permalink / raw) To: Naladala, Ramanaidu, igt-dev@lists.freedesktop.org Cc: B, Jeevan, Naladala, Ramanaidu Hi Ramanaidu, > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > Naladala Ramanaidu > Sent: Tuesday, March 17, 2026 1:09 PM > To: igt-dev@lists.freedesktop.org > Cc: B, Jeevan <jeevan.b@intel.com>; Naladala, Ramanaidu > <ramanaidu.naladala@intel.com> > Subject: [PATCH i-g-t v2] tests/kms_plane_scaling: Skip unsupported scaling > scenarios > > Skip unsupported downscale tests on Intel platforms, aligning test coverage > with hardware limitations and reducing CI noise. > > v2: Convert helper to issue skips for unsupported downscale > requirements. Address review comments. (Jeevan) > > Bspec: 50441 > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > --- > tests/kms_plane_scaling.c | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > > diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index > ab619fb2b..3e25d9743 100644 > --- a/tests/kms_plane_scaling.c > +++ b/tests/kms_plane_scaling.c > @@ -533,6 +533,22 @@ const struct { > }, > }; > > +static void is_intel_downscale_supported(data_t *data, const char * const > name, > + const enum scaler_combo_test_type > test_type) { > + if ((intel_display_ver(data->devid) >= 14) && > + (test_type == TEST_PLANES_DOWNSCALE)) > + igt_skip("Required downscale not supported on scalar 2.\n"); Here instead of using if with igt_skip, this can be simplified by using igt_skip_on_f(). > + > + if ((intel_display_ver(data->devid) >= 14) && Imho, to avoid repeated calls to intel_display_ver(), consider caching its value in a variable during initial fixture and use it wherever needed. > + (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) && > + strstr(name, "planes-upscale")) > + igt_skip("Required downscale not supported on scalar 2.\n"); Same as above. > + > + if (strstr(name, "downscale-factor-0-25")) > + igt_skip("Required downscale not supported.\n"); } Same as above. Regards, Pranay > + > static int get_width(drmModeModeInfo *mode, double scaling_factor) { > if (scaling_factor == 0.0) > @@ -1373,6 +1389,10 @@ int igt_main_args("", long_opts, help_str, > opt_handler, &data) > 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) { > + if (is_intel_device(data.drm_fd)) > + is_intel_downscale_supported(&data, > + > scaler_with_pixel_format_tests[index].name, > + 0); > for_each_crtc(&data.display, crtc) { > igt_dynamic_f("pipe-%s", > igt_crtc_name(crtc)) { > > for_each_valid_output_on_crtc(&data.display, > @@ -1404,6 +1424,10 @@ int igt_main_args("", long_opts, help_str, > opt_handler, &data) > for (int index = 0; index < > ARRAY_SIZE(scaler_with_rotation_tests); index++) { > > igt_describe(scaler_with_rotation_tests[index].describe); > > igt_subtest_with_dynamic(scaler_with_rotation_tests[index].name) { > + if (is_intel_device(data.drm_fd)) > + is_intel_downscale_supported(&data, > + > scaler_with_rotation_tests[index].name, > + 0); > for_each_crtc(&data.display, crtc) { > igt_dynamic_f("pipe-%s", > igt_crtc_name(crtc)) { > > for_each_valid_output_on_crtc(&data.display, > @@ -1435,6 +1459,10 @@ int igt_main_args("", long_opts, help_str, > opt_handler, &data) > for (int index = 0; index < > ARRAY_SIZE(scaler_with_modifiers_tests); index++) { > > igt_describe(scaler_with_modifiers_tests[index].describe); > > igt_subtest_with_dynamic(scaler_with_modifiers_tests[index].name) > { > + if (is_intel_device(data.drm_fd)) > + is_intel_downscale_supported(&data, > + > scaler_with_modifiers_tests[index].name, > + 0); > for_each_crtc(&data.display, crtc) { > igt_dynamic_f("pipe-%s", > igt_crtc_name(crtc)) { > > for_each_valid_output_on_crtc(&data.display, > @@ -1548,6 +1576,10 @@ int igt_main_args("", long_opts, help_str, > opt_handler, &data) > for (int index = 0; index < > ARRAY_SIZE(scaler_with_2_planes_tests); index++) { > > igt_describe(scaler_with_2_planes_tests[index].describe); > > igt_subtest_with_dynamic(scaler_with_2_planes_tests[index].name) > { > + if (is_intel_device(data.drm_fd)) > + is_intel_downscale_supported(&data, > + > scaler_with_2_planes_tests[index].name, > + > scaler_with_2_planes_tests[index].test_type); > for_each_crtc(&data.display, crtc) { > igt_dynamic_f("pipe-%s", > igt_crtc_name(crtc)) { > > for_each_valid_output_on_crtc(&data.display, > -- > 2.43.0 ^ permalink raw reply [flat|nested] 17+ messages in thread
* RE: [PATCH i-g-t v2] tests/kms_plane_scaling: Skip unsupported scaling scenarios 2026-03-18 4:29 ` Samala, Pranay @ 2026-03-18 4:42 ` B, Jeevan 0 siblings, 0 replies; 17+ messages in thread From: B, Jeevan @ 2026-03-18 4:42 UTC (permalink / raw) To: Samala, Pranay, Naladala, Ramanaidu, igt-dev@lists.freedesktop.org Cc: Naladala, Ramanaidu > -----Original Message----- > From: Samala, Pranay <pranay.samala@intel.com> > Sent: Wednesday, March 18, 2026 9:59 AM > To: Naladala, Ramanaidu <ramanaidu.naladala@intel.com>; igt- > dev@lists.freedesktop.org > Cc: B, Jeevan <jeevan.b@intel.com>; Naladala, Ramanaidu > <ramanaidu.naladala@intel.com> > Subject: RE: [PATCH i-g-t v2] tests/kms_plane_scaling: Skip unsupported > scaling scenarios > > Hi Ramanaidu, > > > -----Original Message----- > > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > > Naladala Ramanaidu > > Sent: Tuesday, March 17, 2026 1:09 PM > > To: igt-dev@lists.freedesktop.org > > Cc: B, Jeevan <jeevan.b@intel.com>; Naladala, Ramanaidu > > <ramanaidu.naladala@intel.com> > > Subject: [PATCH i-g-t v2] tests/kms_plane_scaling: Skip unsupported > > scaling scenarios > > > > Skip unsupported downscale tests on Intel platforms, aligning test > > coverage with hardware limitations and reducing CI noise. > > > > v2: Convert helper to issue skips for unsupported downscale > > requirements. Address review comments. (Jeevan) > > > > Bspec: 50441 > > > > Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> > > --- > > tests/kms_plane_scaling.c | 32 ++++++++++++++++++++++++++++++++ > > 1 file changed, 32 insertions(+) > > > > diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c > > index > > ab619fb2b..3e25d9743 100644 > > --- a/tests/kms_plane_scaling.c > > +++ b/tests/kms_plane_scaling.c > > @@ -533,6 +533,22 @@ const struct { > > }, > > }; > > > > +static void is_intel_downscale_supported(data_t *data, const char * > > +const > > name, > > + const enum scaler_combo_test_type > > test_type) { > > + if ((intel_display_ver(data->devid) >= 14) && > > + (test_type == TEST_PLANES_DOWNSCALE)) > > + igt_skip("Required downscale not supported on scalar 2.\n"); > > Here instead of using if with igt_skip, this can be simplified by using > igt_skip_on_f(). > > > + > > + if ((intel_display_ver(data->devid) >= 14) && > > Imho, to avoid repeated calls to intel_display_ver(), consider caching its value > in a variable during initial fixture and use it wherever needed. > > > + (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) && > > + strstr(name, "planes-upscale")) > > + igt_skip("Required downscale not supported on scalar 2.\n"); > > Same as above. > > > + > > + if (strstr(name, "downscale-factor-0-25")) > > + igt_skip("Required downscale not supported.\n"); } > > Same as above. > > Regards, > Pranay > > > + > > static int get_width(drmModeModeInfo *mode, double scaling_factor) { > > if (scaling_factor == 0.0) > > @@ -1373,6 +1389,10 @@ int igt_main_args("", long_opts, help_str, > > opt_handler, &data) > > 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) { > > + if (is_intel_device(data.drm_fd)) > > + is_intel_downscale_supported(&data, > > + > > scaler_with_pixel_format_tests[index].name, > > + 0); > > for_each_crtc(&data.display, crtc) { > > igt_dynamic_f("pipe-%s", > > igt_crtc_name(crtc)) { > > > > for_each_valid_output_on_crtc(&data.display, > > @@ -1404,6 +1424,10 @@ int igt_main_args("", long_opts, help_str, > > opt_handler, &data) > > for (int index = 0; index < > > ARRAY_SIZE(scaler_with_rotation_tests); index++) { > > > > igt_describe(scaler_with_rotation_tests[index].describe); > > > > igt_subtest_with_dynamic(scaler_with_rotation_tests[index].name) { > > + if (is_intel_device(data.drm_fd)) > > + is_intel_downscale_supported(&data, > > + > > scaler_with_rotation_tests[index].name, > > + Can we get this is_intel_device check inside the function itself like : is_intel_downscale_supported () { const bool is_gen14_plus = intel_display_ver(intel_get_drm_devid(fd)) >= 14; if (!is_intel_device(data->drm_fd)) return; if (is_gen14_plus) { igt_skip_f() conditions } Igt_skip_f() } Thanks Jeevan B 0); > > for_each_crtc(&data.display, crtc) { > > igt_dynamic_f("pipe-%s", > > igt_crtc_name(crtc)) { > > > > for_each_valid_output_on_crtc(&data.display, > > @@ -1435,6 +1459,10 @@ int igt_main_args("", long_opts, help_str, > > opt_handler, &data) > > for (int index = 0; index < > > ARRAY_SIZE(scaler_with_modifiers_tests); index++) { > > > > igt_describe(scaler_with_modifiers_tests[index].describe); > > > > igt_subtest_with_dynamic(scaler_with_modifiers_tests[index].name) > > { > > + if (is_intel_device(data.drm_fd)) > > + is_intel_downscale_supported(&data, > > + > > scaler_with_modifiers_tests[index].name, > > + 0); > > for_each_crtc(&data.display, crtc) { > > igt_dynamic_f("pipe-%s", > > igt_crtc_name(crtc)) { > > > > for_each_valid_output_on_crtc(&data.display, > > @@ -1548,6 +1576,10 @@ int igt_main_args("", long_opts, help_str, > > opt_handler, &data) > > for (int index = 0; index < > > ARRAY_SIZE(scaler_with_2_planes_tests); index++) { > > > > igt_describe(scaler_with_2_planes_tests[index].describe); > > > > igt_subtest_with_dynamic(scaler_with_2_planes_tests[index].name) > > { > > + if (is_intel_device(data.drm_fd)) > > + is_intel_downscale_supported(&data, > > + > > scaler_with_2_planes_tests[index].name, > > + > > scaler_with_2_planes_tests[index].test_type); > > for_each_crtc(&data.display, crtc) { > > igt_dynamic_f("pipe-%s", > > igt_crtc_name(crtc)) { > > > > for_each_valid_output_on_crtc(&data.display, > > -- > > 2.43.0 ^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t v1 2/2] HAX patch do not merge 2026-03-11 7:40 [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Naladala Ramanaidu 2026-03-11 7:40 ` [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Skip unsupported scaling scenarios Naladala Ramanaidu @ 2026-03-11 7:40 ` Naladala Ramanaidu 2026-03-11 21:50 ` ✗ i915.CI.BAT: failure for Skip intel unsupported downscale tests Patchwork ` (6 subsequent siblings) 8 siblings, 0 replies; 17+ messages in thread From: Naladala Ramanaidu @ 2026-03-11 7:40 UTC (permalink / raw) To: igt-dev; +Cc: swati2.sharma, Naladala Ramanaidu HAX patch do not merge Signed-off-by: Naladala Ramanaidu <ramanaidu.naladala@intel.com> --- tests/intel-ci/i915.fast-feedback.testlist | 216 +++----------- tests/intel-ci/xe.fast-feedback.testlist | 323 +++------------------ 2 files changed, 90 insertions(+), 449 deletions(-) diff --git a/tests/intel-ci/i915.fast-feedback.testlist b/tests/intel-ci/i915.fast-feedback.testlist index 2799bbaa5..f1c135ddc 100644 --- a/tests/intel-ci/i915.fast-feedback.testlist +++ b/tests/intel-ci/i915.fast-feedback.testlist @@ -1,171 +1,45 @@ -# 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 diff --git a/tests/intel-ci/xe.fast-feedback.testlist b/tests/intel-ci/xe.fast-feedback.testlist index acff025fa..f1c135ddc 100644 --- a/tests/intel-ci/xe.fast-feedback.testlist +++ b/tests/intel-ci/xe.fast-feedback.testlist @@ -1,278 +1,45 @@ -# 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@root-dir -igt@xe_debugfs@tile-dir -igt@xe_debugfs@info-read -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@pat-sanity -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 -- 2.43.0 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* ✗ i915.CI.BAT: failure for Skip intel unsupported downscale tests 2026-03-11 7:40 [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Naladala Ramanaidu 2026-03-11 7:40 ` [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Skip unsupported scaling scenarios Naladala Ramanaidu 2026-03-11 7:40 ` [PATCH i-g-t v1 2/2] HAX patch do not merge Naladala Ramanaidu @ 2026-03-11 21:50 ` Patchwork 2026-03-11 21:57 ` ✗ Xe.CI.BAT: " Patchwork ` (5 subsequent siblings) 8 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2026-03-11 21:50 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 27632 bytes --] == Series Details == Series: Skip intel unsupported downscale tests URL : https://patchwork.freedesktop.org/series/163003/ State : failure == Summary == CI Bug Log - changes from IGT_8795 -> IGTPW_14728 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14728 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14728, 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_14728/index.html Participating hosts (41 -> 38) ------------------------------ Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14728: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers (NEW): - bat-mtlp-8: NOTRUN -> [SKIP][1] +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html - bat-adlp-9: NOTRUN -> [SKIP][2] +4 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-adlp-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html - bat-adlp-6: NOTRUN -> [SKIP][3] +4 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-adlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html - fi-rkl-11600: NOTRUN -> [SKIP][4] +4 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-rkl-11600/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format (NEW): - bat-dg1-7: NOTRUN -> [SKIP][5] +4 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg1-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html - bat-rplp-1: NOTRUN -> [SKIP][6] +4 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-rplp-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation (NEW): - fi-tgl-1115g4: NOTRUN -> [SKIP][7] +4 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-tgl-1115g4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - bat-jsl-5: NOTRUN -> [INCOMPLETE][8] +3 other tests incomplete [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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-pixel-format@pipe-c: - bat-arlh-3: NOTRUN -> [SKIP][9] +50 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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-twl-2: NOTRUN -> [SKIP][10] +40 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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][11] +27 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-jsl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a: - bat-twl-1: NOTRUN -> [SKIP][12] +7 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-twl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d: - bat-adlp-11: NOTRUN -> [SKIP][13] +163 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-adlp-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b: - bat-rpls-4: NOTRUN -> [SKIP][14] +23 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-rpls-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling (NEW): - bat-mtlp-9: NOTRUN -> [SKIP][15] +4 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-mtlp-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html - bat-arls-6: NOTRUN -> [SKIP][16] +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-arls-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html New tests --------- New tests have been introduced between IGT_8795 and IGTPW_14728: ### New IGT tests (9) ### * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - Statuses : 38 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - Statuses : 38 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - Statuses : 38 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-downscale-factor-0-25: - Statuses : 38 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - Statuses : 38 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - Statuses : 38 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - Statuses : 38 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - Statuses : 38 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - Statuses : 38 skip(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in IGTPW_14728 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers (NEW): - bat-dg1-6: NOTRUN -> [SKIP][17] ([i915#12311]) +4 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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-pixel-format (NEW): - fi-bsw-n3050: NOTRUN -> [SKIP][18] +149 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-bsw-n3050/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html - bat-dg2-14: NOTRUN -> [SKIP][19] ([i915#9423]) +4 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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-rotation (NEW): - bat-dg2-9: NOTRUN -> [SKIP][20] ([i915#9423]) +4 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html - bat-dg2-8: NOTRUN -> [SKIP][21] ([i915#9423]) +4 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - fi-pnv-d510: NOTRUN -> [SKIP][22] +44 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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-rotation: - bat-rpls-4: NOTRUN -> [SKIP][23] ([i915#9423]) +9 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-rpls-4/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][24] +149 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-ivb-3770/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html - bat-apl-1: NOTRUN -> [SKIP][25] +33 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-apl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c: - fi-bsw-nick: NOTRUN -> [SKIP][26] +149 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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][27] ([i915#15329] / [i915#3555]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-rkl-11600/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b: - fi-cfl-8109u: NOTRUN -> [DMESG-WARN][28] ([i915#13735] / [i915#15673]) +85 other tests dmesg-warn [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-cfl-8109u/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b: - fi-rkl-11600: NOTRUN -> [SKIP][29] ([i915#15329]) +123 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-rkl-11600/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html - fi-skl-6600u: NOTRUN -> [SKIP][30] +71 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-skl-6600u/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - bat-dg1-7: NOTRUN -> [SKIP][31] ([i915#15329] / [i915#3555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg1-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - bat-rpls-4: NOTRUN -> [SKIP][32] ([i915#3555] / [i915#9423]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-rpls-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - bat-jsl-5: NOTRUN -> [SKIP][33] ([i915#3555]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-jsl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - fi-tgl-1115g4: NOTRUN -> [SKIP][34] ([i915#15329] / [i915#3555]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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: - fi-cfl-guc: NOTRUN -> [SKIP][35] +35 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-cfl-guc/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a: - fi-cfl-8109u: NOTRUN -> [DMESG-WARN][36] ([i915#13735]) +1 other test dmesg-warn [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-cfl-8109u/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b: - fi-ilk-650: NOTRUN -> [SKIP][37] +114 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-ilk-650/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - fi-tgl-1115g4: NOTRUN -> [SKIP][38] ([i915#15329]) +28 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-tgl-1115g4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b: - fi-cfl-8109u: NOTRUN -> [SKIP][39] +35 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-cfl-8109u/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c: - bat-dg1-7: NOTRUN -> [SKIP][40] ([i915#15329]) +28 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg1-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b: - fi-glk-j4005: NOTRUN -> [SKIP][41] +33 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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 (NEW): - bat-mtlp-9: NOTRUN -> [SKIP][42] ([i915#6953]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-mtlp-9/igt@kms_plane_scaling@planes-downscale-factor-0-25.html - bat-dg2-9: NOTRUN -> [SKIP][43] ([i915#6953] / [i915#9423]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling (NEW): - bat-atsm-1: NOTRUN -> [SKIP][44] ([i915#6078]) +44 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-atsm-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - bat-dg1-6: NOTRUN -> [SKIP][45] ([i915#12311] / [i915#6953]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg1-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - bat-dg2-8: NOTRUN -> [SKIP][46] ([i915#6953] / [i915#9423]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - fi-tgl-1115g4: NOTRUN -> [SKIP][47] ([i915#6953]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-tgl-1115g4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - bat-adlp-6: NOTRUN -> [SKIP][48] ([i915#6953]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-adlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - bat-dg1-7: NOTRUN -> [SKIP][49] ([i915#6953]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg1-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - bat-adlp-9: NOTRUN -> [SKIP][50] ([i915#6953]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-adlp-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - bat-rpls-4: NOTRUN -> [SKIP][51] ([i915#6953] / [i915#9423]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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-5: - fi-kbl-x1275: NOTRUN -> [SKIP][52] +149 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-kbl-x1275/igt@kms_plane_scaling@planes-downscale-factor-0-5.html - bat-adlp-11: NOTRUN -> [SKIP][53] ([i915#6953]) +10 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-adlp-11/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][54] +114 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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][55] ([i915#15329]) +32 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html - bat-dg1-6: NOTRUN -> [SKIP][56] ([i915#12311] / [i915#15329]) +158 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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][57] ([i915#15329] / [i915#6953]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-rkl-11600/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html - bat-twl-2: NOTRUN -> [SKIP][58] ([i915#6953]) +8 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-twl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - bat-adlp-11: NOTRUN -> [SKIP][59] ([i915#3555]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-adlp-11/igt@kms_plane_scaling@planes-scaler-unity-scaling.html - bat-dg1-6: NOTRUN -> [SKIP][60] ([i915#12311] / [i915#15329] / [i915#3555]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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][61] +149 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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 (NEW): - fi-kbl-7567u: NOTRUN -> [SKIP][62] +35 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-kbl-7567u/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - fi-cfl-8700k: NOTRUN -> [SKIP][63] +35 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-cfl-8700k/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - bat-twl-1: NOTRUN -> [SKIP][64] ([i915#6953]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-twl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - bat-jsl-5: NOTRUN -> [SKIP][65] ([i915#6953]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-jsl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - bat-dg2-14: NOTRUN -> [SKIP][66] ([i915#6953] / [i915#9423]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg2-14/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - bat-rplp-1: NOTRUN -> [SKIP][67] ([i915#6953]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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-5: - fi-hsw-4770: NOTRUN -> [SKIP][68] +149 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-hsw-4770/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html - bat-mtlp-8: NOTRUN -> [SKIP][69] ([i915#15329] / [i915#6953]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html - bat-dg1-6: NOTRUN -> [SKIP][70] ([i915#12311] / [i915#15329] / [i915#6953]) +6 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg1-6/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][71] ([i915#12311] / [i915#15329] / [i915#3555] / [i915#6953]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg1-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 (NEW): - bat-adlp-6: NOTRUN -> [SKIP][72] ([i915#3555]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-adlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-dg1-7: NOTRUN -> [SKIP][73] ([i915#3555]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg1-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-adlp-9: NOTRUN -> [SKIP][74] ([i915#3555]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-adlp-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-dg2-14: NOTRUN -> [SKIP][75] ([i915#3555] / [i915#9423]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg2-14/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-rplp-1: NOTRUN -> [SKIP][76] ([i915#3555]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-rplp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - fi-rkl-11600: NOTRUN -> [SKIP][77] ([i915#3555]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-rkl-11600/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-mtlp-9: NOTRUN -> [SKIP][78] ([i915#3555]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-mtlp-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-dg2-9: NOTRUN -> [SKIP][79] ([i915#3555] / [i915#9423]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg2-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-mtlp-8: NOTRUN -> [SKIP][80] ([i915#3555]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-dg1-6: NOTRUN -> [SKIP][81] ([i915#12311] / [i915#3555]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg1-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - bat-dg2-8: NOTRUN -> [SKIP][82] ([i915#3555] / [i915#9423]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-dg2-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - fi-tgl-1115g4: NOTRUN -> [SKIP][83] ([i915#3555]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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][84] ([i915#3555] / [i915#6953]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-mtlp-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html - bat-adlp-11: NOTRUN -> [SKIP][85] ([i915#3555] / [i915#6953]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-adlp-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html - bat-mtlp-8: NOTRUN -> [SKIP][86] ([i915#3555] / [i915#6953]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - bat-arls-6: NOTRUN -> [SKIP][87] ([i915#6953]) +9 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-arls-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 (NEW): - fi-rkl-11600: NOTRUN -> [SKIP][88] ([i915#6953]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-rkl-11600/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-5: - bat-mtlp-8: NOTRUN -> [SKIP][89] ([i915#6953]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-mtlp-8/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][90] +149 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/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][91] ([i915#11346]) +160 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/bat-arlh-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html - fi-rkl-11600: NOTRUN -> [SKIP][92] ([i915#15329] / [i915#3555] / [i915#6953]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/fi-rkl-11600/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8795 -> IGTPW_14728 CI-20190529: 20190529 CI_DRM_18132: 4f823cb4f9faf6611f35c6a8a71ab696e3a734d6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14728: 1f97b741128aa72461743d89511ab7dbe09aed67 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8795: 8795 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14728/index.html [-- Attachment #2: Type: text/html, Size: 35881 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ Xe.CI.BAT: failure for Skip intel unsupported downscale tests 2026-03-11 7:40 [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Naladala Ramanaidu ` (2 preceding siblings ...) 2026-03-11 21:50 ` ✗ i915.CI.BAT: failure for Skip intel unsupported downscale tests Patchwork @ 2026-03-11 21:57 ` Patchwork 2026-03-12 15:34 ` ✗ Xe.CI.FULL: " Patchwork ` (4 subsequent siblings) 8 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2026-03-11 21:57 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6901 bytes --] == Series Details == Series: Skip intel unsupported downscale tests URL : https://patchwork.freedesktop.org/series/163003/ State : failure == Summary == CI Bug Log - changes from XEIGT_8795_BAT -> XEIGTPW_14728_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14728_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14728_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 (14 -> 12) ------------------------------ Missing (2): bat-adlp-vm bat-ptl-vm Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14728_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - bat-adlp-7: NOTRUN -> [SKIP][1] +29 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/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-pixel-format: - bat-wcl-1: NOTRUN -> [SKIP][2] +73 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-wcl-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a: - bat-adlp-7: NOTRUN -> [DMESG-WARN][3] +21 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-adlp-7/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - bat-bmg-1: NOTRUN -> [DMESG-WARN][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - bat-ptl-1: NOTRUN -> [SKIP][5] +5 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-ptl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5.html - bat-lnl-1: NOTRUN -> [SKIP][6] +5 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - bat-bmg-1: NOTRUN -> [SKIP][7] +5 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - bat-wcl-2: NOTRUN -> [SKIP][8] +121 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-wcl-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - bat-ptl-2: NOTRUN -> [SKIP][9] +5 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-ptl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - bat-bmg-2: NOTRUN -> [SKIP][10] +5 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html - bat-lnl-2: NOTRUN -> [SKIP][11] +5 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-lnl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html Known issues ------------ Here are the changes found in XEIGTPW_14728_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a: - bat-lnl-2: NOTRUN -> [SKIP][12] ([Intel XE#2763] / [Intel XE#6886]) +115 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/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][13] ([Intel XE#1024] / [Intel XE#947]) +34 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-atsm-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c: - bat-ptl-1: NOTRUN -> [SKIP][14] ([Intel XE#6886]) +144 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/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-5-upscale-20x20: - bat-adlp-7: NOTRUN -> [SKIP][15] ([Intel XE#455]) +19 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-adlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c: - bat-lnl-1: NOTRUN -> [SKIP][16] ([Intel XE#2763] / [Intel XE#6886]) +29 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d: - bat-bmg-2: NOTRUN -> [SKIP][17] ([Intel XE#2763] / [Intel XE#6886]) +144 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/bat-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947 Build changes ------------- * IGT: IGT_8795 -> IGTPW_14728 * Linux: xe-4701-f8d4fc8745a5d5c57dd1e020fdb5c68f91fe33a7 -> xe-4702-4f823cb4f9faf6611f35c6a8a71ab696e3a734d6 IGTPW_14728: 1f97b741128aa72461743d89511ab7dbe09aed67 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8795: 8795 xe-4701-f8d4fc8745a5d5c57dd1e020fdb5c68f91fe33a7: f8d4fc8745a5d5c57dd1e020fdb5c68f91fe33a7 xe-4702-4f823cb4f9faf6611f35c6a8a71ab696e3a734d6: 4f823cb4f9faf6611f35c6a8a71ab696e3a734d6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/index.html [-- Attachment #2: Type: text/html, Size: 8254 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ Xe.CI.FULL: failure for Skip intel unsupported downscale tests 2026-03-11 7:40 [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Naladala Ramanaidu ` (3 preceding siblings ...) 2026-03-11 21:57 ` ✗ Xe.CI.BAT: " Patchwork @ 2026-03-12 15:34 ` Patchwork 2026-03-17 19:26 ` ✗ Xe.CI.BAT: failure for Skip intel unsupported downscale tests (rev2) Patchwork ` (3 subsequent siblings) 8 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2026-03-12 15:34 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 16749 bytes --] == Series Details == Series: Skip intel unsupported downscale tests URL : https://patchwork.freedesktop.org/series/163003/ State : failure == Summary == CI Bug Log - changes from XEIGT_8795_FULL -> XEIGTPW_14728_FULL ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_14728_FULL need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14728_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14728_FULL: ### IGT changes ### #### Warnings #### * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-lnl: [SKIP][1] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][2] +5 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8795/shard-lnl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html Known issues ------------ Here are the changes found in XEIGTPW_14728_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1: - shard-lnl: [PASS][3] -> [FAIL][4] ([Intel XE#5993] / [Intel XE#6054]) +3 other tests fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8795/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#3658] / [Intel XE#7360]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1512] / [Intel XE#7392]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#2887]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#3432]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#306] / [Intel XE#7358]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-6/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#373]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1424]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1421]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-2/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [PASS][14] -> [FAIL][15] ([Intel XE#301]) +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8795/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#7178] / [Intel XE#7349]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#6312] / [Intel XE#651]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#656]) +8 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1470]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-4/igt@kms_hdmi_inject@inject-4k.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#7283]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_plane_multiple@2x-tiling-y: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#4596] / [Intel XE#5854]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-4/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#7340] / [Intel XE#7504]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8795/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html * igt@kms_rotation_crc@primary-rotation-270: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_setmode@clone-exclusive-crtc: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1435]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@xe_configfs@survivability-mode: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#6010] / [Intel XE#7317] / [Intel XE#7455]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-4/igt@xe_configfs@survivability-mode.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#4837] / [Intel XE#6665]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-6/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt@xe_evict@evict-beng-mixed-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-4/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html * igt@xe_exec_balancer@many-execqueues-cm-parallel-rebind: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#7482]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-6/igt@xe_exec_balancer@many-execqueues-cm-parallel-rebind.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1392]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-7/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#7136]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-rebind-prefetch.html * igt@xe_exec_multi_queue@many-queues-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#6874]) +5 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-6/igt@xe_exec_multi_queue@many-queues-userptr-invalidate.html * igt@xe_exec_sip_eudebug@breakpoint-waitsip-heavy: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#4837]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-2/igt@xe_exec_sip_eudebug@breakpoint-waitsip-heavy.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#6196]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html * igt@xe_exec_threads@threads-multi-queue-fd-basic: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#7138]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-fd-basic.html * igt@xe_multigpu_svm@mgpu-pagefault-conflict: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#6964]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-4/igt@xe_multigpu_svm@mgpu-pagefault-conflict.html * igt@xe_pat@xa-app-transient-media-off: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#7590]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-2/igt@xe_pat@xa-app-transient-media-off.html * igt@xe_pm@d3hot-i2c: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-5/igt@xe_pm@d3hot-i2c.html * igt@xe_query@multigpu-query-oa-units: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#944]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-5/igt@xe_query@multigpu-query-oa-units.html #### Possible fixes #### * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [FAIL][40] ([Intel XE#7340]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8795/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: [SKIP][42] ([Intel XE#4692] / [Intel XE#7508]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8795/shard-lnl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma: - shard-lnl: [FAIL][44] ([Intel XE#5625]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8795/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [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#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [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#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742 [Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854 [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993 [Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010 [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7317]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7317 [Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360 [Intel XE#7392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7392 [Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400 [Intel XE#7455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7455 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504 [Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8795 -> IGTPW_14728 * Linux: xe-4701-f8d4fc8745a5d5c57dd1e020fdb5c68f91fe33a7 -> xe-4702-4f823cb4f9faf6611f35c6a8a71ab696e3a734d6 IGTPW_14728: 1f97b741128aa72461743d89511ab7dbe09aed67 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8795: 8795 xe-4701-f8d4fc8745a5d5c57dd1e020fdb5c68f91fe33a7: f8d4fc8745a5d5c57dd1e020fdb5c68f91fe33a7 xe-4702-4f823cb4f9faf6611f35c6a8a71ab696e3a734d6: 4f823cb4f9faf6611f35c6a8a71ab696e3a734d6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14728/index.html [-- Attachment #2: Type: text/html, Size: 18204 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ Xe.CI.BAT: failure for Skip intel unsupported downscale tests (rev2) 2026-03-11 7:40 [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Naladala Ramanaidu ` (4 preceding siblings ...) 2026-03-12 15:34 ` ✗ Xe.CI.FULL: " Patchwork @ 2026-03-17 19:26 ` Patchwork 2026-03-17 19:44 ` ✗ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2026-03-17 19:26 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6078 bytes --] == Series Details == Series: Skip intel unsupported downscale tests (rev2) URL : https://patchwork.freedesktop.org/series/163003/ State : failure == Summary == CI Bug Log - changes from XEIGT_8807_BAT -> XEIGTPW_14789_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14789_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14789_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 (12 -> 11) ------------------------------ Additional (1): bat-bmg-3 Missing (2): bat-adlp-vm bat-ptl-vm Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14789_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - bat-wcl-1: NOTRUN -> [SKIP][1] +73 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/bat-wcl-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - bat-ptl-1: NOTRUN -> [SKIP][2] +5 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/bat-ptl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5.html - bat-lnl-1: NOTRUN -> [SKIP][3] +5 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/bat-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - bat-bmg-1: NOTRUN -> [SKIP][4] +5 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/bat-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - bat-wcl-2: NOTRUN -> [SKIP][5] +121 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/bat-wcl-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - bat-ptl-2: NOTRUN -> [SKIP][6] +5 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/bat-ptl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - bat-bmg-2: NOTRUN -> [SKIP][7] +5 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/bat-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html - bat-lnl-2: NOTRUN -> [SKIP][8] +5 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/bat-lnl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html Known issues ------------ Here are the changes found in XEIGTPW_14789_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a: - bat-lnl-2: NOTRUN -> [SKIP][9] ([Intel XE#2763] / [Intel XE#6886]) +115 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/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][10] ([Intel XE#1024] / [Intel XE#947]) +34 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/bat-atsm-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c: - bat-ptl-1: NOTRUN -> [SKIP][11] ([Intel XE#6886]) +144 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/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-5-upscale-factor-0-25@pipe-c: - bat-lnl-1: NOTRUN -> [SKIP][12] ([Intel XE#2763] / [Intel XE#6886]) +29 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/bat-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d: - bat-bmg-2: NOTRUN -> [SKIP][13] ([Intel XE#2763] / [Intel XE#6886]) +144 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/bat-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p: - bat-bmg-3: NOTRUN -> [SKIP][14] ([Intel XE#6566]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/947 Build changes ------------- * IGT: IGT_8807 -> IGTPW_14789 * Linux: xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6 -> xe-4737-6bb9fd4e927009e819a3d1c01a989545fb6ddbaa IGTPW_14789: 14789 IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6: 113073d07f958385b5b80d29b62e10d2cf0181d6 xe-4737-6bb9fd4e927009e819a3d1c01a989545fb6ddbaa: 6bb9fd4e927009e819a3d1c01a989545fb6ddbaa == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/index.html [-- Attachment #2: Type: text/html, Size: 7349 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ i915.CI.BAT: failure for Skip intel unsupported downscale tests (rev2) 2026-03-11 7:40 [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Naladala Ramanaidu ` (5 preceding siblings ...) 2026-03-17 19:26 ` ✗ Xe.CI.BAT: failure for Skip intel unsupported downscale tests (rev2) Patchwork @ 2026-03-17 19:44 ` Patchwork 2026-03-19 4:40 ` ✗ Xe.CI.FULL: " Patchwork 2026-03-20 7:41 ` [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Sharma, Swati2 8 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2026-03-17 19:44 UTC (permalink / raw) To: Naladala Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 21917 bytes --] == Series Details == Series: Skip intel unsupported downscale tests (rev2) URL : https://patchwork.freedesktop.org/series/163003/ State : failure == Summary == CI Bug Log - changes from IGT_8807 -> IGTPW_14789 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14789 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14789, 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_14789/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14789: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers (NEW): - bat-mtlp-8: NOTRUN -> [SKIP][1] +15 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html - bat-adlp-9: NOTRUN -> [SKIP][2] +9 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/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-pixel-format (NEW): - bat-dg1-7: NOTRUN -> [SKIP][3] +9 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-dg1-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - bat-jsl-5: NOTRUN -> [INCOMPLETE][4] +3 other tests incomplete [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/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-pixel-format@pipe-c: - bat-arlh-3: NOTRUN -> [SKIP][5] +50 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/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-twl-2: NOTRUN -> [SKIP][6] +44 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/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] +32 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-jsl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a: - bat-adls-6: NOTRUN -> [SKIP][8] +23 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-adls-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d: - bat-adlp-11: NOTRUN -> [SKIP][9] +168 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-adlp-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b: - bat-rpls-4: NOTRUN -> [SKIP][10] +23 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-rpls-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling (NEW): - bat-mtlp-9: NOTRUN -> [SKIP][11] +15 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-mtlp-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - fi-tgl-1115g4: NOTRUN -> [SKIP][12] +9 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-tgl-1115g4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - bat-arls-5: NOTRUN -> [SKIP][13] +15 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-arls-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25 (NEW): - bat-twl-1: NOTRUN -> [SKIP][14] +11 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-twl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - bat-rplp-1: NOTRUN -> [SKIP][15] +9 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-rplp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25 (NEW): - bat-adlp-6: NOTRUN -> [SKIP][16] +9 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-adlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - bat-arls-6: NOTRUN -> [SKIP][17] +15 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-arls-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25 (NEW): - fi-rkl-11600: NOTRUN -> [SKIP][18] +9 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-rkl-11600/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html New tests --------- New tests have been introduced between IGT_8807 and IGTPW_14789: ### New IGT tests (9) ### * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-downscale-factor-0-25: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - Statuses : 40 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - Statuses : 40 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_14789 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers (NEW): - bat-dg1-6: NOTRUN -> [SKIP][19] ([i915#12311]) +9 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-dg1-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html - bat-adls-6: NOTRUN -> [SKIP][20] ([i915#9423]) +14 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-adls-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format (NEW): - fi-bsw-n3050: NOTRUN -> [SKIP][21] +149 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-bsw-n3050/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation (NEW): - bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#9423]) +9 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - fi-pnv-d510: NOTRUN -> [SKIP][23] +44 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/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-rotation: - bat-rpls-4: NOTRUN -> [SKIP][24] ([i915#9423]) +14 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-rpls-4/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][25] +149 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-ivb-3770/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html - bat-apl-1: NOTRUN -> [SKIP][26] +33 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-apl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c: - fi-bsw-nick: NOTRUN -> [SKIP][27] +149 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/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][28] ([i915#15329] / [i915#3555]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-rkl-11600/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b: - fi-cfl-8109u: NOTRUN -> [DMESG-WARN][29] ([i915#13735] / [i915#15673]) +85 other tests dmesg-warn [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-cfl-8109u/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b: - fi-rkl-11600: NOTRUN -> [SKIP][30] ([i915#15329]) +123 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-rkl-11600/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html - fi-skl-6600u: NOTRUN -> [SKIP][31] +71 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-skl-6600u/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - bat-dg1-7: NOTRUN -> [SKIP][32] ([i915#15329] / [i915#3555]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-dg1-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - bat-rpls-4: NOTRUN -> [SKIP][33] ([i915#3555] / [i915#9423]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-rpls-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - bat-jsl-5: NOTRUN -> [SKIP][34] ([i915#3555]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-jsl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - bat-adls-6: NOTRUN -> [SKIP][35] ([i915#3555] / [i915#9423]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-adls-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html - fi-tgl-1115g4: NOTRUN -> [SKIP][36] ([i915#15329] / [i915#3555]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/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: - fi-cfl-guc: NOTRUN -> [SKIP][37] +35 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-cfl-guc/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a: - fi-cfl-8109u: NOTRUN -> [DMESG-WARN][38] ([i915#13735]) +1 other test dmesg-warn [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-cfl-8109u/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b: - fi-ilk-650: NOTRUN -> [SKIP][39] +114 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-ilk-650/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - fi-tgl-1115g4: NOTRUN -> [SKIP][40] ([i915#15329]) +28 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-tgl-1115g4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b: - fi-cfl-8109u: NOTRUN -> [SKIP][41] +35 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-cfl-8109u/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c: - bat-dg1-7: NOTRUN -> [SKIP][42] ([i915#15329]) +28 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-dg1-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b: - fi-glk-j4005: NOTRUN -> [SKIP][43] +33 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/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-unity-scaling (NEW): - bat-atsm-1: NOTRUN -> [SKIP][44] ([i915#6078]) +44 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-atsm-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - bat-dg2-8: NOTRUN -> [SKIP][45] ([i915#9423]) +9 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - fi-kbl-x1275: NOTRUN -> [SKIP][46] +149 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-kbl-x1275/igt@kms_plane_scaling@planes-downscale-factor-0-5.html - bat-adlp-11: NOTRUN -> [SKIP][47] ([i915#6953]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-adlp-11/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][48] +114 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/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][49] ([i915#15329]) +32 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html - bat-dg1-6: NOTRUN -> [SKIP][50] ([i915#12311] / [i915#15329]) +158 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/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][51] ([i915#15329] / [i915#6953]) +6 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-rkl-11600/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html - bat-twl-2: NOTRUN -> [SKIP][52] ([i915#6953]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-twl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - bat-adlp-11: NOTRUN -> [SKIP][53] ([i915#3555]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-adlp-11/igt@kms_plane_scaling@planes-scaler-unity-scaling.html - bat-dg1-6: NOTRUN -> [SKIP][54] ([i915#12311] / [i915#15329] / [i915#3555]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/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][55] +149 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/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 (NEW): - fi-kbl-7567u: NOTRUN -> [SKIP][56] +35 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-kbl-7567u/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - fi-cfl-8700k: NOTRUN -> [SKIP][57] +35 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-cfl-8700k/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - bat-dg2-14: NOTRUN -> [SKIP][58] ([i915#9423]) +9 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-dg2-14/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - fi-hsw-4770: NOTRUN -> [SKIP][59] +149 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-hsw-4770/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html - bat-mtlp-8: NOTRUN -> [SKIP][60] ([i915#15329] / [i915#6953]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html - bat-dg1-6: NOTRUN -> [SKIP][61] ([i915#12311] / [i915#15329] / [i915#6953]) +6 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-dg1-6/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][62] ([i915#12311] / [i915#15329] / [i915#3555] / [i915#6953]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-dg1-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - bat-adlp-11: NOTRUN -> [SKIP][63] ([i915#3555] / [i915#6953]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-adlp-11/igt@kms_plane_scaling@planes-upscale-20x20-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][64] +149 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/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][65] ([i915#11346]) +160 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/bat-arlh-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html - fi-rkl-11600: NOTRUN -> [SKIP][66] ([i915#15329] / [i915#3555] / [i915#6953]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/fi-rkl-11600/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#6078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6078 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8807 -> IGTPW_14789 * Linux: CI_DRM_18164 -> CI_DRM_18166 CI-20190529: 20190529 CI_DRM_18164: 113073d07f958385b5b80d29b62e10d2cf0181d6 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18166: 6bb9fd4e927009e819a3d1c01a989545fb6ddbaa @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14789: 14789 IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14789/index.html [-- Attachment #2: Type: text/html, Size: 27274 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ Xe.CI.FULL: failure for Skip intel unsupported downscale tests (rev2) 2026-03-11 7:40 [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Naladala Ramanaidu ` (6 preceding siblings ...) 2026-03-17 19:44 ` ✗ i915.CI.BAT: " Patchwork @ 2026-03-19 4:40 ` Patchwork 2026-03-20 7:41 ` [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Sharma, Swati2 8 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2026-03-19 4:40 UTC (permalink / raw) To: Naladala, Ramanaidu; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 55339 bytes --] == Series Details == Series: Skip intel unsupported downscale tests (rev2) URL : https://patchwork.freedesktop.org/series/163003/ State : failure == Summary == CI Bug Log - changes from XEIGT_8807_FULL -> XEIGTPW_14789_FULL ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_14789_FULL need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14789_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14789_FULL: ### IGT changes ### #### Warnings #### * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][1] ([Intel XE#6703]) -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][3] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][4] +4 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-4/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-75: - shard-lnl: [SKIP][5] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][6] +5 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html Known issues ------------ Here are the changes found in XEIGTPW_14789_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7059] / [Intel XE#7085]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +7 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367] / [Intel XE#7354]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +6 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#3432]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2652]) +8 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2252]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][17] ([Intel XE#3304] / [Intel XE#7374]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-9/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][18] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: NOTRUN -> [FAIL][19] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2321] / [Intel XE#7355]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320]) +4 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#1340]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#4354]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-sst.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_flip@2x-busy-flip@bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [ABORT][26] ([Intel XE#5545] / [Intel XE#6652]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-2/igt@kms_flip@2x-busy-flip@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2316]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2311]) +18 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#4141]) +7 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2312]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2313]) +12 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2352] / [Intel XE#7399]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#7308]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-metadata-sizes: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#1503]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7283]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane_multiple@2x-tiling-x: - shard-bmg: [PASS][40] -> [SKIP][41] ([Intel XE#4596]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#5021] / [Intel XE#7377]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_pm_backlight@basic-brightness: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7376] / [Intel XE#870]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2391] / [Intel XE#6927]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][45] -> [FAIL][46] ([Intel XE#7340] / [Intel XE#7504]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#7340]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2505] / [Intel XE#7447]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#1489]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2387] / [Intel XE#7429]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#2414]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_sharpness_filter@filter-toggle: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#6503]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-4/igt@kms_sharpness_filter@filter-toggle.html * igt@kms_vrr@cmrr: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2168] / [Intel XE#7444]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@kms_vrr@cmrr.html * igt@kms_vrr@max-min: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1499]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_vrr@max-min.html * igt@xe_eudebug@vma-ufence: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#4837]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@xe_eudebug@vma-ufence.html * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#4837] / [Intel XE#6665]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][59] -> [INCOMPLETE][60] ([Intel XE#6321]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-6/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@once-multi-queue-rebind-imm: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7136]) +6 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-rebind-imm.html * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#6874]) +15 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7138]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#1420]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@d3cold-basic: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2284] / [Intel XE#7370]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@xe_pm@d3cold-basic.html * igt@xe_pxp@pxp-stale-queue-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#4733] / [Intel XE#7417]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-9/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html * igt@xe_query@multigpu-query-engines: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#944]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@xe_query@multigpu-query-engines.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#6569]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@core_hotunplug@hotreplug: - shard-bmg: [ABORT][71] ([Intel XE#7578]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-8/igt@core_hotunplug@hotreplug.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@hotunplug-rescan: - shard-bmg: [SKIP][73] ([Intel XE#6779]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@core_hotunplug@hotunplug-rescan.html * igt@intel_hwmon@hwmon-write: - shard-bmg: [FAIL][75] ([Intel XE#7445]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@intel_hwmon@hwmon-write.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-2/igt@intel_hwmon@hwmon-write.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][77] ([Intel XE#2291]) -> [PASS][78] +3 other tests pass [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [SKIP][79] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][80] +1 other test pass [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-bmg: [SKIP][81] ([Intel XE#2316]) -> [PASS][82] +3 other tests pass [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [FAIL][83] ([Intel XE#301]) -> [PASS][84] +1 other test pass [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a3: - shard-bmg: [INCOMPLETE][85] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][86] +1 other test pass [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html * igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3: - shard-bmg: [DMESG-FAIL][87] ([Intel XE#5545]) -> [PASS][88] +1 other test pass [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a3.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][89] ([Intel XE#1503]) -> [PASS][90] +1 other test pass [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_hdr@invalid-hdr.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][91] ([Intel XE#7086]) -> [PASS][92] +1 other test pass [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][93] ([Intel XE#7340]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][95] ([Intel XE#1435]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [FAIL][97] ([Intel XE#5937]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_exec_system_allocator@fault-threads-benchmark: - shard-bmg: [FAIL][99] -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_exec_system_allocator@fault-threads-benchmark.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@xe_exec_system_allocator@fault-threads-benchmark.html * igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset: - shard-bmg: [SKIP][101] ([Intel XE#6703]) -> [PASS][102] +109 other tests pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-6/igt@xe_exec_system_allocator@many-large-execqueues-mmap-free-nomemset.html * igt@xe_exec_system_allocator@twice-large-mmap: - shard-bmg: [SKIP][103] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][104] +2 other tests pass [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_system_allocator@twice-large-mmap.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-6/igt@xe_exec_system_allocator@twice-large-mmap.html * igt@xe_module_load@load: - shard-bmg: ([PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [SKIP][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@xe_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@xe_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@xe_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-8/igt@xe_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@xe_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@xe_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@xe_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@xe_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@xe_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@xe_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@xe_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@xe_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@xe_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@xe_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@xe_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@xe_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@xe_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@xe_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@xe_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-6/igt@xe_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-6/igt@xe_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-4/igt@xe_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-4/igt@xe_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-4/igt@xe_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@xe_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@xe_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-2/igt@xe_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@xe_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-2/igt@xe_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-2/igt@xe_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-9/igt@xe_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-9/igt@xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@xe_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@xe_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@xe_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@xe_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@xe_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@xe_module_load@load.html #### Warnings #### * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: [SKIP][156] ([Intel XE#6703]) -> [SKIP][157] ([Intel XE#1124]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][158] ([Intel XE#6703]) -> [SKIP][159] ([Intel XE#7621]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][160] ([Intel XE#6703]) -> [SKIP][161] ([Intel XE#2887]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt@kms_chamelium_edid@dp-edid-read: - shard-bmg: [SKIP][162] ([Intel XE#6703]) -> [SKIP][163] ([Intel XE#2252]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-read.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-read.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-bmg: [SKIP][164] ([Intel XE#7194]) -> [FAIL][165] ([Intel XE#3304] / [Intel XE#7374]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-9/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][166] ([Intel XE#6703]) -> [SKIP][167] ([Intel XE#2390] / [Intel XE#6974]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-bmg: [FAIL][168] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][169] ([Intel XE#2341]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_content_protection@legacy.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-bmg: [SKIP][170] ([Intel XE#7194]) -> [FAIL][171] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][172] ([Intel XE#2341]) -> [FAIL][173] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@srm.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-6/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-bmg: [FAIL][174] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][175] ([Intel XE#2341]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_content_protection@uevent.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-bmg: [SKIP][176] ([Intel XE#6703]) -> [SKIP][177] ([Intel XE#2320]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-random-256x85.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-4/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: [SKIP][178] ([Intel XE#6703]) -> [SKIP][179] ([Intel XE#2321] / [Intel XE#7355]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_dsc@dsc-with-formats: - shard-bmg: [SKIP][180] ([Intel XE#6703]) -> [SKIP][181] ([Intel XE#2244]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_dsc@dsc-with-formats.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@kms_dsc@dsc-with-formats.html * igt@kms_flip@2x-busy-flip: - shard-bmg: [SKIP][182] ([Intel XE#6703]) -> [ABORT][183] ([Intel XE#5545] / [Intel XE#6652]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip@2x-busy-flip.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-2/igt@kms_flip@2x-busy-flip.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [SKIP][184] ([Intel XE#6703]) -> [SKIP][185] ([Intel XE#2316]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: [SKIP][186] ([Intel XE#6703]) -> [SKIP][187] ([Intel XE#7178] / [Intel XE#7351]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][188] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][189] ([Intel XE#2311]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][190] ([Intel XE#2312]) -> [SKIP][191] ([Intel XE#2311]) +13 other tests skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][192] ([Intel XE#6703]) -> [SKIP][193] ([Intel XE#2311]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][194] ([Intel XE#2311]) -> [SKIP][195] ([Intel XE#2312]) +10 other tests skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][196] ([Intel XE#4141]) -> [SKIP][197] ([Intel XE#2312]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][198] ([Intel XE#2312]) -> [SKIP][199] ([Intel XE#4141]) +8 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][200] ([Intel XE#6703]) -> [SKIP][201] ([Intel XE#4141]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: [SKIP][202] ([Intel XE#6703]) -> [SKIP][203] ([Intel XE#2352] / [Intel XE#7399]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][204] ([Intel XE#6703]) -> [SKIP][205] ([Intel XE#2312]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][206] ([Intel XE#2312]) -> [SKIP][207] ([Intel XE#2313]) +11 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-bmg: [SKIP][208] ([Intel XE#6703]) -> [SKIP][209] ([Intel XE#2313]) +6 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-bmg: [SKIP][210] ([Intel XE#2313]) -> [SKIP][211] ([Intel XE#2312]) +7 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: [SKIP][212] ([Intel XE#6703]) -> [SKIP][213] ([Intel XE#6901]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: [SKIP][214] ([Intel XE#6703]) -> [SKIP][215] ([Intel XE#7591]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier: - shard-bmg: [SKIP][216] ([Intel XE#6703]) -> [SKIP][217] ([Intel XE#7283]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-bmg: [SKIP][218] ([Intel XE#6703]) -> [SKIP][219] ([Intel XE#1489]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-bmg: [SKIP][220] ([Intel XE#6703]) -> [SKIP][221] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr@pr-cursor-plane-onoff.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_sharpness_filter@filter-basic: - shard-bmg: [SKIP][222] ([Intel XE#6703]) -> [SKIP][223] ([Intel XE#6503]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_sharpness_filter@filter-basic.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-6/igt@kms_sharpness_filter@filter-basic.html * igt@xe_eudebug@multigpu-basic-client: - shard-bmg: [SKIP][224] ([Intel XE#6703]) -> [SKIP][225] ([Intel XE#4837]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_eudebug@multigpu-basic-client.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@xe_eudebug@multigpu-basic-client.html * igt@xe_evict@evict-threads-small-multi-queue: - shard-bmg: [SKIP][226] ([Intel XE#6703]) -> [SKIP][227] ([Intel XE#7140]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_evict@evict-threads-small-multi-queue.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@xe_evict@evict-threads-small-multi-queue.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind: - shard-bmg: [SKIP][228] ([Intel XE#6703]) -> [SKIP][229] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm: - shard-bmg: [SKIP][230] ([Intel XE#6703]) -> [SKIP][231] ([Intel XE#7136]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html * igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem: - shard-bmg: [SKIP][232] ([Intel XE#6703]) -> [SKIP][233] ([Intel XE#6874]) +4 other tests skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-5/igt@xe_exec_multi_queue@few-execs-preempt-mode-close-fd-smem.html * igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind: - shard-bmg: [SKIP][234] ([Intel XE#6703]) -> [SKIP][235] ([Intel XE#7138]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [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#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [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#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445 [Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447 [Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504 [Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578 [Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591 [Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8807 -> IGTPW_14789 * Linux: xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6 -> xe-4737-6bb9fd4e927009e819a3d1c01a989545fb6ddbaa IGTPW_14789: 14789 IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6: 113073d07f958385b5b80d29b62e10d2cf0181d6 xe-4737-6bb9fd4e927009e819a3d1c01a989545fb6ddbaa: 6bb9fd4e927009e819a3d1c01a989545fb6ddbaa == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14789/index.html [-- Attachment #2: Type: text/html, Size: 65834 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests 2026-03-11 7:40 [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Naladala Ramanaidu ` (7 preceding siblings ...) 2026-03-19 4:40 ` ✗ Xe.CI.FULL: " Patchwork @ 2026-03-20 7:41 ` Sharma, Swati2 2026-03-20 8:32 ` Naladala, Ramanaidu 8 siblings, 1 reply; 17+ messages in thread From: Sharma, Swati2 @ 2026-03-20 7:41 UTC (permalink / raw) To: Naladala Ramanaidu, igt-dev Hi Ramanaidu, On 11-03-2026 01:10 pm, Naladala Ramanaidu wrote: > Some scaling tests are expected to be skipped, but they still iterate over > all display modes, which generates excessive logging and eventually hits > CI disk‑usage limits. To address this, early skip logic is added before the > dynamic tests begin, preventing unnecessary mode iterations and reducing CI > load. Why can't we handle this in blocklists? > > Naladala Ramanaidu (2): > tests/kms_plane_scaling: Skip unsupported scaling scenarios > HAX patch do not merge > > tests/intel-ci/i915.fast-feedback.testlist | 216 +++----------- > tests/intel-ci/xe.fast-feedback.testlist | 323 +++------------------ > tests/kms_plane_scaling.c | 38 +++ > 3 files changed, 128 insertions(+), 449 deletions(-) > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests 2026-03-20 7:41 ` [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Sharma, Swati2 @ 2026-03-20 8:32 ` Naladala, Ramanaidu 2026-03-20 9:40 ` Sharma, Swati2 0 siblings, 1 reply; 17+ messages in thread From: Naladala, Ramanaidu @ 2026-03-20 8:32 UTC (permalink / raw) To: Sharma, Swati2, igt-dev, Karthik B S ++ Karthik Hi Swati, On 3/20/2026 1:11 PM, Sharma, Swati2 wrote: > Hi Ramanaidu, > > On 11-03-2026 01:10 pm, Naladala Ramanaidu wrote: >> Some scaling tests are expected to be skipped, but they still iterate >> over >> all display modes, which generates excessive logging and eventually hits >> CI disk‑usage limits. To address this, early skip logic is added >> before the >> dynamic tests begin, preventing unnecessary mode iterations and >> reducing CI >> load. > Why can't we handle this in blocklists? The tests are already blocklisted, but they continue to run. To address this limitation, I sent a patch. According to Karthik, platform blocklisted tests are only excluded in Grafana queries, not during execution. CI intends to generate per‑platform testlists from the blocklists, but it doesn’t seem to be active yet. >> >> Naladala Ramanaidu (2): >> tests/kms_plane_scaling: Skip unsupported scaling scenarios >> HAX patch do not merge >> >> tests/intel-ci/i915.fast-feedback.testlist | 216 +++----------- >> tests/intel-ci/xe.fast-feedback.testlist | 323 +++------------------ >> tests/kms_plane_scaling.c | 38 +++ >> 3 files changed, 128 insertions(+), 449 deletions(-) >> ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests 2026-03-20 8:32 ` Naladala, Ramanaidu @ 2026-03-20 9:40 ` Sharma, Swati2 0 siblings, 0 replies; 17+ messages in thread From: Sharma, Swati2 @ 2026-03-20 9:40 UTC (permalink / raw) To: Naladala, Ramanaidu, igt-dev, Karthik B S Hi Ramanaidu, On 20-03-2026 02:02 pm, Naladala, Ramanaidu wrote: > ++ Karthik > > Hi Swati, > > On 3/20/2026 1:11 PM, Sharma, Swati2 wrote: >> Hi Ramanaidu, >> >> On 11-03-2026 01:10 pm, Naladala Ramanaidu wrote: >>> Some scaling tests are expected to be skipped, but they still >>> iterate over >>> all display modes, which generates excessive logging and eventually >>> hits >>> CI disk‑usage limits. To address this, early skip logic is added >>> before the >>> dynamic tests begin, preventing unnecessary mode iterations and >>> reducing CI >>> load. >> Why can't we handle this in blocklists? > > The tests are already blocklisted, but they continue to run. To > address this limitation, I sent a patch. > > According to Karthik, platform blocklisted tests are only excluded in > Grafana queries, not during execution. CI intends to generate > per‑platform testlists from the blocklists, but it doesn’t seem to be > active yet. There shouldn't be any blocker to use these blocklists in CI. I have requested CI to apply those for NVL, if it works well. Same can be done for PTL as a WA until we have platform specific testlists. > >>> >>> Naladala Ramanaidu (2): >>> tests/kms_plane_scaling: Skip unsupported scaling scenarios >>> HAX patch do not merge >>> >>> tests/intel-ci/i915.fast-feedback.testlist | 216 +++----------- >>> tests/intel-ci/xe.fast-feedback.testlist | 323 >>> +++------------------ >>> tests/kms_plane_scaling.c | 38 +++ >>> 3 files changed, 128 insertions(+), 449 deletions(-) >>> ^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2026-03-20 9:41 UTC | newest] Thread overview: 17+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-11 7:40 [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Naladala Ramanaidu 2026-03-11 7:40 ` [PATCH i-g-t v1 1/2] tests/kms_plane_scaling: Skip unsupported scaling scenarios Naladala Ramanaidu 2026-03-11 10:00 ` B, Jeevan 2026-03-11 10:15 ` Naladala, Ramanaidu 2026-03-17 7:38 ` [PATCH i-g-t v2] " Naladala Ramanaidu 2026-03-18 4:29 ` Samala, Pranay 2026-03-18 4:42 ` B, Jeevan 2026-03-11 7:40 ` [PATCH i-g-t v1 2/2] HAX patch do not merge Naladala Ramanaidu 2026-03-11 21:50 ` ✗ i915.CI.BAT: failure for Skip intel unsupported downscale tests Patchwork 2026-03-11 21:57 ` ✗ Xe.CI.BAT: " Patchwork 2026-03-12 15:34 ` ✗ Xe.CI.FULL: " Patchwork 2026-03-17 19:26 ` ✗ Xe.CI.BAT: failure for Skip intel unsupported downscale tests (rev2) Patchwork 2026-03-17 19:44 ` ✗ i915.CI.BAT: " Patchwork 2026-03-19 4:40 ` ✗ Xe.CI.FULL: " Patchwork 2026-03-20 7:41 ` [PATCH i-g-t v1 0/2] Skip intel unsupported downscale tests Sharma, Swati2 2026-03-20 8:32 ` Naladala, Ramanaidu 2026-03-20 9:40 ` Sharma, Swati2
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox