* [PATCH i-g-t,v7 0/5] Add dsc+bigjoiner subtest
@ 2026-05-30 19:36 Swati Sharma
2026-05-30 19:36 ` [PATCH i-g-t,v7 1/5] tests/intel/kms_dsc: Store valid DSC outputs Swati Sharma
` (8 more replies)
0 siblings, 9 replies; 13+ messages in thread
From: Swati Sharma @ 2026-05-30 19:36 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
This series adds big-joiner and ultra-joiner variants for all DSC
subtests in kms_dsc, along with the necessary helper infrastructure.
The joiner force logic works as follows:
- Non-joiner tests use igt_get_non_joiner_mode() to pick a mode that
does not require joiner.
- Joiner tests use the highest-clock mode. If the mode naturally
triggers the desired joiner type (clock > max_dotclock), no force
is applied. If not, joiner is forced via debugfs.
- Cleanup resets joiner force to DEFAULT so the kernel exposes all
modes naturally for subsequent subtests.
Patch breakdown:
1. Store valid DSC outputs in an array for reuse across pipe iterations
2. Add igt_get_joined_pipes_name() helper to kms_joiner_helper
3. Add igt_is_joiner_supported_by_source() helper
4. Add check_dsc_joiner_constraints() to kms_dsc_helper
5. Add DSC with joiner test cases using the above infrastructure
Swati Sharma (5):
tests/intel/kms_dsc: Store valid DSC outputs
tests/intel/kms_joiner_helper: Add igt_get_joined_pipes_name()
tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source()
tests/intel/kms_dsc_helper: Add helper func()
tests/intel/kms_dsc: Add DSC with joiner test cases
tests/intel/kms_dsc.c | 318 ++++++++++++++++++++++----------
tests/intel/kms_dsc_helper.c | 67 +++++++
tests/intel/kms_dsc_helper.h | 5 +
tests/intel/kms_joiner.c | 8 +-
tests/intel/kms_joiner_helper.c | 55 ++++++
tests/intel/kms_joiner_helper.h | 3 +
tests/meson.build | 17 +-
7 files changed, 361 insertions(+), 112 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH i-g-t,v7 1/5] tests/intel/kms_dsc: Store valid DSC outputs 2026-05-30 19:36 [PATCH i-g-t,v7 0/5] Add dsc+bigjoiner subtest Swati Sharma @ 2026-05-30 19:36 ` Swati Sharma 2026-06-04 4:57 ` [PATCH i-g-t, v7 " Karthik B S 2026-05-30 19:36 ` [PATCH i-g-t, v7 2/5] tests/intel/kms_joiner_helper: Add igt_get_joined_pipes_name() Swati Sharma ` (7 subsequent siblings) 8 siblings, 1 reply; 13+ messages in thread From: Swati Sharma @ 2026-05-30 19:36 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma Instead of repeatedly checking debugfs to determine if a panel supports DSC, perform the check once and store valid outputs (those that support DSC and meet the required constraints) in an array. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_dsc.c | 71 ++++++++++++++++++++++++------------------- 1 file changed, 39 insertions(+), 32 deletions(-) diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index 4c41c6a3b..093a16151 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -71,12 +71,14 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); typedef struct { int drm_fd; + int count; uint32_t devid; igt_display_t display; struct igt_fb fb_test_pattern; enum dsc_output_format output_format; unsigned int plane_format; igt_output_t *output; + igt_output_t *valid_output[IGT_MAX_PIPES]; int input_bpc; int disp_ver; igt_crtc_t *crtc; @@ -254,7 +256,6 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, enum dsc_output_format output_format) { igt_display_t *display = &data->display; - igt_output_t *output; igt_crtc_t *crtc; char name[3][LEN] = { {0}, @@ -262,47 +263,44 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, {0}, }; + igt_require_f(data->count > 0, "No valid output found, either sink doesn't support dsc or min 8bpc\n"); igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc)); - for_each_crtc_with_valid_output(display, crtc, output) { - data->output_format = output_format; - data->plane_format = plane_format; - data->input_bpc = bpc; - data->output = output; - data->crtc = crtc; - - if (!is_dsc_supported_by_sink(data->drm_fd, data->output) || - !check_gen11_dp_constraint(data->drm_fd, data->output, data->crtc)) - continue; + for_each_crtc(display, crtc) { + for (int i = 0; i < data->count; i++) { + data->output_format = output_format; + data->plane_format = plane_format; + data->input_bpc = bpc; + data->output = data->valid_output[i]; + data->crtc = crtc; - if (igt_get_output_max_bpc(output) < MIN_DSC_BPC) { - igt_info("Output %s doesn't support min %d-bpc\n", igt_output_name(data->output), MIN_DSC_BPC); - continue; - } + if (!check_gen11_dp_constraint(data->drm_fd, data->output, data->crtc)) + continue; - if ((test_type & TEST_DSC_OUTPUT_FORMAT) && - (!is_dsc_output_format_supported(data->drm_fd, data->disp_ver, + if ((test_type & TEST_DSC_OUTPUT_FORMAT) && + (!is_dsc_output_format_supported(data->drm_fd, data->disp_ver, data->output, data->output_format))) - continue; + continue; - if ((test_type & TEST_DSC_FRACTIONAL_BPP) && - (!is_dsc_fractional_bpp_supported(data->disp_ver, + if ((test_type & TEST_DSC_FRACTIONAL_BPP) && + (!is_dsc_fractional_bpp_supported(data->disp_ver, data->drm_fd, data->output))) - continue; + continue; - if (test_type & TEST_DSC_OUTPUT_FORMAT) - snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format)); - if (test_type & TEST_DSC_FORMAT) - snprintf(&name[1][0], LEN, "-%s", igt_format_str(data->plane_format)); - if (test_type & TEST_DSC_BPC) - snprintf(&name[2][0], LEN, "-%dbpc", data->input_bpc); + if (test_type & TEST_DSC_OUTPUT_FORMAT) + snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format)); + if (test_type & TEST_DSC_FORMAT) + snprintf(&name[1][0], LEN, "-%s", igt_format_str(data->plane_format)); + if (test_type & TEST_DSC_BPC) + snprintf(&name[2][0], LEN, "-%dbpc", data->input_bpc); - igt_dynamic_f("pipe-%s-%s%s%s%s", igt_crtc_name(data->crtc), data->output->name, - &name[0][0], &name[1][0], &name[2][0]) - update_display(data, test_type); + igt_dynamic_f("pipe-%s-%s%s%s%s", igt_crtc_name(data->crtc), data->output->name, + &name[0][0], &name[1][0], &name[2][0]) + update_display(data, test_type); - if (data->limited) - break; + if (data->limited) + break; + } } } @@ -328,15 +326,24 @@ data_t data = {}; int igt_main_args("l", NULL, help_str, opt_handler, &data) { + igt_output_t *output; + igt_fixture() { data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); data.devid = intel_get_drm_devid(data.drm_fd); data.disp_ver = intel_display_ver(data.devid); + data.count = 0; kmstest_set_vt_graphics_mode(); igt_install_exit_handler(kms_dsc_exit_handler); igt_display_require(&data.display, data.drm_fd); igt_display_require_output(&data.display); igt_require(is_dsc_supported_by_source(data.drm_fd)); + + for_each_connected_output(&data.display, output) { + if (is_dsc_supported_by_sink(data.drm_fd, output) && + igt_get_output_max_bpc(output) >= MIN_DSC_BPC) + data.valid_output[data.count++] = output; + } } igt_describe("Tests basic display stream compression functionality if supported " -- 2.25.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t, v7 1/5] tests/intel/kms_dsc: Store valid DSC outputs 2026-05-30 19:36 ` [PATCH i-g-t,v7 1/5] tests/intel/kms_dsc: Store valid DSC outputs Swati Sharma @ 2026-06-04 4:57 ` Karthik B S 0 siblings, 0 replies; 13+ messages in thread From: Karthik B S @ 2026-06-04 4:57 UTC (permalink / raw) To: Swati Sharma, igt-dev Hi Swati, On 5/31/2026 1:06 AM, Swati Sharma wrote: > Instead of repeatedly checking debugfs to determine if a panel > supports DSC, perform the check once and store valid outputs (those > that support DSC and meet the required constraints) in an array. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Karthik B S <karthik.b.s@intel.com> > --- > tests/intel/kms_dsc.c | 71 ++++++++++++++++++++++++------------------- > 1 file changed, 39 insertions(+), 32 deletions(-) > > diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c > index 4c41c6a3b..093a16151 100644 > --- a/tests/intel/kms_dsc.c > +++ b/tests/intel/kms_dsc.c > @@ -71,12 +71,14 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); > > typedef struct { > int drm_fd; > + int count; > uint32_t devid; > igt_display_t display; > struct igt_fb fb_test_pattern; > enum dsc_output_format output_format; > unsigned int plane_format; > igt_output_t *output; > + igt_output_t *valid_output[IGT_MAX_PIPES]; > int input_bpc; > int disp_ver; > igt_crtc_t *crtc; > @@ -254,7 +256,6 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, > enum dsc_output_format output_format) > { > igt_display_t *display = &data->display; > - igt_output_t *output; > igt_crtc_t *crtc; > char name[3][LEN] = { > {0}, > @@ -262,47 +263,44 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, > {0}, > }; > > + igt_require_f(data->count > 0, "No valid output found, either sink doesn't support dsc or min 8bpc\n"); > igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc)); > > - for_each_crtc_with_valid_output(display, crtc, output) { > - data->output_format = output_format; > - data->plane_format = plane_format; > - data->input_bpc = bpc; > - data->output = output; > - data->crtc = crtc; > - > - if (!is_dsc_supported_by_sink(data->drm_fd, data->output) || > - !check_gen11_dp_constraint(data->drm_fd, data->output, data->crtc)) > - continue; > + for_each_crtc(display, crtc) { > + for (int i = 0; i < data->count; i++) { > + data->output_format = output_format; > + data->plane_format = plane_format; > + data->input_bpc = bpc; > + data->output = data->valid_output[i]; > + data->crtc = crtc; > > - if (igt_get_output_max_bpc(output) < MIN_DSC_BPC) { > - igt_info("Output %s doesn't support min %d-bpc\n", igt_output_name(data->output), MIN_DSC_BPC); > - continue; > - } > + if (!check_gen11_dp_constraint(data->drm_fd, data->output, data->crtc)) > + continue; > > - if ((test_type & TEST_DSC_OUTPUT_FORMAT) && > - (!is_dsc_output_format_supported(data->drm_fd, data->disp_ver, > + if ((test_type & TEST_DSC_OUTPUT_FORMAT) && > + (!is_dsc_output_format_supported(data->drm_fd, data->disp_ver, > data->output, data->output_format))) > - continue; > + continue; > > - if ((test_type & TEST_DSC_FRACTIONAL_BPP) && > - (!is_dsc_fractional_bpp_supported(data->disp_ver, > + if ((test_type & TEST_DSC_FRACTIONAL_BPP) && > + (!is_dsc_fractional_bpp_supported(data->disp_ver, > data->drm_fd, data->output))) > - continue; > + continue; > > - if (test_type & TEST_DSC_OUTPUT_FORMAT) > - snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format)); > - if (test_type & TEST_DSC_FORMAT) > - snprintf(&name[1][0], LEN, "-%s", igt_format_str(data->plane_format)); > - if (test_type & TEST_DSC_BPC) > - snprintf(&name[2][0], LEN, "-%dbpc", data->input_bpc); > + if (test_type & TEST_DSC_OUTPUT_FORMAT) > + snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format)); > + if (test_type & TEST_DSC_FORMAT) > + snprintf(&name[1][0], LEN, "-%s", igt_format_str(data->plane_format)); > + if (test_type & TEST_DSC_BPC) > + snprintf(&name[2][0], LEN, "-%dbpc", data->input_bpc); > > - igt_dynamic_f("pipe-%s-%s%s%s%s", igt_crtc_name(data->crtc), data->output->name, > - &name[0][0], &name[1][0], &name[2][0]) > - update_display(data, test_type); > + igt_dynamic_f("pipe-%s-%s%s%s%s", igt_crtc_name(data->crtc), data->output->name, > + &name[0][0], &name[1][0], &name[2][0]) > + update_display(data, test_type); > > - if (data->limited) > - break; > + if (data->limited) > + break; > + } > } > } > > @@ -328,15 +326,24 @@ data_t data = {}; > > int igt_main_args("l", NULL, help_str, opt_handler, &data) > { > + igt_output_t *output; > + > igt_fixture() { > data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); > data.devid = intel_get_drm_devid(data.drm_fd); > data.disp_ver = intel_display_ver(data.devid); > + data.count = 0; > kmstest_set_vt_graphics_mode(); > igt_install_exit_handler(kms_dsc_exit_handler); > igt_display_require(&data.display, data.drm_fd); > igt_display_require_output(&data.display); > igt_require(is_dsc_supported_by_source(data.drm_fd)); > + > + for_each_connected_output(&data.display, output) { > + if (is_dsc_supported_by_sink(data.drm_fd, output) && > + igt_get_output_max_bpc(output) >= MIN_DSC_BPC) > + data.valid_output[data.count++] = output; > + } > } > > igt_describe("Tests basic display stream compression functionality if supported " ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t, v7 2/5] tests/intel/kms_joiner_helper: Add igt_get_joined_pipes_name() 2026-05-30 19:36 [PATCH i-g-t,v7 0/5] Add dsc+bigjoiner subtest Swati Sharma 2026-05-30 19:36 ` [PATCH i-g-t,v7 1/5] tests/intel/kms_dsc: Store valid DSC outputs Swati Sharma @ 2026-05-30 19:36 ` Swati Sharma 2026-05-30 19:36 ` [PATCH i-g-t, v7 3/5] tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source() Swati Sharma ` (6 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Swati Sharma @ 2026-05-30 19:36 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma, Karthik B S Add function to transform the enum into a string. v2: -Improved func() doc (Jeevan) v3: -Return names without '-' dash prefix (Santhosh) v4: -Move from lib/igt_kms to tests/intel/kms_joiner_helper (Jani) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Karthik B S <karthik.b.s@intel.com> --- tests/intel/kms_joiner_helper.c | 22 ++++++++++++++++++++++ tests/intel/kms_joiner_helper.h | 1 + 2 files changed, 23 insertions(+) diff --git a/tests/intel/kms_joiner_helper.c b/tests/intel/kms_joiner_helper.c index e24d7ce94..0aa409ac2 100644 --- a/tests/intel/kms_joiner_helper.c +++ b/tests/intel/kms_joiner_helper.c @@ -183,3 +183,25 @@ bool igt_assign_pipes_for_outputs(int drm_fd, } return true; } + +/** + * igt_get_joined_pipes_name: + * @val: joined_pipes enum value + * + * Returns: A readable string for the given joined_pipes enum value. + */ +const char *igt_get_joined_pipes_name(enum joined_pipes val) +{ + switch (val) { + case JOINED_PIPES_DEFAULT: + return ""; + case JOINED_PIPES_NONE: + return "none"; + case JOINED_PIPES_BIG_JOINER: + return "bigjoiner"; + case JOINED_PIPES_ULTRA_JOINER: + return "ultrajoiner"; + default: + igt_assert(false); + } +} diff --git a/tests/intel/kms_joiner_helper.h b/tests/intel/kms_joiner_helper.h index 6d21e7eb0..1ea871a3b 100644 --- a/tests/intel/kms_joiner_helper.h +++ b/tests/intel/kms_joiner_helper.h @@ -17,6 +17,7 @@ bool igt_assign_pipes_for_outputs(int drm_fd, uint32_t *used_pipes_mask, uint32_t master_pipes_mask, uint32_t valid_pipes_mask); +const char *igt_get_joined_pipes_name(enum joined_pipes val); enum force_joiner_mode { FORCE_JOINER_ENABLE = 0, -- 2.25.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t, v7 3/5] tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source() 2026-05-30 19:36 [PATCH i-g-t,v7 0/5] Add dsc+bigjoiner subtest Swati Sharma 2026-05-30 19:36 ` [PATCH i-g-t,v7 1/5] tests/intel/kms_dsc: Store valid DSC outputs Swati Sharma 2026-05-30 19:36 ` [PATCH i-g-t, v7 2/5] tests/intel/kms_joiner_helper: Add igt_get_joined_pipes_name() Swati Sharma @ 2026-05-30 19:36 ` Swati Sharma 2026-05-30 19:36 ` [PATCH i-g-t,v7 4/5] tests/intel/kms_dsc_helper: Add helper func() Swati Sharma ` (5 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Swati Sharma @ 2026-05-30 19:36 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma, Karthik B S Add func() returning true/false if platform supports big/ultra joiner and use corresponding func() in related binaries. v2: -Moved func() to joiner_helper (Jeevan) -Use common func for ultra|big joiner (Ankit) v3: -Rename param type to joiner_type (Ankit) -Fix ultra joiner condition logic (Karthik, Ankit) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Karthik B S <karthik.b.s@intel.com> --- tests/intel/kms_joiner.c | 8 ++------ tests/intel/kms_joiner_helper.c | 33 +++++++++++++++++++++++++++++++++ tests/intel/kms_joiner_helper.h | 2 ++ 3 files changed, 37 insertions(+), 6 deletions(-) diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c index 86226a3ba..2cd0d7276 100644 --- a/tests/intel/kms_joiner.c +++ b/tests/intel/kms_joiner.c @@ -33,7 +33,6 @@ */ #include "igt.h" -#include "xe/xe_query.h" #include "kms_dsc_helper.c" #include "kms_joiner_helper.h" @@ -619,9 +618,8 @@ static void test_basic_max_non_joiner(data_t *data) int igt_main() { - bool is_dgfx; igt_crtc_t *crtc; - int j, display_ver; + int j; igt_output_t *output; drmModeModeInfo mode; data_t data; @@ -644,9 +642,7 @@ int igt_main() igt_require(data.display.is_atomic); max_dotclock = igt_get_max_dotclock(data.drm_fd); - is_dgfx = is_xe_device(data.drm_fd) ? xe_has_vram(data.drm_fd) : gem_has_lmem(data.drm_fd); - display_ver = intel_display_ver(intel_get_drm_devid(data.drm_fd)); - if (is_dgfx && display_ver == 14) + if (igt_is_joiner_supported_by_source(data.drm_fd, JOINED_PIPES_ULTRA_JOINER)) data.ultra_joiner_supported = true; for_each_connected_output(&data.display, output) { diff --git a/tests/intel/kms_joiner_helper.c b/tests/intel/kms_joiner_helper.c index 0aa409ac2..d51aa77e5 100644 --- a/tests/intel/kms_joiner_helper.c +++ b/tests/intel/kms_joiner_helper.c @@ -184,6 +184,39 @@ bool igt_assign_pipes_for_outputs(int drm_fd, return true; } +/** + * igt_is_joiner_supported_by_source: + * @drm_fd: drm file descriptor + * @joiner_type: joiner type + * + * Returns: True if (ultra|big)joiner is supported by platform, false otherwise + */ +bool igt_is_joiner_supported_by_source(int drm_fd, enum joined_pipes joiner_type) +{ + int disp_ver; + bool is_dgfx; + + is_dgfx = is_xe_device(drm_fd) ? xe_has_vram(drm_fd) : gem_has_lmem(drm_fd); + disp_ver = intel_display_ver(intel_get_drm_devid(drm_fd)); + + switch (joiner_type) { + case JOINED_PIPES_BIG_JOINER: + if (disp_ver < 12) { + igt_info("Bigjoiner is not supported on D11 and older platforms.\n"); + return false; + } + return true; + case JOINED_PIPES_ULTRA_JOINER: + if (!is_dgfx || disp_ver != 14) { + igt_info("Ultrajoiner is supported on dgfx with D14 only.\n"); + return false; + } + return true; + default: + return false; + } +} + /** * igt_get_joined_pipes_name: * @val: joined_pipes enum value diff --git a/tests/intel/kms_joiner_helper.h b/tests/intel/kms_joiner_helper.h index 1ea871a3b..7ede624c6 100644 --- a/tests/intel/kms_joiner_helper.h +++ b/tests/intel/kms_joiner_helper.h @@ -7,6 +7,7 @@ #define KMS_JOINER_HELPER_H #include "igt_kms.h" +#include "xe/xe_query.h" void igt_set_all_master_pipes_for_platform(igt_display_t *display, uint32_t *master_pipes); @@ -17,6 +18,7 @@ bool igt_assign_pipes_for_outputs(int drm_fd, uint32_t *used_pipes_mask, uint32_t master_pipes_mask, uint32_t valid_pipes_mask); +bool igt_is_joiner_supported_by_source(int drm_fd, enum joined_pipes joiner_type); const char *igt_get_joined_pipes_name(enum joined_pipes val); enum force_joiner_mode { -- 2.25.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t,v7 4/5] tests/intel/kms_dsc_helper: Add helper func() 2026-05-30 19:36 [PATCH i-g-t,v7 0/5] Add dsc+bigjoiner subtest Swati Sharma ` (2 preceding siblings ...) 2026-05-30 19:36 ` [PATCH i-g-t, v7 3/5] tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source() Swati Sharma @ 2026-05-30 19:36 ` Swati Sharma 2026-06-04 5:27 ` Karthik B S 2026-05-30 19:36 ` [PATCH i-g-t,v7 5/5] tests/intel/kms_dsc: Add force dsc and Swati Sharma ` (4 subsequent siblings) 8 siblings, 1 reply; 13+ messages in thread From: Swati Sharma @ 2026-05-30 19:36 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma Introduce check_dsc_joiner_constraints() to validate minimum pipe count, consecutive HW pipe availability, DSC slice requirements, and joiner support for DSC joiner scenarios. Update meson.build to link kms_joiner_helper.c into DSC-related tests so the new helper can call igt_is_joiner_supported_by_source(). v2: -Avoid hardcoding min_pipes/min_slices, use enum values (Santhosh) v3: -Handle JOINED_PIPES_NONE/DEFAULT explicitly, return true (Karthik) -Fix indentation/style issues (Karthik) v4: -Move consecutive pipe check (igt_crtc_for_pipe) into helper rather than having it in the test (Karthik) Co-developed-by: Claude Opus 4.6 Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_dsc_helper.c | 67 ++++++++++++++++++++++++++++++++++++ tests/intel/kms_dsc_helper.h | 5 +++ tests/meson.build | 17 +++++---- 3 files changed, 83 insertions(+), 6 deletions(-) diff --git a/tests/intel/kms_dsc_helper.c b/tests/intel/kms_dsc_helper.c index 29b998c2f..7856e33ef 100644 --- a/tests/intel/kms_dsc_helper.c +++ b/tests/intel/kms_dsc_helper.c @@ -203,3 +203,70 @@ bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *outp return true; } + +bool check_dsc_joiner_constraints(int drm_fd, + igt_output_t *output, + igt_display_t *display, + enum pipe pipe, + int num_pipes, + enum joined_pipes type) +{ + int min_pipes = 0, min_slices = 0; + + if (!igt_is_joiner_supported_by_source(drm_fd, type)) + return false; + + /* + * For joiner, 2 slices per pipe is used + * i.e. min_slices = 2 * min_pipes + */ + switch (type) { + case JOINED_PIPES_BIG_JOINER: + min_pipes = JOINED_PIPES_BIG_JOINER; + min_slices = min_pipes * 2; + break; + case JOINED_PIPES_ULTRA_JOINER: + min_pipes = JOINED_PIPES_ULTRA_JOINER; + min_slices = min_pipes * 2; + break; + case JOINED_PIPES_NONE: + case JOINED_PIPES_DEFAULT: + return true; + default: + igt_info("Unknown joiner type: %d\n", type); + return false; + } + + if (num_pipes < min_pipes) { + igt_info("%s requires minimum %d pipes\n", + igt_get_joined_pipes_name(type), min_pipes); + return false; + } + + /* Verify consecutive HW pipes are available from this pipe */ + if (type == JOINED_PIPES_BIG_JOINER && + !igt_crtc_for_pipe(display, pipe + 1)) + return false; + + if (type == JOINED_PIPES_ULTRA_JOINER && + (!igt_crtc_for_pipe(display, pipe + 1) || + !igt_crtc_for_pipe(display, pipe + 2) || + !igt_crtc_for_pipe(display, pipe + 3))) + return false; + + if (igt_get_dsc_sink_max_slice_count(drm_fd, output->name) < min_slices) { + igt_info("Output %s doesn't support minimum %d slice count for %s\n", + igt_output_name(output), min_slices, + igt_get_joined_pipes_name(type)); + return false; + } + + if (!igt_has_force_joiner_debugfs(drm_fd, output->name)) { + igt_info("Output %s doesn't support force_joiner debugfs for %s\n", + igt_output_name(output), + igt_get_joined_pipes_name(type)); + return false; + } + + return true; +} diff --git a/tests/intel/kms_dsc_helper.h b/tests/intel/kms_dsc_helper.h index ee419c849..542fe46de 100644 --- a/tests/intel/kms_dsc_helper.h +++ b/tests/intel/kms_dsc_helper.h @@ -8,6 +8,7 @@ #include "igt.h" #include "igt_sysfs.h" +#include "kms_joiner_helper.h" #include <errno.h> #include <getopt.h> #include <math.h> @@ -39,5 +40,9 @@ void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output); void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output); void restore_force_dsc_fractional_bpp_en(void); bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *output); +bool check_dsc_joiner_constraints(int drm_fd, igt_output_t *output, + igt_display_t *display, enum pipe pipe, + int num_pipes, + enum joined_pipes type); #endif diff --git a/tests/meson.build b/tests/meson.build index fe0818118..3255e9282 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -399,14 +399,19 @@ extra_sources = { 'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], 'kms_chamelium_sharpness_filter': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], 'kms_dp_linktrain_fallback': [ - join_paths ('intel', 'kms_mst_helper.c'), - join_paths ('intel', 'kms_dsc_helper.c') ], + join_paths ('intel', 'kms_mst_helper.c'), + join_paths ('intel', 'kms_dsc_helper.c'), + join_paths ('intel', 'kms_joiner_helper.c') ], 'kms_dp_link_training': [ - join_paths ('intel', 'kms_mst_helper.c'), - join_paths ('intel', 'kms_joiner_helper.c') ], - 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ], + join_paths ('intel', 'kms_mst_helper.c'), + join_paths ('intel', 'kms_joiner_helper.c') ], + 'kms_dsc': [ + join_paths ('intel', 'kms_dsc_helper.c'), + join_paths ('intel', 'kms_joiner_helper.c') ], 'kms_joiner': [ join_paths ('intel', 'kms_joiner_helper.c') ], - 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ], + 'kms_psr2_sf': [ + join_paths ('intel', 'kms_dsc_helper.c'), + join_paths ('intel', 'kms_joiner_helper.c') ], } # Extra dependencies used on core and Intel drivers -- 2.25.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t,v7 4/5] tests/intel/kms_dsc_helper: Add helper func() 2026-05-30 19:36 ` [PATCH i-g-t,v7 4/5] tests/intel/kms_dsc_helper: Add helper func() Swati Sharma @ 2026-06-04 5:27 ` Karthik B S 0 siblings, 0 replies; 13+ messages in thread From: Karthik B S @ 2026-06-04 5:27 UTC (permalink / raw) To: Swati Sharma, igt-dev Hi Swati, On 5/31/2026 1:06 AM, Swati Sharma wrote: > Introduce check_dsc_joiner_constraints() to validate minimum pipe > count, consecutive HW pipe availability, DSC slice requirements, and > joiner support for DSC joiner scenarios. > > Update meson.build to link kms_joiner_helper.c into DSC-related > tests so the new helper can call igt_is_joiner_supported_by_source(). > > v2: -Avoid hardcoding min_pipes/min_slices, use enum values (Santhosh) > v3: -Handle JOINED_PIPES_NONE/DEFAULT explicitly, return true (Karthik) > -Fix indentation/style issues (Karthik) > v4: -Move consecutive pipe check (igt_crtc_for_pipe) into helper > rather than having it in the test (Karthik) > > Co-developed-by: Claude Opus 4.6 > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/intel/kms_dsc_helper.c | 67 ++++++++++++++++++++++++++++++++++++ > tests/intel/kms_dsc_helper.h | 5 +++ > tests/meson.build | 17 +++++---- > 3 files changed, 83 insertions(+), 6 deletions(-) > > diff --git a/tests/intel/kms_dsc_helper.c b/tests/intel/kms_dsc_helper.c > index 29b998c2f..7856e33ef 100644 > --- a/tests/intel/kms_dsc_helper.c > +++ b/tests/intel/kms_dsc_helper.c > @@ -203,3 +203,70 @@ bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *outp > > return true; > } > + Please add a description as to what constraints are being checked here? > +bool check_dsc_joiner_constraints(int drm_fd, > + igt_output_t *output, > + igt_display_t *display, > + enum pipe pipe, > + int num_pipes, > + enum joined_pipes type) > +{ > + int min_pipes = 0, min_slices = 0; > + > + if (!igt_is_joiner_supported_by_source(drm_fd, type)) > + return false; > + > + /* > + * For joiner, 2 slices per pipe is used > + * i.e. min_slices = 2 * min_pipes > + */ > + switch (type) { > + case JOINED_PIPES_BIG_JOINER: > + min_pipes = JOINED_PIPES_BIG_JOINER; > + min_slices = min_pipes * 2; > + break; > + case JOINED_PIPES_ULTRA_JOINER: > + min_pipes = JOINED_PIPES_ULTRA_JOINER; > + min_slices = min_pipes * 2; > + break; > + case JOINED_PIPES_NONE: > + case JOINED_PIPES_DEFAULT: > + return true; > + default: > + igt_info("Unknown joiner type: %d\n", type); > + return false; > + } > + > + if (num_pipes < min_pipes) { > + igt_info("%s requires minimum %d pipes\n", > + igt_get_joined_pipes_name(type), min_pipes); > + return false; > + } > + > + /* Verify consecutive HW pipes are available from this pipe */ > + if (type == JOINED_PIPES_BIG_JOINER && > + !igt_crtc_for_pipe(display, pipe + 1)) > + return false; > + > + if (type == JOINED_PIPES_ULTRA_JOINER && > + (!igt_crtc_for_pipe(display, pipe + 1) || > + !igt_crtc_for_pipe(display, pipe + 2) || > + !igt_crtc_for_pipe(display, pipe + 3))) > + return false; > + > + if (igt_get_dsc_sink_max_slice_count(drm_fd, output->name) < min_slices) { > + igt_info("Output %s doesn't support minimum %d slice count for %s\n", > + igt_output_name(output), min_slices, > + igt_get_joined_pipes_name(type)); > + return false; > + } > + > + if (!igt_has_force_joiner_debugfs(drm_fd, output->name)) { > + igt_info("Output %s doesn't support force_joiner debugfs for %s\n", > + igt_output_name(output), > + igt_get_joined_pipes_name(type)); > + return false; Is this check required inside the helper? Is the test fully blocked without force_joiner_debugfs? Regards, Karthik.B.S > + } > + > + return true; > +} > diff --git a/tests/intel/kms_dsc_helper.h b/tests/intel/kms_dsc_helper.h > index ee419c849..542fe46de 100644 > --- a/tests/intel/kms_dsc_helper.h > +++ b/tests/intel/kms_dsc_helper.h > @@ -8,6 +8,7 @@ > > #include "igt.h" > #include "igt_sysfs.h" > +#include "kms_joiner_helper.h" > #include <errno.h> > #include <getopt.h> > #include <math.h> > @@ -39,5 +40,9 @@ void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output); > void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output); > void restore_force_dsc_fractional_bpp_en(void); > bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *output); > +bool check_dsc_joiner_constraints(int drm_fd, igt_output_t *output, > + igt_display_t *display, enum pipe pipe, > + int num_pipes, > + enum joined_pipes type); > > #endif > diff --git a/tests/meson.build b/tests/meson.build > index fe0818118..3255e9282 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -399,14 +399,19 @@ extra_sources = { > 'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], > 'kms_chamelium_sharpness_filter': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], > 'kms_dp_linktrain_fallback': [ > - join_paths ('intel', 'kms_mst_helper.c'), > - join_paths ('intel', 'kms_dsc_helper.c') ], > + join_paths ('intel', 'kms_mst_helper.c'), > + join_paths ('intel', 'kms_dsc_helper.c'), > + join_paths ('intel', 'kms_joiner_helper.c') ], > 'kms_dp_link_training': [ > - join_paths ('intel', 'kms_mst_helper.c'), > - join_paths ('intel', 'kms_joiner_helper.c') ], > - 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ], > + join_paths ('intel', 'kms_mst_helper.c'), > + join_paths ('intel', 'kms_joiner_helper.c') ], > + 'kms_dsc': [ > + join_paths ('intel', 'kms_dsc_helper.c'), > + join_paths ('intel', 'kms_joiner_helper.c') ], > 'kms_joiner': [ join_paths ('intel', 'kms_joiner_helper.c') ], > - 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ], > + 'kms_psr2_sf': [ > + join_paths ('intel', 'kms_dsc_helper.c'), > + join_paths ('intel', 'kms_joiner_helper.c') ], > } > > # Extra dependencies used on core and Intel drivers ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t,v7 5/5] tests/intel/kms_dsc: Add force dsc and 2026-05-30 19:36 [PATCH i-g-t,v7 0/5] Add dsc+bigjoiner subtest Swati Sharma ` (3 preceding siblings ...) 2026-05-30 19:36 ` [PATCH i-g-t,v7 4/5] tests/intel/kms_dsc_helper: Add helper func() Swati Sharma @ 2026-05-30 19:36 ` Swati Sharma 2026-06-04 5:21 ` Karthik B S 2026-05-30 20:12 ` ✗ Xe.CI.BAT: failure for Add dsc+bigjoiner subtest (rev9) Patchwork ` (3 subsequent siblings) 8 siblings, 1 reply; 13+ messages in thread From: Swati Sharma @ 2026-05-30 19:36 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma Add non-joiner, big-joiner, and ultra-joiner variants for all DSC subtests: - Non-joiner: if mode naturally triggers joiner, pick a non-joiner mode instead. - Big-joiner: if mode naturally triggers bigjoiner, go as-is; otherwise force bigjoiner via debugfs. - Ultra-joiner: if mode naturally triggers ultrajoiner, go as-is; otherwise force ultrajoiner via debugfs. v2: -fix if() for ultra/big joiner (Ankit) v3: -Add '-' separator in subtest names when using igt_get_joined_pipes_name (Santhosh) v4: -Use 'enum joined_pipes force_joined_pipes' in data_t (Ankit) -Use dsc-basic-%s format for subtest names (Ankit) -Use igt_crtc_for_pipe() to check consecutive HW pipes, handling fused pipe holes properly (Ankit) v5: -Use igt_display_n_crtcs() instead of open-coded for_each_crtc counting loop (Jani) v6: -Explicitly handle non-joiner and joiner mode selection based on display capabilities (Karthik) -Use pipe check from helper instead of test (Karthik) v7: -Only force joiner when mode does not naturally trigger the desired joiner type (Karthik) Co-developed-by: Claude Opus 4.6 Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_dsc.c | 249 ++++++++++++++++++++++++++++++------------ 1 file changed, 180 insertions(+), 69 deletions(-) diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index 093a16151..9f64dac6b 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -43,7 +43,11 @@ /** * SUBTEST: dsc-%s * Description: Tests Display Stream Compression functionality if supported by a - * connector by forcing %arg[1] on all connectors that support it + * connector by forcing %arg[1] on all connectors that support it. + * Non-joiner variants select a non-joiner mode if the highest-clock + * mode would naturally trigger joiner. Joiner variants use the + * highest-clock mode as-is if it naturally triggers the desired + * joiner type, otherwise force joiner via debugfs. * * arg[1]: * @@ -55,6 +59,22 @@ * @with-output-formats-with-bpc: DSC with output formats with certain input BPC for the connector * @fractional-bpp: DSC with fractional bpp with default parameters * @fractional-bpp-with-bpc: DSC with fractional bpp with certain input BPC for the connector + * @basic-bigjoiner: DSC with big joiner and default parameters + * @with-formats-bigjoiner: DSC with big joiner and diff formats + * @with-bpc-bigjoiner: DSC with big joiner and certain input BPC + * @with-bpc-formats-bigjoiner: DSC with big joiner and certain input BPC with diff formats + * @with-output-formats-bigjoiner: DSC with big joiner and output formats + * @with-output-formats-with-bpc-bigjoiner: DSC with big joiner and output formats with certain input BPC + * @fractional-bpp-bigjoiner: DSC with big joiner and fractional bpp + * @fractional-bpp-with-bpc-bigjoiner: DSC with big joiner and fractional bpp with certain input BPC + * @basic-ultrajoiner: DSC with ultra joiner and default parameters + * @with-formats-ultrajoiner: DSC with ultra joiner and diff formats + * @with-bpc-ultrajoiner: DSC with ultra joiner and certain input BPC + * @with-bpc-formats-ultrajoiner: DSC with ultra joiner and certain input BPC with diff formats + * @with-output-formats-ultrajoiner: DSC with ultra joiner and output formats + * @with-output-formats-with-bpc-ultrajoiner: DSC with ultra joiner and output formats with certain input BPC + * @fractional-bpp-ultrajoiner: DSC with ultra joiner and fractional bpp + * @fractional-bpp-with-bpc-ultrajoiner: DSC with ultra joiner and fractional bpp with certain input BPC */ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); @@ -82,12 +102,29 @@ typedef struct { int input_bpc; int disp_ver; igt_crtc_t *crtc; + enum joined_pipes force_joined_pipes; bool limited; } data_t; static int output_format_list[] = {DSC_FORMAT_YCBCR420, DSC_FORMAT_YCBCR444}; static int format_list[] = {DRM_FORMAT_XYUV8888, DRM_FORMAT_XRGB2101010, DRM_FORMAT_XRGB16161616F, DRM_FORMAT_YUYV}; static uint32_t bpc_list[] = {8, 10, 12}; +static enum joined_pipes joiner_tests[] = { + JOINED_PIPES_DEFAULT, + JOINED_PIPES_BIG_JOINER, + JOINED_PIPES_ULTRA_JOINER, +}; + +static const char *joiner_subtest_suffix(enum joined_pipes jp) +{ + static char suffix[32]; + + if (!jp) + return ""; + + snprintf(suffix, sizeof(suffix), "-%s", igt_get_joined_pipes_name(jp)); + return suffix; +} static inline void manual(const char *expected) { @@ -126,6 +163,10 @@ static void test_cleanup(data_t *data) igt_output_set_crtc(output, NULL); igt_remove_fb(data->drm_fd, &data->fb_test_pattern); + + kmstest_force_connector_joiner(data->drm_fd, + output->config.connector, + JOINED_PIPES_DEFAULT); } /* re-probe connectors and do a modeset with DSC */ @@ -179,6 +220,30 @@ static void update_display(data_t *data, uint32_t test_type) igt_sort_connector_modes(output->config.connector, sort_drm_modes_by_clk_dsc); mode = &output->config.connector->modes[0]; + if (data->force_joined_pipes == JOINED_PIPES_DEFAULT) { + /* + * Non-joiner: pick a mode that doesn't require joiner. + * The highest-clock mode may trigger joiner naturally. + */ + mode = igt_get_non_joiner_mode(data->drm_fd, output); + igt_require_f(mode, "No non-joiner mode available on %s\n", + output->name); + } else { + int max_dotclock = igt_get_max_dotclock(data->drm_fd); + bool is_natural = (data->force_joined_pipes == JOINED_PIPES_BIG_JOINER) + ? igt_bigjoiner_possible(data->drm_fd, mode, max_dotclock) + : igt_ultrajoiner_possible(data->drm_fd, mode, max_dotclock); + + /* + * If mode does not naturally trigger joiner, force it. + * Otherwise the kernel handles it on its own. + */ + if (!is_natural) + kmstest_force_connector_joiner(data->drm_fd, + connector, + data->force_joined_pipes); + } + do { if (data->output_format != DSC_FORMAT_RGB) mode = get_next_mode(output, index++); @@ -253,10 +318,12 @@ reset: static void test_dsc(data_t *data, uint32_t test_type, int bpc, unsigned int plane_format, - enum dsc_output_format output_format) + enum dsc_output_format output_format, + enum joined_pipes joined_pipes) { igt_display_t *display = &data->display; igt_crtc_t *crtc; + int n_pipes = igt_display_n_crtcs(display); char name[3][LEN] = { {0}, {0}, @@ -266,6 +333,10 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, igt_require_f(data->count > 0, "No valid output found, either sink doesn't support dsc or min 8bpc\n"); igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc)); + if (joined_pipes != JOINED_PIPES_DEFAULT && + !igt_is_joiner_supported_by_source(data->drm_fd, joined_pipes)) + return; + for_each_crtc(display, crtc) { for (int i = 0; i < data->count; i++) { data->output_format = output_format; @@ -273,6 +344,7 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, data->input_bpc = bpc; data->output = data->valid_output[i]; data->crtc = crtc; + data->force_joined_pipes = joined_pipes; if (!check_gen11_dp_constraint(data->drm_fd, data->output, data->crtc)) continue; @@ -287,6 +359,13 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, data->drm_fd, data->output))) continue; + /* Check joiner constraints for this pipe */ + if (joined_pipes != JOINED_PIPES_DEFAULT && + !check_dsc_joiner_constraints(data->drm_fd, data->output, + display, crtc->pipe, + n_pipes, joined_pipes)) + continue; + if (test_type & TEST_DSC_OUTPUT_FORMAT) snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format)); if (test_type & TEST_DSC_FORMAT) @@ -346,85 +425,117 @@ int igt_main_args("l", NULL, help_str, opt_handler, &data) } } - igt_describe("Tests basic display stream compression functionality if supported " - "by a connector by forcing DSC on all connectors that support it " - "with default parameters"); - igt_subtest_with_dynamic("dsc-basic") + for (int i = 0; i < ARRAY_SIZE(joiner_tests); i++) { + igt_describe_f("Tests basic display stream compression functionality " + "if supported by a connector by forcing DSC%s on all " + "connectors that support it with default parameters", + joiner_tests[i] ? " and joiner" : ""); + igt_subtest_with_dynamic_f("dsc-basic%s", + joiner_subtest_suffix(joiner_tests[i])) test_dsc(&data, TEST_DSC_BASIC, DEFAULT_BPC, - DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB); - - igt_describe("Tests basic display stream compression functionality if supported " - "by a connector by forcing DSC on all connectors that support it " - "with default parameters and creating fb with diff formats"); - igt_subtest_with_dynamic("dsc-with-formats") { - for (int k = 0; k < ARRAY_SIZE(format_list); k++) - test_dsc(&data, TEST_DSC_FORMAT, DEFAULT_BPC, - format_list[k], DSC_FORMAT_RGB); - } + DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB, + joiner_tests[i]); + + igt_describe_f("Tests basic display stream compression functionality " + "if supported by a connector by forcing DSC%s on all " + "connectors that support it with default parameters " + "and creating fb with diff formats", + joiner_tests[i] ? " and joiner" : ""); + igt_subtest_with_dynamic_f("dsc-with-formats%s", + joiner_subtest_suffix(joiner_tests[i])) { + for (int k = 0; k < ARRAY_SIZE(format_list); k++) + test_dsc(&data, TEST_DSC_FORMAT, DEFAULT_BPC, + format_list[k], DSC_FORMAT_RGB, + joiner_tests[i]); + } - igt_describe("Tests basic display stream compression functionality if supported " - "by a connector by forcing DSC on all connectors that support it " - "with certain input BPC for the connector"); - igt_subtest_with_dynamic("dsc-with-bpc") { - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) - test_dsc(&data, TEST_DSC_BPC, bpc_list[j], - DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB); - } + igt_describe_f("Tests basic display stream compression functionality " + "if supported by a connector by forcing DSC%s on all " + "connectors that support it with certain input BPC " + "for the connector", + joiner_tests[i] ? " and joiner" : ""); + igt_subtest_with_dynamic_f("dsc-with-bpc%s", + joiner_subtest_suffix(joiner_tests[i])) { + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) + test_dsc(&data, TEST_DSC_BPC, bpc_list[j], + DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB, + joiner_tests[i]); + } - igt_describe("Tests basic display stream compression functionality if supported " - "by a connector by forcing DSC on all connectors that support it " - "with certain input BPC for the connector with diff formats"); - igt_subtest_with_dynamic("dsc-with-bpc-formats") { - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { - for (int k = 0; k < ARRAY_SIZE(format_list); k++) { - test_dsc(&data, TEST_DSC_BPC | TEST_DSC_FORMAT, - bpc_list[j], format_list[k], - DSC_FORMAT_RGB); + igt_describe_f("Tests basic display stream compression functionality " + "if supported by a connector by forcing DSC%s on all " + "connectors that support it with certain input BPC " + "for the connector with diff formats", + joiner_tests[i] ? " and joiner" : ""); + igt_subtest_with_dynamic_f("dsc-with-bpc-formats%s", + joiner_subtest_suffix(joiner_tests[i])) { + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { + for (int k = 0; k < ARRAY_SIZE(format_list); k++) { + test_dsc(&data, + TEST_DSC_BPC | TEST_DSC_FORMAT, + bpc_list[j], format_list[k], + DSC_FORMAT_RGB, + joiner_tests[i]); + } } } - } - igt_describe("Tests basic display stream compression functionality if supported " - "by a connector by forcing DSC and output format on all connectors " - "that support it"); - igt_subtest_with_dynamic("dsc-with-output-formats") { - for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) - test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, DEFAULT_BPC, - DRM_FORMAT_XRGB8888, - output_format_list[k]); - } + igt_describe_f("Tests basic display stream compression functionality " + "if supported by a connector by forcing DSC%s and " + "output format on all connectors that support it", + joiner_tests[i] ? " and joiner" : ""); + igt_subtest_with_dynamic_f("dsc-with-output-formats%s", + joiner_subtest_suffix(joiner_tests[i])) { + for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) + test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, + DEFAULT_BPC, DRM_FORMAT_XRGB8888, + output_format_list[k], + joiner_tests[i]); + } - igt_describe("Tests basic display stream compression functionality if supported " - "by a connector by forcing DSC and output format on all connectors " - "that support it with certain input BPC for the connector"); - igt_subtest_with_dynamic("dsc-with-output-formats-with-bpc") { - for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) { - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { - test_dsc(&data, TEST_DSC_OUTPUT_FORMAT | TEST_DSC_BPC, - bpc_list[j], DRM_FORMAT_XRGB8888, - output_format_list[k]); + igt_describe_f("Tests basic display stream compression functionality " + "if supported by a connector by forcing DSC%s and " + "output format on all connectors that support it " + "with certain input BPC for the connector", + joiner_tests[i] ? " and joiner" : ""); + igt_subtest_with_dynamic_f("dsc-with-output-formats-with-bpc%s", + joiner_subtest_suffix(joiner_tests[i])) { + for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) { + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { + test_dsc(&data, + TEST_DSC_OUTPUT_FORMAT | + TEST_DSC_BPC, + bpc_list[j], DRM_FORMAT_XRGB8888, + output_format_list[k], + joiner_tests[i]); + } } } - } - igt_describe("Tests fractional compressed bpp functionality if supported " - "by a connector by forcing fractional_bpp on all connectors that support it " - "with default parameter. While finding the optimum compressed bpp, driver will " - "skip over the compressed bpps with integer values. It will go ahead with DSC, " - "iff compressed bpp is fractional, failing in which, it will fail the commit."); - igt_subtest_with_dynamic("dsc-fractional-bpp") + igt_describe_f("Tests fractional compressed bpp functionality if " + "supported by a connector by forcing " + "fractional_bpp%s on all connectors that support " + "it with default parameter", + joiner_tests[i] ? " and joiner" : ""); + igt_subtest_with_dynamic_f("dsc-fractional-bpp%s", + joiner_subtest_suffix(joiner_tests[i])) test_dsc(&data, TEST_DSC_FRACTIONAL_BPP, DEFAULT_BPC, DRM_FORMAT_XRGB8888, - DSC_FORMAT_RGB); - - igt_describe("Tests fractional compressed bpp functionality if supported " - "by a connector by forcing fractional_bpp on all connectors that support it " - "with certain input BPC for the connector."); - igt_subtest_with_dynamic("dsc-fractional-bpp-with-bpc") { - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) - test_dsc(&data, TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC, - bpc_list[j], DRM_FORMAT_XRGB8888, - DSC_FORMAT_RGB); + DSC_FORMAT_RGB, joiner_tests[i]); + + igt_describe_f("Tests fractional compressed bpp functionality if " + "supported by a connector by forcing " + "fractional_bpp%s on all connectors that support " + "it with certain input BPC for the connector", + joiner_tests[i] ? " and joiner" : ""); + igt_subtest_with_dynamic_f("dsc-fractional-bpp-with-bpc%s", + joiner_subtest_suffix(joiner_tests[i])) { + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) + test_dsc(&data, + TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC, + bpc_list[j], DRM_FORMAT_XRGB8888, + DSC_FORMAT_RGB, joiner_tests[i]); + } } igt_fixture() { -- 2.25.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t,v7 5/5] tests/intel/kms_dsc: Add force dsc and 2026-05-30 19:36 ` [PATCH i-g-t,v7 5/5] tests/intel/kms_dsc: Add force dsc and Swati Sharma @ 2026-06-04 5:21 ` Karthik B S 0 siblings, 0 replies; 13+ messages in thread From: Karthik B S @ 2026-06-04 5:21 UTC (permalink / raw) To: Swati Sharma, igt-dev Hi Swati, The commit subject seems to have a chunk missing, mostly a copy paste miss. Please fix. On 5/31/2026 1:06 AM, Swati Sharma wrote: > Add non-joiner, big-joiner, and ultra-joiner variants for all > DSC subtests: > - Non-joiner: if mode naturally triggers joiner, pick a > non-joiner mode instead. Should the default tests be named non-joiner? Not a blocker as such, but just to call it out explicitly? Either case, LGTM. Reviewed-by: Karthik B S <karthik.b.s@intel.com> > - Big-joiner: if mode naturally triggers bigjoiner, go as-is; > otherwise force bigjoiner via debugfs. > - Ultra-joiner: if mode naturally triggers ultrajoiner, go as-is; > otherwise force ultrajoiner via debugfs. > > v2: -fix if() for ultra/big joiner (Ankit) > v3: -Add '-' separator in subtest names when using > igt_get_joined_pipes_name (Santhosh) > v4: -Use 'enum joined_pipes force_joined_pipes' in data_t (Ankit) > -Use dsc-basic-%s format for subtest names (Ankit) > -Use igt_crtc_for_pipe() to check consecutive HW pipes, > handling fused pipe holes properly (Ankit) > v5: -Use igt_display_n_crtcs() instead of open-coded > for_each_crtc counting loop (Jani) > v6: -Explicitly handle non-joiner and joiner mode selection > based on display capabilities (Karthik) > -Use pipe check from helper instead of test (Karthik) > v7: -Only force joiner when mode does not naturally trigger > the desired joiner type (Karthik) > > Co-developed-by: Claude Opus 4.6 > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/intel/kms_dsc.c | 249 ++++++++++++++++++++++++++++++------------ > 1 file changed, 180 insertions(+), 69 deletions(-) > > diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c > index 093a16151..9f64dac6b 100644 > --- a/tests/intel/kms_dsc.c > +++ b/tests/intel/kms_dsc.c > @@ -43,7 +43,11 @@ > /** > * SUBTEST: dsc-%s > * Description: Tests Display Stream Compression functionality if supported by a > - * connector by forcing %arg[1] on all connectors that support it > + * connector by forcing %arg[1] on all connectors that support it. > + * Non-joiner variants select a non-joiner mode if the highest-clock > + * mode would naturally trigger joiner. Joiner variants use the > + * highest-clock mode as-is if it naturally triggers the desired > + * joiner type, otherwise force joiner via debugfs. > * > * arg[1]: > * > @@ -55,6 +59,22 @@ > * @with-output-formats-with-bpc: DSC with output formats with certain input BPC for the connector > * @fractional-bpp: DSC with fractional bpp with default parameters > * @fractional-bpp-with-bpc: DSC with fractional bpp with certain input BPC for the connector > + * @basic-bigjoiner: DSC with big joiner and default parameters > + * @with-formats-bigjoiner: DSC with big joiner and diff formats > + * @with-bpc-bigjoiner: DSC with big joiner and certain input BPC > + * @with-bpc-formats-bigjoiner: DSC with big joiner and certain input BPC with diff formats > + * @with-output-formats-bigjoiner: DSC with big joiner and output formats > + * @with-output-formats-with-bpc-bigjoiner: DSC with big joiner and output formats with certain input BPC > + * @fractional-bpp-bigjoiner: DSC with big joiner and fractional bpp > + * @fractional-bpp-with-bpc-bigjoiner: DSC with big joiner and fractional bpp with certain input BPC > + * @basic-ultrajoiner: DSC with ultra joiner and default parameters > + * @with-formats-ultrajoiner: DSC with ultra joiner and diff formats > + * @with-bpc-ultrajoiner: DSC with ultra joiner and certain input BPC > + * @with-bpc-formats-ultrajoiner: DSC with ultra joiner and certain input BPC with diff formats > + * @with-output-formats-ultrajoiner: DSC with ultra joiner and output formats > + * @with-output-formats-with-bpc-ultrajoiner: DSC with ultra joiner and output formats with certain input BPC > + * @fractional-bpp-ultrajoiner: DSC with ultra joiner and fractional bpp > + * @fractional-bpp-with-bpc-ultrajoiner: DSC with ultra joiner and fractional bpp with certain input BPC > */ > > IGT_TEST_DESCRIPTION("Test to validate display stream compression"); > @@ -82,12 +102,29 @@ typedef struct { > int input_bpc; > int disp_ver; > igt_crtc_t *crtc; > + enum joined_pipes force_joined_pipes; > bool limited; > } data_t; > > static int output_format_list[] = {DSC_FORMAT_YCBCR420, DSC_FORMAT_YCBCR444}; > static int format_list[] = {DRM_FORMAT_XYUV8888, DRM_FORMAT_XRGB2101010, DRM_FORMAT_XRGB16161616F, DRM_FORMAT_YUYV}; > static uint32_t bpc_list[] = {8, 10, 12}; > +static enum joined_pipes joiner_tests[] = { > + JOINED_PIPES_DEFAULT, > + JOINED_PIPES_BIG_JOINER, > + JOINED_PIPES_ULTRA_JOINER, > +}; > + > +static const char *joiner_subtest_suffix(enum joined_pipes jp) > +{ > + static char suffix[32]; > + > + if (!jp) > + return ""; > + > + snprintf(suffix, sizeof(suffix), "-%s", igt_get_joined_pipes_name(jp)); > + return suffix; > +} > > static inline void manual(const char *expected) > { > @@ -126,6 +163,10 @@ static void test_cleanup(data_t *data) > > igt_output_set_crtc(output, NULL); > igt_remove_fb(data->drm_fd, &data->fb_test_pattern); > + > + kmstest_force_connector_joiner(data->drm_fd, > + output->config.connector, > + JOINED_PIPES_DEFAULT); > } > > /* re-probe connectors and do a modeset with DSC */ > @@ -179,6 +220,30 @@ static void update_display(data_t *data, uint32_t test_type) > igt_sort_connector_modes(output->config.connector, sort_drm_modes_by_clk_dsc); > mode = &output->config.connector->modes[0]; > > + if (data->force_joined_pipes == JOINED_PIPES_DEFAULT) { > + /* > + * Non-joiner: pick a mode that doesn't require joiner. > + * The highest-clock mode may trigger joiner naturally. > + */ > + mode = igt_get_non_joiner_mode(data->drm_fd, output); > + igt_require_f(mode, "No non-joiner mode available on %s\n", > + output->name); > + } else { > + int max_dotclock = igt_get_max_dotclock(data->drm_fd); > + bool is_natural = (data->force_joined_pipes == JOINED_PIPES_BIG_JOINER) > + ? igt_bigjoiner_possible(data->drm_fd, mode, max_dotclock) > + : igt_ultrajoiner_possible(data->drm_fd, mode, max_dotclock); > + > + /* > + * If mode does not naturally trigger joiner, force it. > + * Otherwise the kernel handles it on its own. > + */ > + if (!is_natural) > + kmstest_force_connector_joiner(data->drm_fd, > + connector, > + data->force_joined_pipes); > + } > + > do { > if (data->output_format != DSC_FORMAT_RGB) > mode = get_next_mode(output, index++); > @@ -253,10 +318,12 @@ reset: > > static void test_dsc(data_t *data, uint32_t test_type, int bpc, > unsigned int plane_format, > - enum dsc_output_format output_format) > + enum dsc_output_format output_format, > + enum joined_pipes joined_pipes) > { > igt_display_t *display = &data->display; > igt_crtc_t *crtc; > + int n_pipes = igt_display_n_crtcs(display); > char name[3][LEN] = { > {0}, > {0}, > @@ -266,6 +333,10 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, > igt_require_f(data->count > 0, "No valid output found, either sink doesn't support dsc or min 8bpc\n"); > igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc)); > > + if (joined_pipes != JOINED_PIPES_DEFAULT && > + !igt_is_joiner_supported_by_source(data->drm_fd, joined_pipes)) > + return; > + > for_each_crtc(display, crtc) { > for (int i = 0; i < data->count; i++) { > data->output_format = output_format; > @@ -273,6 +344,7 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, > data->input_bpc = bpc; > data->output = data->valid_output[i]; > data->crtc = crtc; > + data->force_joined_pipes = joined_pipes; > > if (!check_gen11_dp_constraint(data->drm_fd, data->output, data->crtc)) > continue; > @@ -287,6 +359,13 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, > data->drm_fd, data->output))) > continue; > > + /* Check joiner constraints for this pipe */ > + if (joined_pipes != JOINED_PIPES_DEFAULT && > + !check_dsc_joiner_constraints(data->drm_fd, data->output, > + display, crtc->pipe, > + n_pipes, joined_pipes)) > + continue; > + > if (test_type & TEST_DSC_OUTPUT_FORMAT) > snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format)); > if (test_type & TEST_DSC_FORMAT) > @@ -346,85 +425,117 @@ int igt_main_args("l", NULL, help_str, opt_handler, &data) > } > } > > - igt_describe("Tests basic display stream compression functionality if supported " > - "by a connector by forcing DSC on all connectors that support it " > - "with default parameters"); > - igt_subtest_with_dynamic("dsc-basic") > + for (int i = 0; i < ARRAY_SIZE(joiner_tests); i++) { > + igt_describe_f("Tests basic display stream compression functionality " > + "if supported by a connector by forcing DSC%s on all " > + "connectors that support it with default parameters", > + joiner_tests[i] ? " and joiner" : ""); > + igt_subtest_with_dynamic_f("dsc-basic%s", > + joiner_subtest_suffix(joiner_tests[i])) > test_dsc(&data, TEST_DSC_BASIC, DEFAULT_BPC, > - DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB); > - > - igt_describe("Tests basic display stream compression functionality if supported " > - "by a connector by forcing DSC on all connectors that support it " > - "with default parameters and creating fb with diff formats"); > - igt_subtest_with_dynamic("dsc-with-formats") { > - for (int k = 0; k < ARRAY_SIZE(format_list); k++) > - test_dsc(&data, TEST_DSC_FORMAT, DEFAULT_BPC, > - format_list[k], DSC_FORMAT_RGB); > - } > + DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB, > + joiner_tests[i]); > + > + igt_describe_f("Tests basic display stream compression functionality " > + "if supported by a connector by forcing DSC%s on all " > + "connectors that support it with default parameters " > + "and creating fb with diff formats", > + joiner_tests[i] ? " and joiner" : ""); > + igt_subtest_with_dynamic_f("dsc-with-formats%s", > + joiner_subtest_suffix(joiner_tests[i])) { > + for (int k = 0; k < ARRAY_SIZE(format_list); k++) > + test_dsc(&data, TEST_DSC_FORMAT, DEFAULT_BPC, > + format_list[k], DSC_FORMAT_RGB, > + joiner_tests[i]); > + } > > - igt_describe("Tests basic display stream compression functionality if supported " > - "by a connector by forcing DSC on all connectors that support it " > - "with certain input BPC for the connector"); > - igt_subtest_with_dynamic("dsc-with-bpc") { > - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) > - test_dsc(&data, TEST_DSC_BPC, bpc_list[j], > - DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB); > - } > + igt_describe_f("Tests basic display stream compression functionality " > + "if supported by a connector by forcing DSC%s on all " > + "connectors that support it with certain input BPC " > + "for the connector", > + joiner_tests[i] ? " and joiner" : ""); > + igt_subtest_with_dynamic_f("dsc-with-bpc%s", > + joiner_subtest_suffix(joiner_tests[i])) { > + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) > + test_dsc(&data, TEST_DSC_BPC, bpc_list[j], > + DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB, > + joiner_tests[i]); > + } > > - igt_describe("Tests basic display stream compression functionality if supported " > - "by a connector by forcing DSC on all connectors that support it " > - "with certain input BPC for the connector with diff formats"); > - igt_subtest_with_dynamic("dsc-with-bpc-formats") { > - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { > - for (int k = 0; k < ARRAY_SIZE(format_list); k++) { > - test_dsc(&data, TEST_DSC_BPC | TEST_DSC_FORMAT, > - bpc_list[j], format_list[k], > - DSC_FORMAT_RGB); > + igt_describe_f("Tests basic display stream compression functionality " > + "if supported by a connector by forcing DSC%s on all " > + "connectors that support it with certain input BPC " > + "for the connector with diff formats", > + joiner_tests[i] ? " and joiner" : ""); > + igt_subtest_with_dynamic_f("dsc-with-bpc-formats%s", > + joiner_subtest_suffix(joiner_tests[i])) { > + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { > + for (int k = 0; k < ARRAY_SIZE(format_list); k++) { > + test_dsc(&data, > + TEST_DSC_BPC | TEST_DSC_FORMAT, > + bpc_list[j], format_list[k], > + DSC_FORMAT_RGB, > + joiner_tests[i]); > + } > } > } > - } > > - igt_describe("Tests basic display stream compression functionality if supported " > - "by a connector by forcing DSC and output format on all connectors " > - "that support it"); > - igt_subtest_with_dynamic("dsc-with-output-formats") { > - for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) > - test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, DEFAULT_BPC, > - DRM_FORMAT_XRGB8888, > - output_format_list[k]); > - } > + igt_describe_f("Tests basic display stream compression functionality " > + "if supported by a connector by forcing DSC%s and " > + "output format on all connectors that support it", > + joiner_tests[i] ? " and joiner" : ""); > + igt_subtest_with_dynamic_f("dsc-with-output-formats%s", > + joiner_subtest_suffix(joiner_tests[i])) { > + for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) > + test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, > + DEFAULT_BPC, DRM_FORMAT_XRGB8888, > + output_format_list[k], > + joiner_tests[i]); > + } > > - igt_describe("Tests basic display stream compression functionality if supported " > - "by a connector by forcing DSC and output format on all connectors " > - "that support it with certain input BPC for the connector"); > - igt_subtest_with_dynamic("dsc-with-output-formats-with-bpc") { > - for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) { > - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { > - test_dsc(&data, TEST_DSC_OUTPUT_FORMAT | TEST_DSC_BPC, > - bpc_list[j], DRM_FORMAT_XRGB8888, > - output_format_list[k]); > + igt_describe_f("Tests basic display stream compression functionality " > + "if supported by a connector by forcing DSC%s and " > + "output format on all connectors that support it " > + "with certain input BPC for the connector", > + joiner_tests[i] ? " and joiner" : ""); > + igt_subtest_with_dynamic_f("dsc-with-output-formats-with-bpc%s", > + joiner_subtest_suffix(joiner_tests[i])) { > + for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) { > + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) { > + test_dsc(&data, > + TEST_DSC_OUTPUT_FORMAT | > + TEST_DSC_BPC, > + bpc_list[j], DRM_FORMAT_XRGB8888, > + output_format_list[k], > + joiner_tests[i]); > + } > } > } > - } > > - igt_describe("Tests fractional compressed bpp functionality if supported " > - "by a connector by forcing fractional_bpp on all connectors that support it " > - "with default parameter. While finding the optimum compressed bpp, driver will " > - "skip over the compressed bpps with integer values. It will go ahead with DSC, " > - "iff compressed bpp is fractional, failing in which, it will fail the commit."); > - igt_subtest_with_dynamic("dsc-fractional-bpp") > + igt_describe_f("Tests fractional compressed bpp functionality if " > + "supported by a connector by forcing " > + "fractional_bpp%s on all connectors that support " > + "it with default parameter", > + joiner_tests[i] ? " and joiner" : ""); > + igt_subtest_with_dynamic_f("dsc-fractional-bpp%s", > + joiner_subtest_suffix(joiner_tests[i])) > test_dsc(&data, TEST_DSC_FRACTIONAL_BPP, > DEFAULT_BPC, DRM_FORMAT_XRGB8888, > - DSC_FORMAT_RGB); > - > - igt_describe("Tests fractional compressed bpp functionality if supported " > - "by a connector by forcing fractional_bpp on all connectors that support it " > - "with certain input BPC for the connector."); > - igt_subtest_with_dynamic("dsc-fractional-bpp-with-bpc") { > - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) > - test_dsc(&data, TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC, > - bpc_list[j], DRM_FORMAT_XRGB8888, > - DSC_FORMAT_RGB); > + DSC_FORMAT_RGB, joiner_tests[i]); > + > + igt_describe_f("Tests fractional compressed bpp functionality if " > + "supported by a connector by forcing " > + "fractional_bpp%s on all connectors that support " > + "it with certain input BPC for the connector", > + joiner_tests[i] ? " and joiner" : ""); > + igt_subtest_with_dynamic_f("dsc-fractional-bpp-with-bpc%s", > + joiner_subtest_suffix(joiner_tests[i])) { > + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) > + test_dsc(&data, > + TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC, > + bpc_list[j], DRM_FORMAT_XRGB8888, > + DSC_FORMAT_RGB, joiner_tests[i]); > + } > } > > igt_fixture() { ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.BAT: failure for Add dsc+bigjoiner subtest (rev9) 2026-05-30 19:36 [PATCH i-g-t,v7 0/5] Add dsc+bigjoiner subtest Swati Sharma ` (4 preceding siblings ...) 2026-05-30 19:36 ` [PATCH i-g-t,v7 5/5] tests/intel/kms_dsc: Add force dsc and Swati Sharma @ 2026-05-30 20:12 ` Patchwork 2026-05-30 20:28 ` ✓ i915.CI.BAT: success " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2026-05-30 20:12 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3475 bytes --] == Series Details == Series: Add dsc+bigjoiner subtest (rev9) URL : https://patchwork.freedesktop.org/series/128266/ State : failure == Summary == CI Bug Log - changes from XEIGT_8943_BAT -> XEIGTPW_15273_BAT ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_15273_BAT need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15273_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15273_BAT: ### IGT changes ### #### Warnings #### * igt@kms_dsc@dsc-basic: - bat-lnl-1: [SKIP][1] ([Intel XE#2244]) -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/bat-lnl-1/igt@kms_dsc@dsc-basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/bat-lnl-1/igt@kms_dsc@dsc-basic.html - bat-adlp-7: [SKIP][3] ([Intel XE#2244] / [Intel XE#455]) -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/bat-adlp-7/igt@kms_dsc@dsc-basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/bat-adlp-7/igt@kms_dsc@dsc-basic.html - bat-bmg-1: [SKIP][5] ([Intel XE#2244]) -> [SKIP][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/bat-bmg-1/igt@kms_dsc@dsc-basic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/bat-bmg-1/igt@kms_dsc@dsc-basic.html - bat-wcl-1: [SKIP][7] ([Intel XE#7244]) -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/bat-wcl-1/igt@kms_dsc@dsc-basic.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/bat-wcl-1/igt@kms_dsc@dsc-basic.html Known issues ------------ Here are the changes found in XEIGTPW_15273_BAT that come from known issues: ### IGT changes ### #### Warnings #### * igt@kms_dsc@dsc-basic: - bat-ptl-2: [SKIP][9] ([Intel XE#5774] / [Intel XE#5907] / [Intel XE#6203]) -> [SKIP][10] ([Intel XE#5907]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/bat-ptl-2/igt@kms_dsc@dsc-basic.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/bat-ptl-2/igt@kms_dsc@dsc-basic.html [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#5774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5774 [Intel XE#5907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5907 [Intel XE#6203]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6203 [Intel XE#7244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7244 Build changes ------------- * IGT: IGT_8943 -> IGTPW_15273 * Linux: xe-5155-158de01c718ed9dd7cb123d0df59a6077be26579 -> xe-5168-f4ba932abb4422a63c72a272b0386f745ce9a119 IGTPW_15273: 15273 IGT_8943: 8943 xe-5155-158de01c718ed9dd7cb123d0df59a6077be26579: 158de01c718ed9dd7cb123d0df59a6077be26579 xe-5168-f4ba932abb4422a63c72a272b0386f745ce9a119: f4ba932abb4422a63c72a272b0386f745ce9a119 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/index.html [-- Attachment #2: Type: text/html, Size: 4287 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.BAT: success for Add dsc+bigjoiner subtest (rev9) 2026-05-30 19:36 [PATCH i-g-t,v7 0/5] Add dsc+bigjoiner subtest Swati Sharma ` (5 preceding siblings ...) 2026-05-30 20:12 ` ✗ Xe.CI.BAT: failure for Add dsc+bigjoiner subtest (rev9) Patchwork @ 2026-05-30 20:28 ` Patchwork 2026-05-30 21:15 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-05-30 22:28 ` ✗ i915.CI.Full: " Patchwork 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2026-05-30 20:28 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6450 bytes --] == Series Details == Series: Add dsc+bigjoiner subtest (rev9) URL : https://patchwork.freedesktop.org/series/128266/ State : success == Summary == CI Bug Log - changes from IGT_8943 -> IGTPW_15273 ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_15273 need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15273, 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_15273/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_15273: ### IGT changes ### #### Warnings #### * igt@kms_dsc@dsc-basic: - bat-rpls-4: [SKIP][1] ([i915#3555] / [i915#3840] / [i915#9886]) -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-rpls-4/igt@kms_dsc@dsc-basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-rpls-4/igt@kms_dsc@dsc-basic.html - bat-twl-1: [SKIP][3] ([i915#9886]) -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-twl-1/igt@kms_dsc@dsc-basic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-twl-1/igt@kms_dsc@dsc-basic.html - bat-jsl-5: [SKIP][5] ([i915#3555] / [i915#9886]) -> [SKIP][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-jsl-5/igt@kms_dsc@dsc-basic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-jsl-5/igt@kms_dsc@dsc-basic.html - bat-arls-5: [SKIP][7] ([i915#9886]) -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-arls-5/igt@kms_dsc@dsc-basic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-arls-5/igt@kms_dsc@dsc-basic.html - bat-rplp-1: [SKIP][9] ([i915#3555] / [i915#3840]) -> [SKIP][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-rplp-1/igt@kms_dsc@dsc-basic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-rplp-1/igt@kms_dsc@dsc-basic.html - fi-tgl-1115g4: [SKIP][11] ([i915#3555] / [i915#3840]) -> [SKIP][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/fi-tgl-1115g4/igt@kms_dsc@dsc-basic.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/fi-tgl-1115g4/igt@kms_dsc@dsc-basic.html - bat-twl-2: [SKIP][13] ([i915#9886]) -> [SKIP][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-twl-2/igt@kms_dsc@dsc-basic.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-twl-2/igt@kms_dsc@dsc-basic.html - bat-dg2-14: [SKIP][15] ([i915#3555] / [i915#3840]) -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-dg2-14/igt@kms_dsc@dsc-basic.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-dg2-14/igt@kms_dsc@dsc-basic.html - bat-mtlp-9: [SKIP][17] ([i915#3555] / [i915#3840] / [i915#9159]) -> [SKIP][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-mtlp-9/igt@kms_dsc@dsc-basic.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-mtlp-9/igt@kms_dsc@dsc-basic.html - bat-arls-6: [SKIP][19] ([i915#9886]) -> [SKIP][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-arls-6/igt@kms_dsc@dsc-basic.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-arls-6/igt@kms_dsc@dsc-basic.html - bat-mtlp-8: [SKIP][21] ([i915#3555] / [i915#3840] / [i915#9159]) -> [SKIP][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-mtlp-8/igt@kms_dsc@dsc-basic.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-mtlp-8/igt@kms_dsc@dsc-basic.html - bat-adls-6: [SKIP][23] ([i915#3555] / [i915#3840]) -> [SKIP][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-adls-6/igt@kms_dsc@dsc-basic.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-adls-6/igt@kms_dsc@dsc-basic.html - bat-arlh-3: [SKIP][25] ([i915#9886]) -> [SKIP][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-arlh-3/igt@kms_dsc@dsc-basic.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-arlh-3/igt@kms_dsc@dsc-basic.html - bat-dg1-7: [SKIP][27] ([i915#3555] / [i915#3840]) -> [SKIP][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-dg1-7/igt@kms_dsc@dsc-basic.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-dg1-7/igt@kms_dsc@dsc-basic.html - bat-adlp-9: [SKIP][29] ([i915#3555] / [i915#3840]) -> [SKIP][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-adlp-9/igt@kms_dsc@dsc-basic.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-adlp-9/igt@kms_dsc@dsc-basic.html Known issues ------------ Here are the changes found in IGTPW_15273 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live: - bat-apl-1: [DMESG-FAIL][31] ([i915#14808]) -> [PASS][32] +1 other test pass [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8943/bat-apl-1/igt@i915_selftest@live.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/bat-apl-1/igt@i915_selftest@live.html [i915#14808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14808 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8943 -> IGTPW_15273 * Linux: CI_DRM_18580 -> CI_DRM_18592 CI-20190529: 20190529 CI_DRM_18580: 0b693fa10a961c6e08ade3a6f41069b18baf2a63 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18592: f4ba932abb4422a63c72a272b0386f745ce9a119 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15273: 15273 IGT_8943: 8943 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/index.html [-- Attachment #2: Type: text/html, Size: 8897 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.FULL: failure for Add dsc+bigjoiner subtest (rev9) 2026-05-30 19:36 [PATCH i-g-t,v7 0/5] Add dsc+bigjoiner subtest Swati Sharma ` (6 preceding siblings ...) 2026-05-30 20:28 ` ✓ i915.CI.BAT: success " Patchwork @ 2026-05-30 21:15 ` Patchwork 2026-05-30 22:28 ` ✗ i915.CI.Full: " Patchwork 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2026-05-30 21:15 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 69648 bytes --] == Series Details == Series: Add dsc+bigjoiner subtest (rev9) URL : https://patchwork.freedesktop.org/series/128266/ State : failure == Summary == CI Bug Log - changes from XEIGT_8943_FULL -> XEIGTPW_15273_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15273_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15273_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_15273_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@linear-16bpp-rotate-180: - shard-lnl: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-2/igt@kms_big_fb@linear-16bpp-rotate-180.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner (NEW): - shard-bmg: NOTRUN -> [SKIP][2] +14 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-bigjoiner (NEW): - shard-lnl: NOTRUN -> [SKIP][3] +14 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-4/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html #### Warnings #### * igt@kms_dsc@dsc-with-bpc-formats: - shard-lnl: [SKIP][4] ([Intel XE#2244]) -> [SKIP][5] +6 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-lnl-3/igt@kms_dsc@dsc-with-bpc-formats.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-1/igt@kms_dsc@dsc-with-bpc-formats.html - shard-bmg: [SKIP][6] ([Intel XE#2244]) -> [SKIP][7] +6 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-4/igt@kms_dsc@dsc-with-bpc-formats.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-1/igt@kms_dsc@dsc-with-bpc-formats.html New tests --------- New tests have been introduced between XEIGT_8943_FULL and XEIGTPW_15273_FULL: ### New IGT tests (16) ### * igt@kms_dsc@dsc-basic-bigjoiner: - Statuses : - Exec time: [None] s * igt@kms_dsc@dsc-basic-ultrajoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-fractional-bpp-bigjoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-fractional-bpp-ultrajoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-bpc-bigjoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-bpc-formats-bigjoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-bpc-ultrajoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-formats-bigjoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-formats-ultrajoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-output-formats-bigjoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-output-formats-ultrajoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - Statuses : 2 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_15273_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotreplug-lateclose: - shard-bmg: [PASS][8] -> [SKIP][9] ([Intel XE#6779]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-7/igt@core_hotunplug@hotreplug-lateclose.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@core_hotunplug@hotreplug-lateclose.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][10] -> [FAIL][11] ([Intel XE#3718] / [Intel XE#6078]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-9/igt@kms_async_flips@alternate-sync-async-flip.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2: - shard-bmg: [PASS][12] -> [FAIL][13] ([Intel XE#6078]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-9/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2327]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-10/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#1407]) +4 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +5 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#7676]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-target-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-target-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-target-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#367]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-4/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#3432]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#3432]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +5 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#373]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-limited-range: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#306] / [Intel XE#7358]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-2/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@gamma: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2325] / [Intel XE#7358]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-4/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2252]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#307] / [Intel XE#6974]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-1/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#6974]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@legacy-hdcp14: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#7642]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-5/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1424]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-8/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: [PASS][34] -> [INCOMPLETE][35] ([Intel XE#6819] / [Intel XE#8176]) +1 other test incomplete [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-10/igt@kms_cursor_crc@cursor-suspend.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][36] -> [DMESG-FAIL][37] ([Intel XE#7774]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2286] / [Intel XE#6035]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dp_link_training@uhbr-mst: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#4354] / [Intel XE#7386]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-9/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#4422] / [Intel XE#7442]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_feature_discovery@display-4x: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1138] / [Intel XE#7344]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2374] / [Intel XE#6128]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-8/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1421]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7178] / [Intel XE#7349]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#7178] / [Intel XE#7351]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7179]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-3/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4141]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#6312] / [Intel XE#651]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2311]) +18 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-offscreen-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#6312]) +11 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2313]) +22 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7061] / [Intel XE#7356]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1469] / [Intel XE#7399]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2352] / [Intel XE#7399]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-rte: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#7905]) +27 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-rte.html * igt@kms_frontbuffer_tracking@hdr-1p-rte: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7865]) +18 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-7/igt@kms_frontbuffer_tracking@hdr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#656] / [Intel XE#7905]) +18 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-render: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#7061]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-4/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-render.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#7308]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-6/igt@kms_hdmi_inject@inject-audio.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2486]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-6/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#7283]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#3307]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-7/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#2763] / [Intel XE#6886]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#1489]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#4608]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#4608] / [Intel XE#7304]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-2/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2387] / [Intel XE#7429]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1128] / [Intel XE#7413]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-no-drrs: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#7345]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-1/igt@kms_psr@fbc-psr2-no-drrs.html * igt@kms_psr@fbc-psr2-no-drrs@edp-1: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#4609]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-1/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html * igt@kms_psr@pr-basic: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1406]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@kms_psr@pr-basic.html * igt@kms_psr@psr2-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-3/igt@kms_psr@psr2-primary-page-flip.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#3904] / [Intel XE#7342]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-4/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_setmode@basic: - shard-bmg: [PASS][83] -> [FAIL][84] ([Intel XE#6361]) +3 other tests fail [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-9/igt@kms_setmode@basic.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-6/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#1435]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [PASS][86] -> [FAIL][87] ([Intel XE#6361]) +2 other tests fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@clone-exclusive-crtc: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1435]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#6503]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-8/igt@kms_sharpness_filter@filter-basic.html * igt@kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#362] / [Intel XE#5848]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][91] -> [FAIL][92] ([Intel XE#2142]) +1 other test fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#6599]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-4/igt@xe_compute@ccs-mode-basic.html * igt@xe_create@multigpu-create-massive-size: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#7319] / [Intel XE#7350] / [Intel XE#944]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-1/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@basic-read-event: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#7636]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-5/igt@xe_eudebug@basic-read-event.html * igt@xe_eudebug_online@preempt-breakpoint: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#7636]) +7 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-5/igt@xe_eudebug_online@preempt-breakpoint.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][97] -> [INCOMPLETE][98] ([Intel XE#6321]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#6540] / [Intel XE#688]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html * igt@xe_exec_balancer@many-parallel-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#7482]) +9 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-7/igt@xe_exec_balancer@many-parallel-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1392]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#7136]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-8/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-multi-queue-prefetch: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#7136]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-1/igt@xe_exec_fault_mode@twice-multi-queue-prefetch.html * igt@xe_exec_multi_queue@many-execs-priority: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#6874]) +12 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-2/igt@xe_exec_multi_queue@many-execs-priority.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-basic: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#6874]) +9 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-7/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic.html * igt@xe_exec_reset@multi-queue-gt-reset: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#7866]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-4/igt@xe_exec_reset@multi-queue-gt-reset.html - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#7866]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_exec_reset@multi-queue-gt-reset.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#6196]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma.html * igt@xe_exec_system_allocator@process-many-large-execqueues-free-madvise: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#6703]) +13 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-execqueues-free-madvise.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#7138]) +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-6/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#7138]) +8 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate-race.html * igt@xe_gpgpu_fill@offset-4x4: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#7954]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-10/igt@xe_gpgpu_fill@offset-4x4.html * igt@xe_live_ktest@xe_eudebug: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#2833]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-1/igt@xe_live_ktest@xe_eudebug.html * igt@xe_madvise@atomic-global: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#7980]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@xe_madvise@atomic-global.html * igt@xe_multigpu_svm@mgpu-atomic-op-conflict: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#6964]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html * igt@xe_multigpu_svm@mgpu-atomic-op-prefetch: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#6964]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-8/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html * igt@xe_noexec_ping_pong@basic: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#6259] / [Intel XE#7324] / [Intel XE#7406]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-8/igt@xe_noexec_ping_pong@basic.html * igt@xe_page_reclaim@invalid-1g: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#7793]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-8/igt@xe_page_reclaim@invalid-1g.html * igt@xe_pat@xa-app-transient-media-on: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#7590]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-6/igt@xe_pat@xa-app-transient-media-on.html * igt@xe_pm@d3cold-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-5/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#584] / [Intel XE#7369]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-8/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_prefetch_fault@prefetch-fault-svm: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#7599]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-2/igt@xe_prefetch_fault@prefetch-fault-svm.html * igt@xe_pxp@display-black-pxp-fb: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-1/igt@xe_pxp@display-black-pxp-fb.html * igt@xe_query@multigpu-query-pxp-status: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#944]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-8/igt@xe_query@multigpu-query-pxp-status.html * igt@xe_sriov_admin@bulk-preempt-timeout-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#7174]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-7/igt@xe_sriov_admin@bulk-preempt-timeout-vfs-disabled.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#4130] / [Intel XE#7366]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [PASS][128] -> [FAIL][129] ([Intel XE#6569]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-10/igt@xe_sriov_flr@flr-each-isolation.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-9/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_vram@vf-access-after-resize-up: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@xe_sriov_vram@vf-access-after-resize-up.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][131] -> [SKIP][132] ([Intel XE#6703]) +148 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html * igt@xe_vm@overcommit-nonfault-vram-lr-defer: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#7892]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@xe_vm@overcommit-nonfault-vram-lr-defer.html #### Possible fixes #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [FAIL][134] ([Intel XE#7445]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-6/igt@intel_hwmon@hwmon-write.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-6/igt@intel_hwmon@hwmon-write.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2: - shard-bmg: [DMESG-FAIL][136] ([Intel XE#5545] / [Intel XE#7774]) -> [PASS][137] +1 other test pass [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][138] ([Intel XE#7571]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [FAIL][140] ([Intel XE#301]) -> [PASS][141] +1 other test pass [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][142] ([Intel XE#1503]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-4/igt@kms_hdr@invalid-hdr.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-3/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [SKIP][144] ([Intel XE#7922]) -> [PASS][145] +1 other test pass [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-4/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-3/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [SKIP][146] ([Intel XE#7915]) -> [PASS][147] +1 other test pass [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-3/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_pipe_crc_basic@nonblocking-crc: - shard-lnl: [ABORT][148] ([Intel XE#8007]) -> [PASS][149] +1 other test pass [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-lnl-5/igt@kms_pipe_crc_basic@nonblocking-crc.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-8/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@kms_vrr@max-min@pipe-a-edp-1: - shard-lnl: [FAIL][150] ([Intel XE#4227]) -> [PASS][151] +1 other test pass [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-lnl-4/igt@kms_vrr@max-min@pipe-a-edp-1.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-5/igt@kms_vrr@max-min@pipe-a-edp-1.html * igt@xe_exec_system_allocator@many-execqueues-mmap-free-nomemset: - shard-bmg: [SKIP][152] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@xe_exec_system_allocator@many-execqueues-mmap-free-nomemset.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-9/igt@xe_exec_system_allocator@many-execqueues-mmap-free-nomemset.html * igt@xe_exec_system_allocator@many-large-execqueues-new-race-nomemset: - shard-bmg: [SKIP][154] ([Intel XE#6703]) -> [PASS][155] +24 other tests pass [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-new-race-nomemset.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-new-race-nomemset.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [FAIL][156] ([Intel XE#6569]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-10/igt@xe_sriov_flr@flr-vf1-clear.html #### Warnings #### * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [SKIP][158] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][159] ([Intel XE#6703]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][160] ([Intel XE#6703]) -> [SKIP][161] ([Intel XE#1124]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-6/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][162] ([Intel XE#1124]) -> [SKIP][163] ([Intel XE#6703]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_bw@linear-tiling-2-displays-target-3840x2160p: - shard-bmg: [SKIP][164] ([Intel XE#367]) -> [SKIP][165] ([Intel XE#6703]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-bmg: [SKIP][166] ([Intel XE#2887]) -> [SKIP][167] ([Intel XE#6703]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-3/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][168] ([Intel XE#3432]) -> [SKIP][169] ([Intel XE#6703]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_chamelium_sharpness_filter@filter-basic: - shard-bmg: [SKIP][170] ([Intel XE#6703]) -> [SKIP][171] ([Intel XE#6507]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@kms_chamelium_sharpness_filter@filter-basic.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-7/igt@kms_chamelium_sharpness_filter@filter-basic.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-bmg: [SKIP][172] ([Intel XE#2320]) -> [SKIP][173] ([Intel XE#6703]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-64x21.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: [SKIP][174] ([Intel XE#6703]) -> [SKIP][175] ([Intel XE#7178] / [Intel XE#7351]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@drrshdr-1p-offscreen-pri-shrfb-draw-render: - shard-bmg: [SKIP][176] ([Intel XE#6703]) -> [SKIP][177] ([Intel XE#2311]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@kms_frontbuffer_tracking@drrshdr-1p-offscreen-pri-shrfb-draw-render.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-3/igt@kms_frontbuffer_tracking@drrshdr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrshdr-suspend: - shard-lnl: [SKIP][178] ([Intel XE#6312]) -> [ABORT][179] ([Intel XE#8007]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-lnl-4/igt@kms_frontbuffer_tracking@drrshdr-suspend.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-lnl-5/igt@kms_frontbuffer_tracking@drrshdr-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][180] ([Intel XE#6703]) -> [SKIP][181] ([Intel XE#4141]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][182] ([Intel XE#2311]) -> [SKIP][183] ([Intel XE#6703]) +14 other tests skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-mmap-wc: - shard-bmg: [SKIP][184] ([Intel XE#7061]) -> [SKIP][185] ([Intel XE#6703]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-10/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-mmap-wc.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-bmg: [SKIP][186] ([Intel XE#4141]) -> [SKIP][187] ([Intel XE#6703]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][188] ([Intel XE#2313]) -> [SKIP][189] ([Intel XE#6703]) +11 other tests skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt: - shard-bmg: [SKIP][190] ([Intel XE#6703]) -> [SKIP][191] ([Intel XE#7061] / [Intel XE#7356]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render: - shard-bmg: [SKIP][192] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][193] ([Intel XE#6703]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-render: - shard-bmg: [SKIP][194] ([Intel XE#6703]) -> [SKIP][195] ([Intel XE#2313]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-render.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-6/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-render.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][196] ([Intel XE#3544] / [Intel XE#7915] / [Intel XE#7916]) -> [SKIP][197] ([Intel XE#3544] / [Intel XE#7916]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [SKIP][198] ([Intel XE#7915]) -> [SKIP][199] ([Intel XE#7916]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-7/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb2101010.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-6/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping: - shard-bmg: [SKIP][200] ([Intel XE#7283]) -> [SKIP][201] ([Intel XE#6703]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][202] ([Intel XE#1489]) -> [SKIP][203] ([Intel XE#6703]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-bmg: [SKIP][204] ([Intel XE#2387] / [Intel XE#7429]) -> [SKIP][205] ([Intel XE#6703]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-4/igt@kms_psr2_su@page_flip-nv12.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr-dpms: - shard-bmg: [SKIP][206] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][207] ([Intel XE#6703]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-5/igt@kms_psr@psr-dpms.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_psr@psr-dpms.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-bmg: [SKIP][208] ([Intel XE#6703]) -> [SKIP][209] ([Intel XE#3904] / [Intel XE#7342]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_vrr@lobf: - shard-bmg: [SKIP][210] ([Intel XE#2168] / [Intel XE#7444]) -> [SKIP][211] ([Intel XE#6703]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-3/igt@kms_vrr@lobf.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@kms_vrr@lobf.html * igt@xe_eudebug_online@single-step-one: - shard-bmg: [SKIP][212] ([Intel XE#7636]) -> [SKIP][213] ([Intel XE#6703]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-5/igt@xe_eudebug_online@single-step-one.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_eudebug_online@single-step-one.html * igt@xe_evict@evict-small-external-multi-queue-cm: - shard-bmg: [SKIP][214] ([Intel XE#7140]) -> [SKIP][215] ([Intel XE#6703]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-10/igt@xe_evict@evict-small-external-multi-queue-cm.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_evict@evict-small-external-multi-queue-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind: - shard-bmg: [SKIP][216] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][217] ([Intel XE#6703]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html * igt@xe_exec_basic@multigpu-no-exec-rebind: - shard-bmg: [SKIP][218] ([Intel XE#6703]) -> [SKIP][219] ([Intel XE#2322] / [Intel XE#7372]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-rebind.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-rebind.html * igt@xe_exec_fault_mode@many-multi-queue-invalid-userptr-fault: - shard-bmg: [SKIP][220] ([Intel XE#6703]) -> [SKIP][221] ([Intel XE#7136]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-invalid-userptr-fault.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-1/igt@xe_exec_fault_mode@many-multi-queue-invalid-userptr-fault.html * igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault: - shard-bmg: [SKIP][222] ([Intel XE#7136]) -> [SKIP][223] ([Intel XE#6703]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-priority-smem: - shard-bmg: [SKIP][224] ([Intel XE#6874]) -> [SKIP][225] ([Intel XE#6703]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-preempt-mode-priority-smem.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-preempt-mode-priority-smem.html * igt@xe_exec_reset@cm-multi-queue-gt-reset: - shard-bmg: [SKIP][226] ([Intel XE#7866]) -> [SKIP][227] ([Intel XE#6703]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@xe_exec_reset@cm-multi-queue-gt-reset.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_exec_reset@cm-multi-queue-gt-reset.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-basic: - shard-bmg: [SKIP][228] ([Intel XE#7138]) -> [SKIP][229] ([Intel XE#6703]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-cm-fd-basic.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-fd-basic.html * igt@xe_page_reclaim@binds-full-pd: - shard-bmg: [SKIP][230] ([Intel XE#7793]) -> [SKIP][231] ([Intel XE#6703]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-5/igt@xe_page_reclaim@binds-full-pd.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_page_reclaim@binds-full-pd.html * igt@xe_pat@pat-sw-hw-reset-compare: - shard-bmg: [FAIL][232] ([Intel XE#7695]) -> [SKIP][233] ([Intel XE#6703]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-1/igt@xe_pat@pat-sw-hw-reset-compare.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_pat@pat-sw-hw-reset-compare.html * igt@xe_pxp@pxp-termination-key-update-post-rpm: - shard-bmg: [SKIP][234] ([Intel XE#4733] / [Intel XE#7417]) -> [SKIP][235] ([Intel XE#6703]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-4/igt@xe_pxp@pxp-termination-key-update-post-rpm.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-rpm.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: [SKIP][236] ([Intel XE#6703]) -> [SKIP][237] ([Intel XE#944]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8943/shard-bmg-2/igt@xe_query@multigpu-query-uc-fw-version-huc.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/shard-bmg-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [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#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035 [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078 [Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6259 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507 [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#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779 [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819 [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#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#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#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319 [Intel XE#7324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7324 [Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344 [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366 [Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369 [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#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7406 [Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [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#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7676 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866 [Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915 [Intel XE#7916]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7916 [Intel XE#7922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7922 [Intel XE#7954]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7954 [Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8176]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8176 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8943 -> IGTPW_15273 * Linux: xe-5155-158de01c718ed9dd7cb123d0df59a6077be26579 -> xe-5168-f4ba932abb4422a63c72a272b0386f745ce9a119 IGTPW_15273: 15273 IGT_8943: 8943 xe-5155-158de01c718ed9dd7cb123d0df59a6077be26579: 158de01c718ed9dd7cb123d0df59a6077be26579 xe-5168-f4ba932abb4422a63c72a272b0386f745ce9a119: f4ba932abb4422a63c72a272b0386f745ce9a119 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15273/index.html [-- Attachment #2: Type: text/html, Size: 82941 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.Full: failure for Add dsc+bigjoiner subtest (rev9) 2026-05-30 19:36 [PATCH i-g-t,v7 0/5] Add dsc+bigjoiner subtest Swati Sharma ` (7 preceding siblings ...) 2026-05-30 21:15 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-05-30 22:28 ` Patchwork 8 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2026-05-30 22:28 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 160083 bytes --] == Series Details == Series: Add dsc+bigjoiner subtest (rev9) URL : https://patchwork.freedesktop.org/series/128266/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18592_full -> IGTPW_15273_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15273_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15273_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15273_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-glk10: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk10/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_big_fb@linear-8bpp-rotate-0: - shard-dg2: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@kms_big_fb@linear-8bpp-rotate-0.html - shard-rkl: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-0.html - shard-dg1: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-12/igt@kms_big_fb@linear-8bpp-rotate-0.html - shard-snb: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-snb1/igt@kms_big_fb@linear-8bpp-rotate-0.html - shard-tglu: NOTRUN -> [FAIL][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-5/igt@kms_big_fb@linear-8bpp-rotate-0.html - shard-mtlp: NOTRUN -> [FAIL][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@kms_big_fb@linear-8bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-tglu-1: NOTRUN -> [FAIL][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_dsc@dsc-fractional-bpp-bigjoiner (NEW): - shard-dg1: NOTRUN -> [SKIP][9] +15 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html - shard-tglu: NOTRUN -> [SKIP][10] +12 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-bigjoiner (NEW): - shard-tglu-1: NOTRUN -> [SKIP][11] +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html - shard-mtlp: NOTRUN -> [SKIP][12] +14 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-2/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner (NEW): - shard-dg2: NOTRUN -> [SKIP][13] +15 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner (NEW): - shard-rkl: NOTRUN -> [SKIP][14] +10 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html #### Warnings #### * igt@kms_dsc@dsc-basic: - shard-dg2: [SKIP][15] ([i915#3555] / [i915#3840]) -> [SKIP][16] +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-5/igt@kms_dsc@dsc-basic.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@kms_dsc@dsc-basic.html - shard-mtlp: [SKIP][17] ([i915#3555] / [i915#3840] / [i915#9159]) -> [SKIP][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-mtlp-5/igt@kms_dsc@dsc-basic.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: [SKIP][19] ([i915#3840]) -> [SKIP][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: [SKIP][21] ([i915#3840]) -> [SKIP][22] +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-16/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: [SKIP][23] ([i915#3840]) -> [SKIP][24] +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: [SKIP][25] ([i915#3840] / [i915#9688]) -> [SKIP][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-mtlp-5/igt@kms_dsc@dsc-fractional-bpp.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: [SKIP][27] ([i915#3840]) -> [SKIP][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-mtlp: [SKIP][29] ([i915#3840]) -> [SKIP][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-mtlp-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: [SKIP][31] ([i915#3555] / [i915#3840]) -> [SKIP][32] +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: [SKIP][33] ([i915#3555] / [i915#3840]) -> [SKIP][34] +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-tglu-10/igt@kms_dsc@dsc-with-formats.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-10/igt@kms_dsc@dsc-with-formats.html - shard-mtlp: [SKIP][35] ([i915#3555] / [i915#3840]) -> [SKIP][36] +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-mtlp-6/igt@kms_dsc@dsc-with-formats.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-4/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: [SKIP][37] ([i915#3555] / [i915#3840]) -> [SKIP][38] +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-15/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: [SKIP][39] ([i915#3840] / [i915#9053]) -> [SKIP][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-rkl: [SKIP][41] ([i915#3840] / [i915#9053]) -> [SKIP][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-dg1: [SKIP][43] ([i915#3840] / [i915#9053]) -> [SKIP][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: [SKIP][45] ([i915#3840] / [i915#9053]) -> [SKIP][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-tglu-10/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-mtlp: [SKIP][47] ([i915#3555] / [i915#3840] / [i915#9053]) -> [SKIP][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-mtlp-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html New tests --------- New tests have been introduced between CI_DRM_18592_full and IGTPW_15273_full: ### New IGT tests (22) ### * igt@kms_dsc@dsc-basic-bigjoiner: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-basic-ultrajoiner: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-fractional-bpp-bigjoiner: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-fractional-bpp-ultrajoiner: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-bpc-bigjoiner: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-bpc-formats-bigjoiner: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-bpc-ultrajoiner: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-formats-bigjoiner: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-formats-ultrajoiner: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-output-formats-bigjoiner: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-output-formats-ultrajoiner: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [11.16] s * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [11.10] s * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [11.04] s * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [2.32] s * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.92] s * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.85] s Known issues ------------ Here are the changes found in IGTPW_15273_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#6230]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][50] ([i915#6230]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-15/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][51] ([i915#6230]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-3/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][52] ([i915#11814]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html * igt@dmabuf@all-tests: - shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#15931]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@dmabuf@all-tests.html * igt@dumb_buffer@create-clear: - shard-dg2: NOTRUN -> [FAIL][54] ([i915#16307]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-8/igt@dumb_buffer@create-clear.html - shard-rkl: NOTRUN -> [FAIL][55] ([i915#16307]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@dumb_buffer@create-clear.html - shard-dg1: NOTRUN -> [FAIL][56] ([i915#16307]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-19/igt@dumb_buffer@create-clear.html - shard-snb: NOTRUN -> [FAIL][57] ([i915#16307]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-snb6/igt@dumb_buffer@create-clear.html - shard-tglu: NOTRUN -> [FAIL][58] ([i915#16307]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-6/igt@dumb_buffer@create-clear.html - shard-mtlp: NOTRUN -> [FAIL][59] ([i915#16307]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-1/igt@dumb_buffer@create-clear.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3281]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-6/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#9323]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-dg1: NOTRUN -> [SKIP][62] ([i915#9323]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-tglu: NOTRUN -> [SKIP][63] ([i915#9323]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#9323]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#13008]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-8/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][66] -> [INCOMPLETE][67] ([i915#13356]) +1 other test incomplete [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-8/igt@gem_ccs@suspend-resume.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-10/igt@gem_ccs@suspend-resume.html - shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#9323]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#14544] / [i915#8562]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@engines-hang: - shard-snb: NOTRUN -> [SKIP][70] ([i915#1099]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-snb5/igt@gem_ctx_persistence@engines-hang.html * igt@gem_eio@kms: - shard-rkl: [PASS][71] -> [DMESG-WARN][72] ([i915#13363]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-3/igt@gem_eio@kms.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@gem_eio@kms.html - shard-tglu: [PASS][73] -> [DMESG-WARN][74] ([i915#13363]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-tglu-4/igt@gem_eio@kms.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-5/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#4525]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#4525]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-5/igt@gem_exec_balancer@parallel-out-fence.html - shard-tglu: NOTRUN -> [SKIP][77] ([i915#4525]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-8/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][78] ([i915#6334]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3539] / [i915#4852]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-8/igt@gem_exec_flush@basic-wb-set-default.html - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3539] / [i915#4852]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-15/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#5107]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3281]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-14/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3281]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-7/igt@gem_exec_reloc@basic-write-read-active.html - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3281]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_suspend@basic-s3: - shard-glk: NOTRUN -> [INCOMPLETE][85] ([i915#13196] / [i915#13356]) +1 other test incomplete [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk8/igt@gem_exec_suspend@basic-s3.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4860]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-none.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4860]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4860]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-10/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4613]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-6/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#4613]) +6 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#4613]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-9/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][92] ([i915#4613]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk4/igt@gem_lmem_swapping@random-engines.html - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#4613]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html * igt@gem_madvise@dontneed-before-pwrite: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3282]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-4/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#284]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-9/igt@gem_media_vme.html * igt@gem_mmap@bad-offset: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4083]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@gem_mmap@bad-offset.html * igt@gem_mmap_gtt@hang-user: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4077]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-7/igt@gem_mmap_gtt@hang-user.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#4083]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@gem_mmap_wc@set-cache-level.html - shard-dg1: NOTRUN -> [SKIP][99] ([i915#4083]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-16/igt@gem_mmap_wc@set-cache-level.html * igt@gem_pwrite@basic-exhaustion: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3282]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][101] ([i915#3282]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-12/igt@gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][102] ([i915#2658]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-snb7/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][103] ([i915#2658]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-2/igt@gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#3282]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-8/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4270]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-5/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#13717]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-1/igt@gem_pxp@hw-rejects-pxp-context.html - shard-tglu: NOTRUN -> [SKIP][107] ([i915#13398]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-10/igt@gem_pxp@hw-rejects-pxp-context.html - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#13398]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4270]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-16/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#8428]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-8/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][111] +465 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#5190] / [i915#8428]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-7/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4885]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-8/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][114] ([i915#4885]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-14/igt@gem_softpin@evict-snoop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4885]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-4/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiling_max_stride: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4077]) +8 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@gem_tiling_max_stride.html - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4077]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-12/igt@gem_tiling_max_stride.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#3297]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#3297]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-5/igt@gem_userptr_blits@coherency-unsync.html - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3297]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-5/igt@gem_userptr_blits@coherency-unsync.html - shard-dg1: NOTRUN -> [SKIP][121] ([i915#3297]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-18/igt@gem_userptr_blits@coherency-unsync.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#3297]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-8/igt@gem_userptr_blits@coherency-unsync.html - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#3297]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-8/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#14544] / [i915#3297]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_workarounds@suspend-resume: - shard-glk: [PASS][125] -> [INCOMPLETE][126] ([i915#13356] / [i915#14586]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-glk9/igt@gem_workarounds@suspend-resume.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk8/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@bb-secure: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#2856]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@gen9_exec_parse@bb-secure.html - shard-rkl: NOTRUN -> [SKIP][128] ([i915#14544] / [i915#2527]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html - shard-dg1: NOTRUN -> [SKIP][129] ([i915#2527]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-19/igt@gen9_exec_parse@bb-secure.html - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#2856]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-1/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#2527] / [i915#2856]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-3/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#2527]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@busy-hang@ccs0: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#14073]) +6 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-6/igt@i915_drm_fdinfo@busy-hang@ccs0.html * igt@i915_drm_fdinfo@busy-hang@vcs0: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#14073]) +7 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-5/igt@i915_drm_fdinfo@busy-hang@vcs0.html - shard-dg1: NOTRUN -> [SKIP][135] ([i915#14073]) +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-18/igt@i915_drm_fdinfo@busy-hang@vcs0.html * igt@i915_drm_fdinfo@virtual-busy-all: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#14118]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@i915_drm_fdinfo@virtual-busy-all.html - shard-dg2: NOTRUN -> [SKIP][137] ([i915#14118]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-all.html - shard-dg1: NOTRUN -> [SKIP][138] ([i915#14118]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-all.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-glk: NOTRUN -> [ABORT][139] ([i915#15342]) +1 other test abort [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk6/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#8399]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#8399]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#14498]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle.html - shard-rkl: NOTRUN -> [SKIP][143] ([i915#14498]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][144] ([i915#13356]) +1 other test incomplete [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk11/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][145] ([i915#13356] / [i915#15172]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk3/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#11681] / [i915#6621]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-10/igt@i915_pm_rps@min-max-config-loaded.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#11681] / [i915#6621]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-12/igt@i915_pm_rps@min-max-config-loaded.html - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#11681] / [i915#6621]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-3/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#11681]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-7/igt@i915_pm_rps@thresholds-idle-park.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#11681]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-17/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_rps@waitboost: - shard-mtlp: [PASS][151] -> [FAIL][152] ([i915#15365]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-mtlp-3/igt@i915_pm_rps@waitboost.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-7/igt@i915_pm_rps@waitboost.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [PASS][153] -> [ABORT][154] ([i915#15140]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-8/igt@i915_suspend@fence-restore-tiled2untiled.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-1/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][155] ([i915#16182] / [i915#4817]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk4/igt@i915_suspend@forcewake.html * igt@i915_suspend@sysfs-reader: - shard-rkl: [PASS][156] -> [INCOMPLETE][157] ([i915#4817]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-8/igt@i915_suspend@sysfs-reader.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#4212]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-7/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html - shard-dg2: NOTRUN -> [SKIP][159] ([i915#4212]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-1/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html - shard-dg1: NOTRUN -> [SKIP][160] ([i915#4212]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-15/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2: - shard-glk: [PASS][161] -> [FAIL][162] ([i915#14888]) +1 other test fail [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#1769] / [i915#3555]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#5286]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#4538] / [i915#5286]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-16/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html - shard-tglu: NOTRUN -> [SKIP][166] ([i915#5286]) +4 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#5286]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#14544] / [i915#5286]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][169] +9 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#3828]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3828]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#3828]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][173] +6 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#3638]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-16/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3638]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#4538] / [i915#5190]) +5 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-5/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#4538]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#5190]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#6187]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#14544] / [i915#6095]) +8 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#6095]) +24 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#10307] / [i915#6095]) +103 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#12805]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][185] ([i915#12805]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][186] ([i915#12805]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-12/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][187] ([i915#12805]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#12805]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#6095]) +12 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#14098] / [i915#6095]) +49 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html - shard-dg1: NOTRUN -> [SKIP][191] ([i915#4423] / [i915#6095]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-19/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#6095]) +72 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#6095]) +234 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#6095]) +64 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#6095]) +39 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#13781]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3742]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#3742]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-15/igt@kms_cdclk@plane-scaling.html - shard-tglu: NOTRUN -> [SKIP][200] ([i915#3742]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-3/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#13783]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-7/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#13783]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#11151] / [i915#7828]) +5 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#11151] / [i915#7828]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-8/igt@kms_chamelium_frames@dp-crc-fast.html - shard-dg1: NOTRUN -> [SKIP][205] ([i915#11151] / [i915#7828]) +4 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-14/igt@kms_chamelium_frames@dp-crc-fast.html - shard-tglu: NOTRUN -> [SKIP][206] ([i915#11151] / [i915#7828]) +7 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-4/igt@kms_chamelium_frames@dp-crc-fast.html - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#11151] / [i915#7828]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-4/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#11151] / [i915#7828]) +6 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-1/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#15330]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#15330] / [i915#3116] / [i915#3299]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#15865]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][212] ([i915#7173]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-10/igt@kms_content_protection@legacy@pipe-a-dp-3.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#15865]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][214] ([i915#15865]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-1/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][215] ([i915#15865]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-10/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#15865]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-max-size.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#3555]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-max-size.html - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8814]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1: - shard-rkl: [PASS][220] -> [FAIL][221] ([i915#13566]) +1 other test fail [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#13049]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#8814]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#3555]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: [PASS][225] -> [FAIL][226] ([i915#13566]) +1 other test fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-256x85.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#13049]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-7/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-rkl: NOTRUN -> [SKIP][228] ([i915#13049]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-tglu: NOTRUN -> [SKIP][229] ([i915#13049]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#4103]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#4103]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipa-varying-size: - shard-dg1: [PASS][232] -> [DMESG-WARN][233] ([i915#4423]) +1 other test dmesg-warn [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-12/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-16/igt@kms_cursor_legacy@cursora-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#9809]) +2 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#13046] / [i915#5354]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][236] ([i915#15804]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#14544] / [i915#4103]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#4103]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-19/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#16119] / [i915#4213]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#4103]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][241] ([i915#4103]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#13749]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#13749]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-sst: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#13748]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-3/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-with-output-formats-bigjoiner (NEW): - shard-rkl: NOTRUN -> [SKIP][245] ([i915#14544]) +9 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#16084]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#16081]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][248] ([i915#12745] / [i915#4839]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][249] ([i915#12745]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#3637] / [i915#9934]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#3637] / [i915#9934]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb.html - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3637] / [i915#9934]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-1/igt@kms_flip@2x-nonexisting-fb.html - shard-dg2: NOTRUN -> [SKIP][253] ([i915#9934]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_flip@2x-nonexisting-fb.html - shard-rkl: NOTRUN -> [SKIP][254] ([i915#14544] / [i915#9934]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb.html - shard-dg1: NOTRUN -> [SKIP][255] ([i915#9934]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-19/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#9934]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-rkl: NOTRUN -> [FAIL][257] ([i915#13027]) +1 other test fail [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#14544] / [i915#15643]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#15643]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][260] ([i915#15643]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#15643]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#15643] / [i915#5190]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#15643]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#15643]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#15643]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][267] +30 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#15991] / [i915#5354]) +20 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][269] ([i915#10056]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk9/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-indfb-fliptrack-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#15989]) +9 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-indfb-fliptrack-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#15990]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbchdr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][272] +90 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][273] +85 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render: - shard-snb: NOTRUN -> [SKIP][274] +159 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-snb1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][275] +73 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#15102]) +31 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#1825]) +4 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#14544] / [i915#15102]) +3 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-indfb-fliptrack-mmap-gtt: - shard-glk10: NOTRUN -> [SKIP][279] +226 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-plflip-blt: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#15991]) +15 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-indfb-scaledprimary: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#15989]) +11 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#15990]) +6 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-17/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-tglu: NOTRUN -> [SKIP][283] ([i915#15989]) +13 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-9/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#15990]) +8 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-8/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move: - shard-glk: [PASS][285] -> [SKIP][286] +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk5/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#15989]) +4 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-19/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu: - shard-rkl: [PASS][288] -> [SKIP][289] ([i915#15989]) +11 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#15989]) +8 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-3/igt@kms_frontbuffer_tracking@hdr-suspend.html - shard-rkl: NOTRUN -> [SKIP][291] ([i915#15989]) +18 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#9766]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][293] ([i915#9766]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-16/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][294] ([i915#9766]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#15102]) +28 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#15991] / [i915#1825]) +11 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#14544] / [i915#1825]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#15990] / [i915#8708]) +7 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#15990] / [i915#8708]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#15990] / [i915#8708]) +2 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#15102] / [i915#3023]) +13 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#15102]) +16 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-1/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render.html - shard-rkl: NOTRUN -> [SKIP][303] ([i915#15102]) +14 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#15102]) +10 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-15/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#15991]) +25 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw.html * igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#16012]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#16012]) +3 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: NOTRUN -> [INCOMPLETE][308] ([i915#15436]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#16011]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-4-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#16011]) +7 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-17/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-4-xrgb2101010.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#16012]) +5 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-18/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-4-xrgb2101010.html * igt@kms_hdr@static-swap: - shard-rkl: [PASS][312] -> [SKIP][313] ([i915#16011] / [i915#3555] / [i915#8228]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-1/igt@kms_hdr@static-swap.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-5/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#16011] / [i915#3555] / [i915#8228]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-8/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010: - shard-glk11: NOTRUN -> [SKIP][315] +79 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk11/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#16011]) +3 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html - shard-tglu: NOTRUN -> [SKIP][317] ([i915#16011]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-8/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#15458]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-7/igt@kms_joiner@basic-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][319] ([i915#15458]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][320] ([i915#15458]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-17/igt@kms_joiner@basic-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#15458]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-6/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#13688]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-7/igt@kms_joiner@basic-max-non-joiner.html - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#13688]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-4/igt@kms_joiner@basic-max-non-joiner.html - shard-dg2: NOTRUN -> [SKIP][324] ([i915#13688]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-8/igt@kms_joiner@basic-max-non-joiner.html - shard-dg1: NOTRUN -> [SKIP][325] ([i915#13688]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-15/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#15638] / [i915#15722]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][327] ([i915#15815]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][328] ([i915#15815]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][329] ([i915#15815]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][330] ([i915#15815]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-16/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu: NOTRUN -> [SKIP][331] ([i915#15815]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][332] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#14544] / [i915#15709]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][334] ([i915#15608]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-4/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#15709]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html - shard-dg1: NOTRUN -> [SKIP][336] ([i915#15709]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-13/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#15709]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#15709]) +4 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#15709]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#15709]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-glk: NOTRUN -> [INCOMPLETE][341] ([i915#13026]) +1 other test incomplete [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][342] ([i915#10647] / [i915#12177]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk9/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][343] ([i915#10647]) +1 other test fail [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk9/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@tiling-yf: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#14259]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-10/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][345] ([i915#14259]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-5/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#15329]) +4 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#15329]) +4 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][348] ([i915#12343] / [i915#9812]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#12343] / [i915#5354]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#12343] / [i915#9812]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-10/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#15948]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_pm_dc@dc5-psr.html - shard-rkl: NOTRUN -> [SKIP][352] ([i915#14544] / [i915#15948]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html - shard-dg1: NOTRUN -> [SKIP][353] ([i915#15948]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-19/igt@kms_pm_dc@dc5-psr.html - shard-tglu: NOTRUN -> [SKIP][354] ([i915#15948]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-8/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#15751]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#15948]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#8430]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#15073]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg1: [PASS][359] -> [SKIP][360] ([i915#15073]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-16/igt@kms_pm_rpm@dpms-non-lpsp.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-14/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][361] -> [SKIP][362] ([i915#15073]) +3 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][363] ([i915#15073]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][364] -> [SKIP][365] ([i915#15073]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][366] ([i915#6524]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#6524] / [i915#6805]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_prime@d3hot.html - shard-rkl: NOTRUN -> [SKIP][368] ([i915#14544] / [i915#6524]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_prime@d3hot.html - shard-dg1: NOTRUN -> [SKIP][369] ([i915#6524]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-13/igt@kms_prime@d3hot.html - shard-tglu: NOTRUN -> [SKIP][370] ([i915#6524]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-5/igt@kms_prime@d3hot.html - shard-mtlp: NOTRUN -> [SKIP][371] ([i915#6524]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-2/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][372] ([i915#11520]) +4 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][373] ([i915#11520]) +11 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk5/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-glk11: NOTRUN -> [SKIP][374] ([i915#11520]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk11/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-glk10: NOTRUN -> [SKIP][375] ([i915#11520]) +6 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#11520]) +4 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][377] ([i915#11520]) +5 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][378] ([i915#11520]) +2 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-14/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][379] ([i915#11520]) +4 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][380] ([i915#11520]) +2 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-snb4/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][381] ([i915#9688]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@fbc-psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][382] ([i915#1072] / [i915#14544] / [i915#9732]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_psr@fbc-psr2-suspend.html * igt@kms_psr@psr-primary-blt: - shard-tglu-1: NOTRUN -> [SKIP][383] ([i915#9732]) +12 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_psr@psr-primary-blt.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][384] ([i915#1072] / [i915#9732]) +9 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-7/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][385] ([i915#1072] / [i915#9732]) +17 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][386] ([i915#1072] / [i915#9732]) +4 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-12/igt@kms_psr@psr2-sprite-mmap-gtt.html - shard-tglu: NOTRUN -> [SKIP][387] ([i915#9732]) +13 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-2/igt@kms_psr@psr2-sprite-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][388] ([i915#4077] / [i915#9688]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-8/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#15949]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg1: NOTRUN -> [SKIP][390] ([i915#15949]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-12/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][391] ([i915#15949]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][392] ([i915#15949]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][393] ([i915#12755] / [i915#15867] / [i915#5190]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-mtlp: NOTRUN -> [SKIP][394] ([i915#12755] / [i915#15867]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][395] ([i915#5289]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][396] ([i915#5289]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][397] ([i915#5289]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][398] ([i915#5289]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][399] ([i915#5289]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][400] ([i915#12755] / [i915#15867]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-none: - shard-tglu-1: NOTRUN -> [SKIP][401] ([i915#3555]) +6 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@basic@pipe-b-hdmi-a-2: - shard-rkl: [PASS][402] -> [FAIL][403] ([i915#15106]) +2 other tests fail [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-7/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][404] ([i915#10959]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][405] ([i915#8623]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][406] ([i915#12276]) +3 other tests incomplete [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic: - shard-rkl: NOTRUN -> [SKIP][407] ([i915#15243] / [i915#3555]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-5/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][408] ([i915#3555]) +3 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-2/igt@kms_vrr@flip-suspend.html - shard-mtlp: NOTRUN -> [SKIP][409] ([i915#3555] / [i915#8808]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-8/igt@kms_vrr@flip-suspend.html - shard-dg2: NOTRUN -> [SKIP][410] ([i915#15243] / [i915#3555]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@kms_vrr@flip-suspend.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: [PASS][411] -> [FAIL][412] ([i915#4349]) +7 other tests fail [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-mtlp-2/igt@perf_pmu@busy-idle-check-all@ccs0.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@ccs0.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [PASS][413] -> [FAIL][414] ([i915#4349]) +9 other tests fail [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-1/igt@perf_pmu@busy-idle-check-all@vcs0.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-5/igt@perf_pmu@busy-idle-check-all@vcs0.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [PASS][415] -> [FAIL][416] ([i915#4349]) +3 other tests fail [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-16/igt@perf_pmu@busy-idle-check-all@vecs0.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-16/igt@perf_pmu@busy-idle-check-all@vecs0.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg2: [PASS][417] -> [FAIL][418] ([i915#15997]) +1 other test fail [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-7/igt@perf_pmu@most-busy-idle-check-all.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-8/igt@perf_pmu@most-busy-idle-check-all.html - shard-mtlp: [PASS][419] -> [FAIL][420] ([i915#15997]) +1 other test fail [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][421] ([i915#9917]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html - shard-rkl: NOTRUN -> [SKIP][422] ([i915#9917]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html - shard-dg1: NOTRUN -> [SKIP][423] ([i915#9917]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-18/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random: - shard-tglu: NOTRUN -> [SKIP][424] ([i915#16066]) +8 other tests skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-10/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html - shard-mtlp: NOTRUN -> [SKIP][425] ([i915#16066]) +8 other tests skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-6/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][426] ([i915#4818]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [INCOMPLETE][427] ([i915#13356]) -> [PASS][428] +1 other test pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [INCOMPLETE][429] ([i915#13356]) -> [PASS][430] +1 other test pass [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-6/igt@gem_exec_suspend@basic-s0.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [INCOMPLETE][431] ([i915#13809] / [i915#16226]) -> [PASS][432] [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-3/igt@gem_softpin@noreloc-s3.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@gem_softpin@noreloc-s3.html * igt@i915_module_load@reload-no-display: - shard-dg2: [DMESG-WARN][433] ([i915#13029] / [i915#14545]) -> [PASS][434] [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-4/igt@i915_module_load@reload-no-display.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@i915_module_load@reload-no-display.html - shard-dg1: [DMESG-WARN][435] ([i915#13029] / [i915#14545]) -> [PASS][436] [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-18/igt@i915_module_load@reload-no-display.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-12/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [FAIL][437] ([i915#12964]) -> [PASS][438] +1 other test pass [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-1/igt@i915_pm_rc6_residency@rc6-accuracy.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-1/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg2: [DMESG-WARN][439] ([i915#14545]) -> [PASS][440] [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-7/igt@i915_suspend@basic-s2idle-without-i915.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-5/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-tglu: [ABORT][441] ([i915#15840]) -> [PASS][442] +1 other test pass [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-tglu-10/igt@kms_async_flips@async-flip-suspend-resume.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-2/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][443] ([i915#13566]) -> [PASS][444] +3 other tests pass [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: [FAIL][445] ([i915#13566]) -> [PASS][446] +1 other test pass [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-suspend: - shard-rkl: [INCOMPLETE][447] ([i915#12358] / [i915#14152]) -> [PASS][448] [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2: - shard-rkl: [INCOMPLETE][449] ([i915#16276] / [i915#6113]) -> [PASS][450] +1 other test pass [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html * igt@kms_force_connector_basic@force-connector-state: - shard-mtlp: [SKIP][451] ([i915#15672]) -> [PASS][452] [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-6/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render: - shard-rkl: [SKIP][453] ([i915#15989]) -> [PASS][454] +15 other tests pass [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-move: - shard-glk: [SKIP][455] -> [PASS][456] +5 other tests pass [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-glk3/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-move.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-pwrite: - shard-dg2: [SKIP][457] ([i915#15989]) -> [PASS][458] +3 other tests pass [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-5/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-pwrite.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-pwrite.html * igt@kms_hdr@bpc-switch: - shard-rkl: [SKIP][459] ([i915#16012] / [i915#3555] / [i915#8228]) -> [PASS][460] [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-8/igt@kms_hdr@bpc-switch.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: [SKIP][461] ([i915#16011]) -> [PASS][462] +3 other tests pass [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-2-xrgb2101010.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-1/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_hdr@static-toggle: - shard-rkl: [SKIP][463] ([i915#16011] / [i915#3555] / [i915#8228]) -> [PASS][464] +1 other test pass [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-7/igt@kms_hdr@static-toggle.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_hdr@static-toggle.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][465] ([i915#15073]) -> [PASS][466] +2 other tests pass [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@i2c: - shard-glk: [FAIL][467] ([i915#8717]) -> [PASS][468] [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-glk3/igt@kms_pm_rpm@i2c.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk9/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg1: [SKIP][469] ([i915#15073]) -> [PASS][470] +3 other tests pass [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@perf_pmu@busy-idle@bcs0: - shard-mtlp: [FAIL][471] ([i915#4349]) -> [PASS][472] +5 other tests pass [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-mtlp-3/igt@perf_pmu@busy-idle@bcs0.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-5/igt@perf_pmu@busy-idle@bcs0.html * igt@perf_pmu@busy-idle@vcs0: - shard-dg2: [FAIL][473] ([i915#4349]) -> [PASS][474] +5 other tests pass [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-7/igt@perf_pmu@busy-idle@vcs0.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-6/igt@perf_pmu@busy-idle@vcs0.html - shard-dg1: [FAIL][475] ([i915#4349]) -> [PASS][476] +3 other tests pass [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-17/igt@perf_pmu@busy-idle@vcs0.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-12/igt@perf_pmu@busy-idle@vcs0.html #### Warnings #### * igt@device_reset@cold-reset-bound: - shard-rkl: [SKIP][477] ([i915#11078]) -> [SKIP][478] ([i915#11078] / [i915#14544]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-7/igt@device_reset@cold-reset-bound.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@device_reset@cold-reset-bound.html * igt@dmabuf@all-tests: - shard-rkl: [SKIP][479] ([i915#15931]) -> [SKIP][480] ([i915#14544] / [i915#15931]) [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-8/igt@dmabuf@all-tests.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@dmabuf@all-tests.html * igt@gem_basic@multigpu-create-close: - shard-rkl: [SKIP][481] ([i915#7697]) -> [SKIP][482] ([i915#14544] / [i915#7697]) [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-2/igt@gem_basic@multigpu-create-close.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: [SKIP][483] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][484] ([i915#3555] / [i915#9323]) [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume: - shard-rkl: [SKIP][485] ([i915#14544] / [i915#9323]) -> [SKIP][486] ([i915#9323]) [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@gem_ccs@suspend-resume.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@gem_ccs@suspend-resume.html * igt@gem_ctx_sseu@engines: - shard-rkl: [SKIP][487] ([i915#14544] / [i915#280]) -> [SKIP][488] ([i915#280]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@gem_ctx_sseu@engines.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: [SKIP][489] ([i915#14544] / [i915#4525]) -> [SKIP][490] ([i915#4525]) +1 other test skip [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-1/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: [SKIP][491] ([i915#4525]) -> [SKIP][492] ([i915#14544] / [i915#4525]) +1 other test skip [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-7/igt@gem_exec_balancer@parallel-ordering.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_big@single: - shard-tglu: [FAIL][493] ([i915#15816]) -> [FAIL][494] ([i915#15944]) [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-tglu-7/igt@gem_exec_big@single.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-3/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: [SKIP][495] ([i915#6334]) -> [SKIP][496] ([i915#14544] / [i915#6334]) +1 other test skip [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-4/igt@gem_exec_capture@capture-invisible@smem0.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: [SKIP][497] ([i915#3281]) -> [SKIP][498] ([i915#14544] / [i915#3281]) +3 other tests skip [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-rkl: [SKIP][499] ([i915#14544] / [i915#3281]) -> [SKIP][500] ([i915#3281]) +1 other test skip [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: [SKIP][501] ([i915#7276]) -> [SKIP][502] ([i915#14544] / [i915#7276]) [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: [SKIP][503] ([i915#14544] / [i915#4613]) -> [SKIP][504] ([i915#4613]) [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_partial_pwrite_pread@reads: - shard-rkl: [SKIP][505] ([i915#14544] / [i915#3282]) -> [SKIP][506] ([i915#3282]) +2 other tests skip [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-4/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pwrite@basic-random: - shard-rkl: [SKIP][507] ([i915#3282]) -> [SKIP][508] ([i915#14544] / [i915#3282]) +3 other tests skip [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-4/igt@gem_pwrite@basic-random.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@gem_pwrite@basic-random.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: [SKIP][509] ([i915#3297]) -> [SKIP][510] ([i915#14544] / [i915#3297]) +1 other test skip [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-8/igt@gem_userptr_blits@coherency-sync.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: [SKIP][511] ([i915#14544] / [i915#2527]) -> [SKIP][512] ([i915#2527]) +2 other tests skip [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: [SKIP][513] ([i915#2527]) -> [SKIP][514] ([i915#14544] / [i915#2527]) +1 other test skip [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-7/igt@gen9_exec_parse@secure-batches.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: [SKIP][515] ([i915#15479]) -> [SKIP][516] ([i915#14544] / [i915#15479]) +4 other tests skip [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-2/igt@i915_module_load@fault-injection@__uc_init.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: [SKIP][517] ([i915#14544] / [i915#8399]) -> [SKIP][518] ([i915#8399]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_sseu@full-enable: - shard-rkl: [SKIP][519] ([i915#4387]) -> [SKIP][520] ([i915#14544] / [i915#4387]) [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-3/igt@i915_pm_sseu@full-enable.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@i915_pm_sseu@full-enable.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: [SKIP][521] ([i915#14544] / [i915#5723]) -> [SKIP][522] ([i915#5723]) [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [ABORT][523] ([i915#15131]) -> [INCOMPLETE][524] ([i915#4817]) [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-1/igt@i915_suspend@fence-restore-untiled.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html * igt@intel_hwmon@hwmon-read: - shard-rkl: [SKIP][525] ([i915#14544] / [i915#7707]) -> [SKIP][526] ([i915#7707]) [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@intel_hwmon@hwmon-read.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-5/igt@intel_hwmon@hwmon-read.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: [SKIP][527] ([i915#1769] / [i915#3555]) -> [SKIP][528] ([i915#14544] / [i915#1769] / [i915#3555]) [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: [SKIP][529] ([i915#14544] / [i915#5286]) -> [SKIP][530] ([i915#5286]) +3 other tests skip [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: [SKIP][531] ([i915#3828]) -> [SKIP][532] ([i915#14544] / [i915#3828]) [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: [SKIP][533] ([i915#3638] / [i915#4423]) -> [SKIP][534] ([i915#3638]) [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-16/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: [SKIP][535] ([i915#3638]) -> [SKIP][536] ([i915#14544] / [i915#3638]) +1 other test skip [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][537] ([i915#14544]) -> [SKIP][538] +27 other tests skip [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-rkl: [SKIP][539] ([i915#14098] / [i915#6095]) -> [SKIP][540] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-5/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][541] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][542] ([i915#14098] / [i915#6095]) +7 other tests skip [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][543] ([i915#15582] / [i915#16205]) -> [INCOMPLETE][544] ([i915#14694] / [i915#15582] / [i915#16205]) +1 other test incomplete [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][545] ([i915#14544] / [i915#6095]) -> [SKIP][546] ([i915#6095]) +4 other tests skip [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition: - shard-rkl: [SKIP][547] ([i915#3742]) -> [SKIP][548] ([i915#14544] / [i915#3742]) [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-5/igt@kms_cdclk@mode-transition.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][549] ([i915#11151] / [i915#7828]) -> [SKIP][550] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: [SKIP][551] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][552] ([i915#11151] / [i915#7828]) +2 other tests skip [551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@atomic-hdcp14: - shard-rkl: [SKIP][553] ([i915#15865]) -> [SKIP][554] ([i915#14544] / [i915#15865]) [553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-5/igt@kms_content_protection@atomic-hdcp14.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: [SKIP][555] ([i915#15330]) -> [SKIP][556] ([i915#14544] / [i915#15330]) [555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@legacy: - shard-dg2: [SKIP][557] ([i915#15865]) -> [FAIL][558] ([i915#7173]) [557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-6/igt@kms_content_protection@legacy.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-10/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-rkl: [SKIP][559] ([i915#14544] / [i915#15865]) -> [SKIP][560] ([i915#15865]) [559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_content_protection@lic-type-1.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: [SKIP][561] ([i915#13049]) -> [SKIP][562] ([i915#13049] / [i915#14544]) [561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: [SKIP][563] ([i915#13049] / [i915#14544]) -> [SKIP][564] ([i915#13049]) [563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: [SKIP][565] ([i915#4103] / [i915#4423]) -> [SKIP][566] ([i915#4103]) [565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: [SKIP][567] ([i915#9723]) -> [SKIP][568] ([i915#14544] / [i915#9723]) [567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: [SKIP][569] ([i915#13749]) -> [SKIP][570] ([i915#13749] / [i915#14544]) [569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-8/igt@kms_dp_link_training@non-uhbr-mst.html [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: [SKIP][571] ([i915#13707] / [i915#14544]) -> [SKIP][572] ([i915#13707]) [571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: [SKIP][573] ([i915#3840]) -> [SKIP][574] ([i915#14544]) [573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: [SKIP][575] ([i915#9337]) -> [SKIP][576] ([i915#14544] / [i915#9337]) [575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-8/igt@kms_feature_discovery@dp-mst.html [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-rkl: [SKIP][577] ([i915#14544] / [i915#9934]) -> [SKIP][578] ([i915#9934]) +3 other tests skip [577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank.html [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-plain-flip: - shard-rkl: [SKIP][579] ([i915#9934]) -> [SKIP][580] ([i915#14544] / [i915#9934]) +2 other tests skip [579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-3/igt@kms_flip@2x-plain-flip.html [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: [SKIP][581] ([i915#15643]) -> [SKIP][582] ([i915#14544] / [i915#15643]) +1 other test skip [581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: [SKIP][583] ([i915#15672]) -> [SKIP][584] [583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-mtlp-4/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: [SKIP][585] ([i915#15990] / [i915#8708]) -> [SKIP][586] ([i915#15990] / [i915#4423] / [i915#8708]) [585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-pwrite: - shard-dg1: [SKIP][587] ([i915#15989]) -> [SKIP][588] ([i915#15989] / [i915#4423]) [587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-18/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-pwrite.html [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: [SKIP][589] ([i915#10433] / [i915#15102]) -> [SKIP][590] ([i915#15102]) +1 other test skip [589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][591] ([i915#14544] / [i915#1825]) -> [SKIP][592] ([i915#1825]) +1 other test skip [591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-dg1: [SKIP][593] ([i915#4423]) -> [SKIP][594] +1 other test skip [593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][595] ([i915#1825]) -> [SKIP][596] ([i915#14544] / [i915#1825]) +4 other tests skip [595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: [SKIP][597] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][598] ([i915#15102] / [i915#3023]) +9 other tests skip [597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][599] ([i915#15102]) -> [SKIP][600] ([i915#14544] / [i915#15102]) +13 other tests skip [599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg1: [SKIP][601] ([i915#15104] / [i915#15990]) -> [SKIP][602] ([i915#15104] / [i915#15990] / [i915#4423]) [601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-rkl: [SKIP][603] ([i915#15102] / [i915#3023]) -> [SKIP][604] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip [603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: [SKIP][605] -> [SKIP][606] ([i915#14544]) +38 other tests skip [605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2: [SKIP][607] ([i915#15102]) -> [SKIP][608] ([i915#10433] / [i915#15102]) [607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-slowdraw.html [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-render: - shard-dg1: [SKIP][609] -> [SKIP][610] ([i915#4423]) +2 other tests skip [609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-18/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-render.html [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-16/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite: - shard-rkl: [SKIP][611] ([i915#14544] / [i915#15102]) -> [SKIP][612] ([i915#15102]) +10 other tests skip [611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite.html [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: [SKIP][613] ([i915#16012] / [i915#3555] / [i915#8228]) -> [INCOMPLETE][614] ([i915#15436]) [613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-8/igt@kms_hdr@bpc-switch-suspend.html [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg1: [SKIP][615] ([i915#15458]) -> [SKIP][616] ([i915#15458] / [i915#4423]) [615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-12/igt@kms_joiner@invalid-modeset-ultra-joiner.html [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-19/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-rkl: [SKIP][617] ([i915#14544] / [i915#15709]) -> [SKIP][618] ([i915#15709]) +1 other test skip [617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping: - shard-rkl: [SKIP][619] ([i915#15709]) -> [SKIP][620] ([i915#14544] / [i915#15709]) [619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-3/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: [SKIP][621] ([i915#13958]) -> [SKIP][622] ([i915#13958] / [i915#14544]) +1 other test skip [621]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-none.html [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: [SKIP][623] ([i915#12343] / [i915#5354]) -> [SKIP][624] ([i915#12343] / [i915#14544] / [i915#5354]) [623]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade: - shard-rkl: [SKIP][625] ([i915#12343] / [i915#14544] / [i915#5354]) -> [SKIP][626] ([i915#12343] / [i915#5354]) [625]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_pm_backlight@fade.html [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-2/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][627] ([i915#15739]) -> [SKIP][628] ([i915#14544] / [i915#15739]) [627]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html - shard-tglu: [SKIP][629] ([i915#15739]) -> [SKIP][630] ([i915#15128]) [629]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: [SKIP][631] ([i915#9340]) -> [SKIP][632] ([i915#3828]) [631]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-17/igt@kms_pm_lpsp@kms-lpsp.html [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: [SKIP][633] ([i915#6524]) -> [SKIP][634] ([i915#14544] / [i915#6524]) [633]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][635] ([i915#11520]) -> [SKIP][636] ([i915#11520] / [i915#14544]) +5 other tests skip [635]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html [636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][637] ([i915#11520] / [i915#14544]) -> [SKIP][638] ([i915#11520]) +3 other tests skip [637]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-rkl: [SKIP][639] ([i915#1072] / [i915#9732]) -> [SKIP][640] ([i915#1072] / [i915#14544] / [i915#9732]) +11 other tests skip [639]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-5/igt@kms_psr@fbc-psr-cursor-plane-move.html [640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@psr-cursor-blt: - shard-dg1: [SKIP][641] ([i915#1072] / [i915#9732]) -> [SKIP][642] ([i915#1072] / [i915#4423] / [i915#9732]) [641]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-dg1-16/igt@kms_psr@psr-cursor-blt.html [642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-dg1-19/igt@kms_psr@psr-cursor-blt.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: [SKIP][643] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][644] ([i915#1072] / [i915#9732]) +6 other tests skip [643]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html [644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][645] ([i915#5289]) -> [SKIP][646] ([i915#14544] / [i915#5289]) [645]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-center: - shard-rkl: [SKIP][647] ([i915#3555]) -> [SKIP][648] ([i915#14544] / [i915#3555]) +2 other tests skip [647]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-center.html [648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-center.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: [SKIP][649] ([i915#14544] / [i915#2435]) -> [SKIP][650] ([i915#2435]) [649]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html [650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-1/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: [SKIP][651] ([i915#14544] / [i915#8516]) -> [SKIP][652] ([i915#8516]) [651]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html [652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-8/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-read: - shard-rkl: [SKIP][653] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][654] ([i915#3291] / [i915#3708]) [653]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@prime_vgem@basic-read.html [654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-3/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-rkl: [SKIP][655] ([i915#14544] / [i915#3708]) -> [SKIP][656] ([i915#3708]) +2 other tests skip [655]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18592/shard-rkl-6/igt@prime_vgem@coherency-gtt.html [656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/shard-rkl-7/igt@prime_vgem@coherency-gtt.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140 [i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365 [i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#15944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15944 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#15997]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15997 [i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011 [i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084 [i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16205]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16205 [i915#16226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16226 [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276 [i915#16307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16307 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8717 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8943 -> IGTPW_15273 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18592: f4ba932abb4422a63c72a272b0386f745ce9a119 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15273: 15273 IGT_8943: 8943 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15273/index.html [-- Attachment #2: Type: text/html, Size: 213865 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2026-06-04 5:28 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-05-30 19:36 [PATCH i-g-t,v7 0/5] Add dsc+bigjoiner subtest Swati Sharma 2026-05-30 19:36 ` [PATCH i-g-t,v7 1/5] tests/intel/kms_dsc: Store valid DSC outputs Swati Sharma 2026-06-04 4:57 ` [PATCH i-g-t, v7 " Karthik B S 2026-05-30 19:36 ` [PATCH i-g-t, v7 2/5] tests/intel/kms_joiner_helper: Add igt_get_joined_pipes_name() Swati Sharma 2026-05-30 19:36 ` [PATCH i-g-t, v7 3/5] tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source() Swati Sharma 2026-05-30 19:36 ` [PATCH i-g-t,v7 4/5] tests/intel/kms_dsc_helper: Add helper func() Swati Sharma 2026-06-04 5:27 ` Karthik B S 2026-05-30 19:36 ` [PATCH i-g-t,v7 5/5] tests/intel/kms_dsc: Add force dsc and Swati Sharma 2026-06-04 5:21 ` Karthik B S 2026-05-30 20:12 ` ✗ Xe.CI.BAT: failure for Add dsc+bigjoiner subtest (rev9) Patchwork 2026-05-30 20:28 ` ✓ i915.CI.BAT: success " Patchwork 2026-05-30 21:15 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-05-30 22:28 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox