* [PATCH i-g-t 0/3] Improve max-bpc query error handling
@ 2026-05-18 4:03 Pranay Samala
2026-05-18 4:03 ` [PATCH i-g-t 1/3] Revert "tests/kms_hdr: Move capability checks inside dynamic subtests" Pranay Samala
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Pranay Samala @ 2026-05-18 4:03 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala
This series refactors max-bpc query handling in IGT for better
error reporting.
The revert commit restores outer capability checks. The API
refactor changes igt_get_output_max_bpc() from assert-based
to bool+output-parameter, enabling graceful error handling.
Test updates use the new API with explicit failure handling
and clearer logging.
Pranay Samala (3):
Revert "tests/kms_hdr: Move capability checks inside dynamic subtests"
lib/igt_kms: make max bpc query return status
tests/: Handle max bpc read failures explicitly
lib/igt_kms.c | 38 ++++--
lib/igt_kms.h | 2 +-
tests/amdgpu/amd_bypass.c | 6 +-
tests/amdgpu/amd_dp_dsc.c | 10 +-
tests/intel/kms_dsc.c | 13 +-
tests/intel/kms_frontbuffer_tracking.c | 10 +-
tests/kms_color_helper.c | 5 +-
tests/kms_dither.c | 9 +-
tests/kms_hdr.c | 169 +++++++++++++++----------
9 files changed, 173 insertions(+), 89 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH i-g-t 1/3] Revert "tests/kms_hdr: Move capability checks inside dynamic subtests" 2026-05-18 4:03 [PATCH i-g-t 0/3] Improve max-bpc query error handling Pranay Samala @ 2026-05-18 4:03 ` Pranay Samala 2026-05-20 3:04 ` Karthik B S 2026-05-18 4:03 ` [PATCH i-g-t 2/3] lib/igt_kms: make max bpc query return status Pranay Samala ` (5 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Pranay Samala @ 2026-05-18 4:03 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala This reverts commit d9667a6fd6468adcdb5542d741ac423339a20556. Move output capability checks back outside dynamic subtests to restore the previous behavior while backing out this change. Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/kms_hdr.c | 157 +++++++++++++++++++++++++++--------------------- 1 file changed, 88 insertions(+), 69 deletions(-) diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c index d50f87787..bcc912d15 100644 --- a/tests/kms_hdr.c +++ b/tests/kms_hdr.c @@ -255,6 +255,17 @@ static void test_bpc_switch(data_t *data, uint32_t flags) for_each_connected_output(display, output) { igt_crtc_t *crtc; + if (!has_max_bpc(output)) { + igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n", + igt_output_name(output)); + continue; + } + + if (igt_get_output_max_bpc(output) < 10) { + igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); + continue; + } + for_each_crtc(display, crtc) { igt_output_set_crtc(output, crtc); @@ -266,29 +277,25 @@ static void test_bpc_switch(data_t *data, uint32_t flags) for (int i = 0; i < ARRAY_SIZE(hdr_test_formats); i++) { prepare_test(data, output, crtc); + if (is_intel_device(data->fd) && + !igt_max_bpc_constraint(display, crtc, output, 10)) { + igt_info("%s: No suitable mode found to use 10 bpc.\n", + igt_output_name(output)); + + test_fini(data); + break; + } + data->mode = igt_output_get_mode(output); data->w = data->mode->hdisplay; data->h = data->mode->vdisplay; igt_dynamic_f("pipe-%s-%s-%s", igt_crtc_name(crtc), output->name, - igt_format_str(hdr_test_formats[i])) { - igt_require_f(has_max_bpc(output), - "%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n", - igt_output_name(output)); - - igt_require_f(igt_get_output_max_bpc(output) >= 10, - "%s: Doesn't support 10 bpc.\n", - igt_output_name(output)); - - igt_require_f(!is_intel_device(data->fd) || - igt_max_bpc_constraint(display, crtc, output, 10), - "%s: No suitable mode found to use 10 bpc.\n", - igt_output_name(output)); - + igt_format_str(hdr_test_formats[i])) test_bpc_switch_on_output(data, crtc, output, - hdr_test_formats[i], flags); - } + hdr_test_formats[i], + flags); test_fini(data); } @@ -526,6 +533,40 @@ static void test_hdr(data_t *data, uint32_t flags) for_each_connected_output(display, output) { igt_crtc_t *crtc; + /* To test HDR, 10 bpc is required, so we need to + * set MAX_BPC property to 10bpc prior to setting + * HDR metadata property. Therefore, checking. + */ + if (!has_max_bpc(output) || !igt_output_supports_hdr(output)) { + igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC or IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n", + igt_output_name(output)); + continue; + } + + /* For negative test, panel should be non-hdr. */ + if ((flags & TEST_INVALID_HDR) && igt_is_panel_hdr(data->fd, output)) { + igt_info("%s: Can't run negative test on HDR panel.\n", + igt_output_name(output)); + continue; + } + + if ((flags & ~TEST_INVALID_HDR) && !igt_is_panel_hdr(data->fd, output)) { + igt_info("%s: Can't run HDR tests on non-HDR panel.\n", + igt_output_name(output)); + continue; + } + + if (igt_get_output_max_bpc(output) < 10) { + igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); + continue; + } + + if ((flags & TEST_BRIGHTNESS) && !output_is_internal_panel(output)) { + igt_info("%s: Can't run brightness test on non-internal panel.\n", + igt_output_name(output)); + continue; + } + for_each_crtc(display, crtc) { igt_output_set_crtc(output, crtc); if (!intel_pipe_output_combo_valid(display)) { @@ -537,64 +578,42 @@ static void test_hdr(data_t *data, uint32_t flags) prepare_test(data, output, crtc); + /* Signal HDR requirement via metadata */ + igt_hdr_fill_st2084(&hdr); + igt_hdr_set_metadata(data->output, &hdr); + if (igt_display_try_commit2(display, display->is_atomic ? + COMMIT_ATOMIC : COMMIT_LEGACY)) { + igt_info("%s: Couldn't set HDR metadata\n", + igt_output_name(output)); + test_fini(data); + break; + } + + if (is_intel_device(data->fd) && + !igt_max_bpc_constraint(display, crtc, output, 10)) { + igt_info("%s: No suitable mode found to use 10 bpc.\n", + igt_output_name(output)); + + test_fini(data); + break; + } + + if (igt_is_dsc_enabled(data->fd, output->name)) + flags |= TEST_NEEDS_DSC; + else + flags &= ~TEST_NEEDS_DSC; + + igt_hdr_set_metadata(data->output, NULL); + igt_display_commit2(display, display->is_atomic ? + COMMIT_ATOMIC : COMMIT_LEGACY); + data->mode = igt_output_get_mode(output); data->w = data->mode->hdisplay; data->h = data->mode->vdisplay; - igt_dynamic_f("pipe-%s-%s-%s", igt_crtc_name(crtc), output->name, + igt_dynamic_f("pipe-%s-%s-%s", + igt_crtc_name(crtc), output->name, igt_format_str(hdr_test_formats[i])) { - igt_require_f(has_max_bpc(output) && - igt_output_supports_hdr(output), - "%s: Doesn't support IGT_CONNECTOR_MAX_BPC " - "or IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n", - igt_output_name(output)); - - if (flags & TEST_INVALID_HDR) - igt_require_f(!igt_is_panel_hdr(data->fd, output), - "%s: Can't run negative test on " - "HDR panel.\n", - igt_output_name(output)); - - if (!(flags & TEST_INVALID_HDR)) - igt_require_f(igt_is_panel_hdr(data->fd, output), - "%s: Can't run HDR tests on " - "non-HDR panel.\n", - igt_output_name(output)); - - igt_require_f(igt_get_output_max_bpc(output) >= 10, - "%s: Doesn't support 10 bpc.\n", - igt_output_name(output)); - - if (flags & TEST_BRIGHTNESS) - igt_require_f(output_is_internal_panel(output), - "%s: Can't run brightness test on " - "non-internal panel.\n", - igt_output_name(output)); - - /* Signal HDR requirement via metadata */ - igt_hdr_fill_st2084(&hdr); - igt_hdr_set_metadata(data->output, &hdr); - igt_require_f(!igt_display_try_commit2(display, - display->is_atomic ? - COMMIT_ATOMIC : - COMMIT_LEGACY), - "%s: Couldn't set HDR metadata\n", - igt_output_name(output)); - - igt_require_f(!is_intel_device(data->fd) || - igt_max_bpc_constraint(display, crtc, output, 10), - "%s: No suitable mode found to use 10 bpc.\n", - igt_output_name(output)); - - if (igt_is_dsc_enabled(data->fd, output->name)) - flags |= TEST_NEEDS_DSC; - else - flags &= ~TEST_NEEDS_DSC; - - igt_hdr_set_metadata(data->output, NULL); - igt_display_commit2(display, display->is_atomic ? - COMMIT_ATOMIC : COMMIT_LEGACY); - if (flags & (TEST_NONE | TEST_DPMS | TEST_SUSPEND | TEST_INVALID_HDR | TEST_BRIGHTNESS)) test_static_toggle(data, -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 1/3] Revert "tests/kms_hdr: Move capability checks inside dynamic subtests" 2026-05-18 4:03 ` [PATCH i-g-t 1/3] Revert "tests/kms_hdr: Move capability checks inside dynamic subtests" Pranay Samala @ 2026-05-20 3:04 ` Karthik B S 0 siblings, 0 replies; 13+ messages in thread From: Karthik B S @ 2026-05-20 3:04 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: sameer.lattannavar Hi Pranay, On 5/18/2026 9:33 AM, Pranay Samala wrote: > This reverts commit d9667a6fd6468adcdb5542d741ac423339a20556. > > Move output capability checks back outside dynamic subtests to > restore the previous behavior while backing out this change. Please mention why we're going for the revert. Thanks and Regards, Karthik.B.S > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/kms_hdr.c | 157 +++++++++++++++++++++++++++--------------------- > 1 file changed, 88 insertions(+), 69 deletions(-) > > diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c > index d50f87787..bcc912d15 100644 > --- a/tests/kms_hdr.c > +++ b/tests/kms_hdr.c > @@ -255,6 +255,17 @@ static void test_bpc_switch(data_t *data, uint32_t flags) > for_each_connected_output(display, output) { > igt_crtc_t *crtc; > > + if (!has_max_bpc(output)) { > + igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n", > + igt_output_name(output)); > + continue; > + } > + > + if (igt_get_output_max_bpc(output) < 10) { > + igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); > + continue; > + } > + > for_each_crtc(display, crtc) { > igt_output_set_crtc(output, > crtc); > @@ -266,29 +277,25 @@ static void test_bpc_switch(data_t *data, uint32_t flags) > for (int i = 0; i < ARRAY_SIZE(hdr_test_formats); i++) { > prepare_test(data, output, crtc); > > + if (is_intel_device(data->fd) && > + !igt_max_bpc_constraint(display, crtc, output, 10)) { > + igt_info("%s: No suitable mode found to use 10 bpc.\n", > + igt_output_name(output)); > + > + test_fini(data); > + break; > + } > + > data->mode = igt_output_get_mode(output); > data->w = data->mode->hdisplay; > data->h = data->mode->vdisplay; > > igt_dynamic_f("pipe-%s-%s-%s", > igt_crtc_name(crtc), output->name, > - igt_format_str(hdr_test_formats[i])) { > - igt_require_f(has_max_bpc(output), > - "%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n", > - igt_output_name(output)); > - > - igt_require_f(igt_get_output_max_bpc(output) >= 10, > - "%s: Doesn't support 10 bpc.\n", > - igt_output_name(output)); > - > - igt_require_f(!is_intel_device(data->fd) || > - igt_max_bpc_constraint(display, crtc, output, 10), > - "%s: No suitable mode found to use 10 bpc.\n", > - igt_output_name(output)); > - > + igt_format_str(hdr_test_formats[i])) > test_bpc_switch_on_output(data, crtc, output, > - hdr_test_formats[i], flags); > - } > + hdr_test_formats[i], > + flags); > > test_fini(data); > } > @@ -526,6 +533,40 @@ static void test_hdr(data_t *data, uint32_t flags) > for_each_connected_output(display, output) { > igt_crtc_t *crtc; > > + /* To test HDR, 10 bpc is required, so we need to > + * set MAX_BPC property to 10bpc prior to setting > + * HDR metadata property. Therefore, checking. > + */ > + if (!has_max_bpc(output) || !igt_output_supports_hdr(output)) { > + igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC or IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n", > + igt_output_name(output)); > + continue; > + } > + > + /* For negative test, panel should be non-hdr. */ > + if ((flags & TEST_INVALID_HDR) && igt_is_panel_hdr(data->fd, output)) { > + igt_info("%s: Can't run negative test on HDR panel.\n", > + igt_output_name(output)); > + continue; > + } > + > + if ((flags & ~TEST_INVALID_HDR) && !igt_is_panel_hdr(data->fd, output)) { > + igt_info("%s: Can't run HDR tests on non-HDR panel.\n", > + igt_output_name(output)); > + continue; > + } > + > + if (igt_get_output_max_bpc(output) < 10) { > + igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); > + continue; > + } > + > + if ((flags & TEST_BRIGHTNESS) && !output_is_internal_panel(output)) { > + igt_info("%s: Can't run brightness test on non-internal panel.\n", > + igt_output_name(output)); > + continue; > + } > + > for_each_crtc(display, crtc) { > igt_output_set_crtc(output, crtc); > if (!intel_pipe_output_combo_valid(display)) { > @@ -537,64 +578,42 @@ static void test_hdr(data_t *data, uint32_t flags) > prepare_test(data, output, > crtc); > > + /* Signal HDR requirement via metadata */ > + igt_hdr_fill_st2084(&hdr); > + igt_hdr_set_metadata(data->output, &hdr); > + if (igt_display_try_commit2(display, display->is_atomic ? > + COMMIT_ATOMIC : COMMIT_LEGACY)) { > + igt_info("%s: Couldn't set HDR metadata\n", > + igt_output_name(output)); > + test_fini(data); > + break; > + } > + > + if (is_intel_device(data->fd) && > + !igt_max_bpc_constraint(display, crtc, output, 10)) { > + igt_info("%s: No suitable mode found to use 10 bpc.\n", > + igt_output_name(output)); > + > + test_fini(data); > + break; > + } > + > + if (igt_is_dsc_enabled(data->fd, output->name)) > + flags |= TEST_NEEDS_DSC; > + else > + flags &= ~TEST_NEEDS_DSC; > + > + igt_hdr_set_metadata(data->output, NULL); > + igt_display_commit2(display, display->is_atomic ? > + COMMIT_ATOMIC : COMMIT_LEGACY); > + > data->mode = igt_output_get_mode(output); > data->w = data->mode->hdisplay; > data->h = data->mode->vdisplay; > > - igt_dynamic_f("pipe-%s-%s-%s", igt_crtc_name(crtc), output->name, > + igt_dynamic_f("pipe-%s-%s-%s", > + igt_crtc_name(crtc), output->name, > igt_format_str(hdr_test_formats[i])) { > - igt_require_f(has_max_bpc(output) && > - igt_output_supports_hdr(output), > - "%s: Doesn't support IGT_CONNECTOR_MAX_BPC " > - "or IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n", > - igt_output_name(output)); > - > - if (flags & TEST_INVALID_HDR) > - igt_require_f(!igt_is_panel_hdr(data->fd, output), > - "%s: Can't run negative test on " > - "HDR panel.\n", > - igt_output_name(output)); > - > - if (!(flags & TEST_INVALID_HDR)) > - igt_require_f(igt_is_panel_hdr(data->fd, output), > - "%s: Can't run HDR tests on " > - "non-HDR panel.\n", > - igt_output_name(output)); > - > - igt_require_f(igt_get_output_max_bpc(output) >= 10, > - "%s: Doesn't support 10 bpc.\n", > - igt_output_name(output)); > - > - if (flags & TEST_BRIGHTNESS) > - igt_require_f(output_is_internal_panel(output), > - "%s: Can't run brightness test on " > - "non-internal panel.\n", > - igt_output_name(output)); > - > - /* Signal HDR requirement via metadata */ > - igt_hdr_fill_st2084(&hdr); > - igt_hdr_set_metadata(data->output, &hdr); > - igt_require_f(!igt_display_try_commit2(display, > - display->is_atomic ? > - COMMIT_ATOMIC : > - COMMIT_LEGACY), > - "%s: Couldn't set HDR metadata\n", > - igt_output_name(output)); > - > - igt_require_f(!is_intel_device(data->fd) || > - igt_max_bpc_constraint(display, crtc, output, 10), > - "%s: No suitable mode found to use 10 bpc.\n", > - igt_output_name(output)); > - > - if (igt_is_dsc_enabled(data->fd, output->name)) > - flags |= TEST_NEEDS_DSC; > - else > - flags &= ~TEST_NEEDS_DSC; > - > - igt_hdr_set_metadata(data->output, NULL); > - igt_display_commit2(display, display->is_atomic ? > - COMMIT_ATOMIC : COMMIT_LEGACY); > - > if (flags & (TEST_NONE | TEST_DPMS | TEST_SUSPEND | > TEST_INVALID_HDR | TEST_BRIGHTNESS)) > test_static_toggle(data, ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t 2/3] lib/igt_kms: make max bpc query return status 2026-05-18 4:03 [PATCH i-g-t 0/3] Improve max-bpc query error handling Pranay Samala 2026-05-18 4:03 ` [PATCH i-g-t 1/3] Revert "tests/kms_hdr: Move capability checks inside dynamic subtests" Pranay Samala @ 2026-05-18 4:03 ` Pranay Samala 2026-05-20 4:09 ` Karthik B S 2026-05-18 4:03 ` [PATCH i-g-t 3/3] tests/: Handle max bpc read failures explicitly Pranay Samala ` (4 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Pranay Samala @ 2026-05-18 4:03 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala Change igt_get_output_max_bpc() to return bool and fill an output parameter instead of asserting/requiring internally. This allows callers to handle debugfs read/parse failures gracefully. Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- lib/igt_kms.c | 38 ++++++++++++++++++++++++++------------ lib/igt_kms.h | 2 +- 2 files changed, 27 insertions(+), 13 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 99fc9fa05..e1dd56aad 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6657,32 +6657,43 @@ bool igt_is_aux_less_alpm_enabled(int drmfd, char *connector_name) /** * igt_get_output_max_bpc: - * @drmfd: A drm file descriptor - * @connector_name: Name of the libdrm connector we're going to use + * @output: Output to query. + * @maximum: Returned maximum bpc value. * - * Returns: The maximum bpc from the connector debugfs. + * Returns: true on success, false on failure. */ -unsigned int igt_get_output_max_bpc(igt_output_t *output) +bool igt_get_output_max_bpc(igt_output_t *output, unsigned int *maximum) { igt_display_t *display = output->display; int drmfd = display->drm_fd; char buf[24]; char *start_loc; int fd, res; - unsigned int maximum; + + if (!maximum) + return false; + + *maximum = 0; fd = igt_debugfs_connector_dir(drmfd, output->name, O_RDONLY); - igt_assert(fd >= 0); + if (fd < 0) + return false; res = igt_debugfs_simple_read(fd, "output_bpc", buf, sizeof(buf)); - igt_require(res > 0); - close(fd); + if (res <= 0) + return false; + + buf[res < sizeof(buf) ? res : sizeof(buf) - 1] = '\0'; + + start_loc = strstr(buf, "Maximum: "); + if (!start_loc) + return false; - igt_assert(start_loc = strstr(buf, "Maximum: ")); - igt_assert_eq(sscanf(start_loc, "Maximum: %u", &maximum), 1); + if (sscanf(start_loc, "Maximum: %u", maximum) != 1) + return false; - return maximum; + return true; } /** @@ -6726,9 +6737,12 @@ unsigned int igt_get_crtc_current_bpc(igt_crtc_t *crtc) static unsigned int get_current_bpc(igt_crtc_t *crtc, igt_output_t *output, unsigned int bpc) { - unsigned int maximum = igt_get_output_max_bpc(output); + unsigned int maximum; unsigned int current = igt_get_crtc_current_bpc(crtc); + igt_require_f(igt_get_output_max_bpc(output, &maximum), + "Failed to read max bpc for %s\n", igt_output_name(output)); + igt_require_f(maximum >= bpc, "Monitor doesn't support %u bpc, max is %u\n", bpc, maximum); diff --git a/lib/igt_kms.h b/lib/igt_kms.h index a58cb5cd3..cb3640976 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1238,7 +1238,7 @@ bool igt_fit_modes_in_bw(igt_display_t *display); bool igt_has_lobf_debugfs(int drmfd, igt_output_t *output); bool igt_get_i915_edp_lobf_status(int drmfd, char *connector_name); bool igt_is_aux_less_alpm_enabled(int drmfd, char *connector_name); -unsigned int igt_get_output_max_bpc(igt_output_t *output); +bool igt_get_output_max_bpc(igt_output_t *output, unsigned int *maximum); unsigned int igt_get_crtc_current_bpc(igt_crtc_t *crtc); void igt_assert_output_bpc_equal(igt_crtc_t *crtc, igt_output_t *output, unsigned int bpc); -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 2/3] lib/igt_kms: make max bpc query return status 2026-05-18 4:03 ` [PATCH i-g-t 2/3] lib/igt_kms: make max bpc query return status Pranay Samala @ 2026-05-20 4:09 ` Karthik B S 0 siblings, 0 replies; 13+ messages in thread From: Karthik B S @ 2026-05-20 4:09 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: sameer.lattannavar Hi Pranay, The build will break on this patch as the callers are changed only in the next patch. Please combine the changes into one. Regards, Karthik.B.S On 5/18/2026 9:33 AM, Pranay Samala wrote: > Change igt_get_output_max_bpc() to return bool and fill an > output parameter instead of asserting/requiring internally. > This allows callers to handle debugfs read/parse failures > gracefully. > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > lib/igt_kms.c | 38 ++++++++++++++++++++++++++------------ > lib/igt_kms.h | 2 +- > 2 files changed, 27 insertions(+), 13 deletions(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 99fc9fa05..e1dd56aad 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -6657,32 +6657,43 @@ bool igt_is_aux_less_alpm_enabled(int drmfd, char *connector_name) > > /** > * igt_get_output_max_bpc: > - * @drmfd: A drm file descriptor > - * @connector_name: Name of the libdrm connector we're going to use > + * @output: Output to query. > + * @maximum: Returned maximum bpc value. > * > - * Returns: The maximum bpc from the connector debugfs. > + * Returns: true on success, false on failure. > */ > -unsigned int igt_get_output_max_bpc(igt_output_t *output) > +bool igt_get_output_max_bpc(igt_output_t *output, unsigned int *maximum) > { > igt_display_t *display = output->display; > int drmfd = display->drm_fd; > char buf[24]; > char *start_loc; > int fd, res; > - unsigned int maximum; > + > + if (!maximum) > + return false; > + > + *maximum = 0; > > fd = igt_debugfs_connector_dir(drmfd, output->name, O_RDONLY); > - igt_assert(fd >= 0); > + if (fd < 0) > + return false; > > res = igt_debugfs_simple_read(fd, "output_bpc", buf, sizeof(buf)); > - igt_require(res > 0); > - > close(fd); > + if (res <= 0) > + return false; > + > + buf[res < sizeof(buf) ? res : sizeof(buf) - 1] = '\0'; > + > + start_loc = strstr(buf, "Maximum: "); > + if (!start_loc) > + return false; > > - igt_assert(start_loc = strstr(buf, "Maximum: ")); > - igt_assert_eq(sscanf(start_loc, "Maximum: %u", &maximum), 1); > + if (sscanf(start_loc, "Maximum: %u", maximum) != 1) > + return false; > > - return maximum; > + return true; > } > > /** > @@ -6726,9 +6737,12 @@ unsigned int igt_get_crtc_current_bpc(igt_crtc_t *crtc) > static unsigned int get_current_bpc(igt_crtc_t *crtc, igt_output_t *output, > unsigned int bpc) > { > - unsigned int maximum = igt_get_output_max_bpc(output); > + unsigned int maximum; > unsigned int current = igt_get_crtc_current_bpc(crtc); > > + igt_require_f(igt_get_output_max_bpc(output, &maximum), > + "Failed to read max bpc for %s\n", igt_output_name(output)); > + > igt_require_f(maximum >= bpc, > "Monitor doesn't support %u bpc, max is %u\n", bpc, > maximum); > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index a58cb5cd3..cb3640976 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -1238,7 +1238,7 @@ bool igt_fit_modes_in_bw(igt_display_t *display); > bool igt_has_lobf_debugfs(int drmfd, igt_output_t *output); > bool igt_get_i915_edp_lobf_status(int drmfd, char *connector_name); > bool igt_is_aux_less_alpm_enabled(int drmfd, char *connector_name); > -unsigned int igt_get_output_max_bpc(igt_output_t *output); > +bool igt_get_output_max_bpc(igt_output_t *output, unsigned int *maximum); > unsigned int igt_get_crtc_current_bpc(igt_crtc_t *crtc); > void igt_assert_output_bpc_equal(igt_crtc_t *crtc, igt_output_t *output, > unsigned int bpc); ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t 3/3] tests/: Handle max bpc read failures explicitly 2026-05-18 4:03 [PATCH i-g-t 0/3] Improve max-bpc query error handling Pranay Samala 2026-05-18 4:03 ` [PATCH i-g-t 1/3] Revert "tests/kms_hdr: Move capability checks inside dynamic subtests" Pranay Samala 2026-05-18 4:03 ` [PATCH i-g-t 2/3] lib/igt_kms: make max bpc query return status Pranay Samala @ 2026-05-18 4:03 ` Pranay Samala 2026-05-20 5:04 ` Karthik B S 2026-05-18 22:42 ` ✓ Xe.CI.BAT: success for Improve max-bpc query error handling Patchwork ` (3 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Pranay Samala @ 2026-05-18 4:03 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala Update test call sites of igt_get_output_max_bpc() to use the boolean return API so each test can decide how to handle max-bpc read failures. This separates read/parsing failures from capability checks and allows the test to make an explicit skip/continue decision with clearer logging, while keeping normal capability validation unchanged when max bpc is read successfully. Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/amdgpu/amd_bypass.c | 6 +++++- tests/amdgpu/amd_dp_dsc.c | 10 +++++++++- tests/intel/kms_dsc.c | 13 +++++++++++-- tests/intel/kms_frontbuffer_tracking.c | 10 +++++++++- tests/kms_color_helper.c | 5 ++++- tests/kms_dither.c | 9 ++++++++- tests/kms_hdr.c | 16 ++++++++++++++-- 7 files changed, 60 insertions(+), 9 deletions(-) diff --git a/tests/amdgpu/amd_bypass.c b/tests/amdgpu/amd_bypass.c index 3c537ea9e..e59691f16 100644 --- a/tests/amdgpu/amd_bypass.c +++ b/tests/amdgpu/amd_bypass.c @@ -323,6 +323,7 @@ static void bypass_8bpc_test(data_t *data) igt_display_t *display = &data->display; igt_fb_t fb; enum pattern ptn; + unsigned int maximum; test_init(data); @@ -345,7 +346,10 @@ static void bypass_8bpc_test(data_t *data) * Rx supports only up to 6bpc, Rx-crc will different from crtc-crc * with 8bpc. */ - igt_skip_on_f(igt_get_output_max_bpc(data->output) <= 6, + igt_skip_on_f(!igt_get_output_max_bpc(data->output, &maximum), + "Failed to read max bpc for %s\n", igt_output_name(data->output)); + + igt_skip_on_f(maximum <= 6, "check /sys/kernel/debug/dri/0/eDP-1 (connector)/output_bpc\n"); igt_create_fb(data->drm_fd, data->width, data->height, diff --git a/tests/amdgpu/amd_dp_dsc.c b/tests/amdgpu/amd_dp_dsc.c index 1742c7df4..dc71e903e 100644 --- a/tests/amdgpu/amd_dp_dsc.c +++ b/tests/amdgpu/amd_dp_dsc.c @@ -480,11 +480,19 @@ static void test_dsc_bpc(data_t *data) /* Find max supported bpc */ for_each_crtc(&data->display, crtc) { + unsigned int maximum; + output = data->output[crtc->crtc_index]; if (!output || !igt_output_is_connected(output)) continue; igt_info("Checking bpc support of conn %s\n", output->name); - max_supported_bpc[crtc->crtc_index] = igt_get_output_max_bpc(output); + if (!igt_get_output_max_bpc(output, &maximum)) { + igt_info("Failed to read max bpc for conn %s\n", output->name); + max_supported_bpc[crtc->crtc_index] = 0; + continue; + } + + max_supported_bpc[crtc->crtc_index] = maximum; } /* Setup all outputs */ diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index 605ad2d5c..8008fc045 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -265,6 +265,8 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc)); for_each_crtc_with_valid_output(display, crtc, output) { + unsigned int maximum; + data->output_format = output_format; data->plane_format = plane_format; data->input_bpc = bpc; @@ -275,8 +277,15 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, !check_gen11_dp_constraint(data->drm_fd, data->output, data->crtc)) continue; - 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); + if (!igt_get_output_max_bpc(output, &maximum)) { + igt_info("Output %s: Failed to read max bpc\n", + igt_output_name(data->output)); + continue; + } + + if (maximum < MIN_DSC_BPC) { + igt_info("Output %s doesn't support min %d-bpc\n", + igt_output_name(data->output), MIN_DSC_BPC); continue; } diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c index e7bb3fa18..996a67ee6 100644 --- a/tests/intel/kms_frontbuffer_tracking.c +++ b/tests/intel/kms_frontbuffer_tracking.c @@ -2777,6 +2777,8 @@ static void setup_drrs(void) static void setup_hdr(void) { + unsigned int maximum; + if (!igt_output_has_prop(prim_mode_params.output, IGT_CONNECTOR_MAX_BPC) || !igt_output_get_prop(prim_mode_params.output, IGT_CONNECTOR_MAX_BPC) || !igt_output_supports_hdr(prim_mode_params.output)) { @@ -2790,7 +2792,13 @@ static void setup_hdr(void) return; } - if (igt_get_output_max_bpc(prim_mode_params.output) < 10) { + if (!igt_get_output_max_bpc(prim_mode_params.output, &maximum)) { + igt_info("Can't test HDR: Failed to read max bpc for %s.\n", + igt_output_name(prim_mode_params.output)); + return; + } + + if (maximum < 10) { igt_info("Can't test HDR: %s doesn't support 10 bpc.\n", igt_output_name(prim_mode_params.output)); return; } diff --git a/tests/kms_color_helper.c b/tests/kms_color_helper.c index 24663444a..a50ac3a37 100644 --- a/tests/kms_color_helper.c +++ b/tests/kms_color_helper.c @@ -40,7 +40,10 @@ bool crtc_output_combo_valid(data_t *data, igt_crtc_t *crtc) bool panel_supports_deep_color(igt_output_t *output) { - unsigned int maximum = igt_get_output_max_bpc(output); + unsigned int maximum; + + if (!igt_get_output_max_bpc(output, &maximum)) + return false; igt_info("Max supported bit depth: %d\n", maximum); diff --git a/tests/kms_dither.c b/tests/kms_dither.c index ca367db61..236e5c7c0 100644 --- a/tests/kms_dither.c +++ b/tests/kms_dither.c @@ -206,6 +206,7 @@ run_dither_test(data_t *data, int fb_bpc, int fb_format, int output_bpc) for_each_connected_output(display, output) { igt_crtc_t *crtc; + unsigned int maximum; if (!is_supported(output)) { igt_info("Output %s: Doesn't support \"max bpc\" property.\n", @@ -213,7 +214,13 @@ run_dither_test(data_t *data, int fb_bpc, int fb_format, int output_bpc) continue; } - if (igt_get_output_max_bpc(output) < output_bpc) { + if (!igt_get_output_max_bpc(output, &maximum)) { + igt_info("Output %s: Failed to read max bpc.\n", + igt_output_name(output)); + continue; + } + + if (maximum < output_bpc) { igt_info("Output %s: Doesn't support %d-bpc.\n", igt_output_name(output), output_bpc); continue; diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c index bcc912d15..2f19b3237 100644 --- a/tests/kms_hdr.c +++ b/tests/kms_hdr.c @@ -254,6 +254,7 @@ static void test_bpc_switch(data_t *data, uint32_t flags) for_each_connected_output(display, output) { igt_crtc_t *crtc; + unsigned int maximum; if (!has_max_bpc(output)) { igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n", @@ -261,7 +262,12 @@ static void test_bpc_switch(data_t *data, uint32_t flags) continue; } - if (igt_get_output_max_bpc(output) < 10) { + if (!igt_get_output_max_bpc(output, &maximum)) { + igt_info("%s: Failed to read max bpc.\n", igt_output_name(output)); + continue; + } + + if (maximum < 10) { igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); continue; } @@ -532,6 +538,7 @@ static void test_hdr(data_t *data, uint32_t flags) for_each_connected_output(display, output) { igt_crtc_t *crtc; + unsigned int maximum; /* To test HDR, 10 bpc is required, so we need to * set MAX_BPC property to 10bpc prior to setting @@ -556,7 +563,12 @@ static void test_hdr(data_t *data, uint32_t flags) continue; } - if (igt_get_output_max_bpc(output) < 10) { + if (!igt_get_output_max_bpc(output, &maximum)) { + igt_info("%s: Failed to read max bpc.\n", igt_output_name(output)); + continue; + } + + if (maximum < 10) { igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); continue; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 3/3] tests/: Handle max bpc read failures explicitly 2026-05-18 4:03 ` [PATCH i-g-t 3/3] tests/: Handle max bpc read failures explicitly Pranay Samala @ 2026-05-20 5:04 ` Karthik B S 2026-05-21 15:54 ` vitaly prosyak 0 siblings, 1 reply; 13+ messages in thread From: Karthik B S @ 2026-05-20 5:04 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: sameer.lattannavar, Vitaly Prosyak Hi Pranay, +cc Vitaly Prosyak <vitaly.prosyak@amd.com> @Vitaly: Please take a look from the amd tests POV. The patch LGTM in general, other than the fact that this patch needs to be combined with patch 2 to avoid compilation failure there. Regards, Karthik.B.S On 5/18/2026 9:33 AM, Pranay Samala wrote: > Update test call sites of igt_get_output_max_bpc() to use the boolean > return API so each test can decide how to handle max-bpc read failures. > This separates read/parsing failures from capability checks and allows > the test to make an explicit skip/continue decision with clearer logging, > while keeping normal capability validation unchanged when max bpc is > read successfully. > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/amdgpu/amd_bypass.c | 6 +++++- > tests/amdgpu/amd_dp_dsc.c | 10 +++++++++- > tests/intel/kms_dsc.c | 13 +++++++++++-- > tests/intel/kms_frontbuffer_tracking.c | 10 +++++++++- > tests/kms_color_helper.c | 5 ++++- > tests/kms_dither.c | 9 ++++++++- > tests/kms_hdr.c | 16 ++++++++++++++-- > 7 files changed, 60 insertions(+), 9 deletions(-) > > diff --git a/tests/amdgpu/amd_bypass.c b/tests/amdgpu/amd_bypass.c > index 3c537ea9e..e59691f16 100644 > --- a/tests/amdgpu/amd_bypass.c > +++ b/tests/amdgpu/amd_bypass.c > @@ -323,6 +323,7 @@ static void bypass_8bpc_test(data_t *data) > igt_display_t *display = &data->display; > igt_fb_t fb; > enum pattern ptn; > + unsigned int maximum; > > test_init(data); > > @@ -345,7 +346,10 @@ static void bypass_8bpc_test(data_t *data) > * Rx supports only up to 6bpc, Rx-crc will different from crtc-crc > * with 8bpc. > */ > - igt_skip_on_f(igt_get_output_max_bpc(data->output) <= 6, > + igt_skip_on_f(!igt_get_output_max_bpc(data->output, &maximum), > + "Failed to read max bpc for %s\n", igt_output_name(data->output)); > + > + igt_skip_on_f(maximum <= 6, > "check /sys/kernel/debug/dri/0/eDP-1 (connector)/output_bpc\n"); > > igt_create_fb(data->drm_fd, data->width, data->height, > diff --git a/tests/amdgpu/amd_dp_dsc.c b/tests/amdgpu/amd_dp_dsc.c > index 1742c7df4..dc71e903e 100644 > --- a/tests/amdgpu/amd_dp_dsc.c > +++ b/tests/amdgpu/amd_dp_dsc.c > @@ -480,11 +480,19 @@ static void test_dsc_bpc(data_t *data) > > /* Find max supported bpc */ > for_each_crtc(&data->display, crtc) { > + unsigned int maximum; > + > output = data->output[crtc->crtc_index]; > if (!output || !igt_output_is_connected(output)) > continue; > igt_info("Checking bpc support of conn %s\n", output->name); > - max_supported_bpc[crtc->crtc_index] = igt_get_output_max_bpc(output); > + if (!igt_get_output_max_bpc(output, &maximum)) { > + igt_info("Failed to read max bpc for conn %s\n", output->name); > + max_supported_bpc[crtc->crtc_index] = 0; > + continue; > + } > + > + max_supported_bpc[crtc->crtc_index] = maximum; > } > > /* Setup all outputs */ > diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c > index 605ad2d5c..8008fc045 100644 > --- a/tests/intel/kms_dsc.c > +++ b/tests/intel/kms_dsc.c > @@ -265,6 +265,8 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, > igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc)); > > for_each_crtc_with_valid_output(display, crtc, output) { > + unsigned int maximum; > + > data->output_format = output_format; > data->plane_format = plane_format; > data->input_bpc = bpc; > @@ -275,8 +277,15 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, > !check_gen11_dp_constraint(data->drm_fd, data->output, data->crtc)) > continue; > > - 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); > + if (!igt_get_output_max_bpc(output, &maximum)) { > + igt_info("Output %s: Failed to read max bpc\n", > + igt_output_name(data->output)); > + continue; > + } > + > + if (maximum < MIN_DSC_BPC) { > + igt_info("Output %s doesn't support min %d-bpc\n", > + igt_output_name(data->output), MIN_DSC_BPC); > continue; > } > > diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c > index e7bb3fa18..996a67ee6 100644 > --- a/tests/intel/kms_frontbuffer_tracking.c > +++ b/tests/intel/kms_frontbuffer_tracking.c > @@ -2777,6 +2777,8 @@ static void setup_drrs(void) > > static void setup_hdr(void) > { > + unsigned int maximum; > + > if (!igt_output_has_prop(prim_mode_params.output, IGT_CONNECTOR_MAX_BPC) || > !igt_output_get_prop(prim_mode_params.output, IGT_CONNECTOR_MAX_BPC) || > !igt_output_supports_hdr(prim_mode_params.output)) { > @@ -2790,7 +2792,13 @@ static void setup_hdr(void) > return; > } > > - if (igt_get_output_max_bpc(prim_mode_params.output) < 10) { > + if (!igt_get_output_max_bpc(prim_mode_params.output, &maximum)) { > + igt_info("Can't test HDR: Failed to read max bpc for %s.\n", > + igt_output_name(prim_mode_params.output)); > + return; > + } > + > + if (maximum < 10) { > igt_info("Can't test HDR: %s doesn't support 10 bpc.\n", igt_output_name(prim_mode_params.output)); > return; > } > diff --git a/tests/kms_color_helper.c b/tests/kms_color_helper.c > index 24663444a..a50ac3a37 100644 > --- a/tests/kms_color_helper.c > +++ b/tests/kms_color_helper.c > @@ -40,7 +40,10 @@ bool crtc_output_combo_valid(data_t *data, igt_crtc_t *crtc) > bool > panel_supports_deep_color(igt_output_t *output) > { > - unsigned int maximum = igt_get_output_max_bpc(output); > + unsigned int maximum; > + > + if (!igt_get_output_max_bpc(output, &maximum)) > + return false; > > igt_info("Max supported bit depth: %d\n", maximum); > > diff --git a/tests/kms_dither.c b/tests/kms_dither.c > index ca367db61..236e5c7c0 100644 > --- a/tests/kms_dither.c > +++ b/tests/kms_dither.c > @@ -206,6 +206,7 @@ run_dither_test(data_t *data, int fb_bpc, int fb_format, int output_bpc) > > for_each_connected_output(display, output) { > igt_crtc_t *crtc; > + unsigned int maximum; > > if (!is_supported(output)) { > igt_info("Output %s: Doesn't support \"max bpc\" property.\n", > @@ -213,7 +214,13 @@ run_dither_test(data_t *data, int fb_bpc, int fb_format, int output_bpc) > continue; > } > > - if (igt_get_output_max_bpc(output) < output_bpc) { > + if (!igt_get_output_max_bpc(output, &maximum)) { > + igt_info("Output %s: Failed to read max bpc.\n", > + igt_output_name(output)); > + continue; > + } > + > + if (maximum < output_bpc) { > igt_info("Output %s: Doesn't support %d-bpc.\n", > igt_output_name(output), output_bpc); > continue; > diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c > index bcc912d15..2f19b3237 100644 > --- a/tests/kms_hdr.c > +++ b/tests/kms_hdr.c > @@ -254,6 +254,7 @@ static void test_bpc_switch(data_t *data, uint32_t flags) > > for_each_connected_output(display, output) { > igt_crtc_t *crtc; > + unsigned int maximum; > > if (!has_max_bpc(output)) { > igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n", > @@ -261,7 +262,12 @@ static void test_bpc_switch(data_t *data, uint32_t flags) > continue; > } > > - if (igt_get_output_max_bpc(output) < 10) { > + if (!igt_get_output_max_bpc(output, &maximum)) { > + igt_info("%s: Failed to read max bpc.\n", igt_output_name(output)); > + continue; > + } > + > + if (maximum < 10) { > igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); > continue; > } > @@ -532,6 +538,7 @@ static void test_hdr(data_t *data, uint32_t flags) > > for_each_connected_output(display, output) { > igt_crtc_t *crtc; > + unsigned int maximum; > > /* To test HDR, 10 bpc is required, so we need to > * set MAX_BPC property to 10bpc prior to setting > @@ -556,7 +563,12 @@ static void test_hdr(data_t *data, uint32_t flags) > continue; > } > > - if (igt_get_output_max_bpc(output) < 10) { > + if (!igt_get_output_max_bpc(output, &maximum)) { > + igt_info("%s: Failed to read max bpc.\n", igt_output_name(output)); > + continue; > + } > + > + if (maximum < 10) { > igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); > continue; > } ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 3/3] tests/: Handle max bpc read failures explicitly 2026-05-20 5:04 ` Karthik B S @ 2026-05-21 15:54 ` vitaly prosyak 2026-05-21 17:12 ` Alex Hung 0 siblings, 1 reply; 13+ messages in thread From: vitaly prosyak @ 2026-05-21 15:54 UTC (permalink / raw) To: Karthik B S, Pranay Samala, igt-dev, Hung, Alex Cc: sameer.lattannavar, Vitaly Prosyak On 2026-05-20 01:04, Karthik B S wrote: > Hi Pranay, > > +cc Vitaly Prosyak <vitaly.prosyak@amd.com> > > @Vitaly: Please take a look from the amd tests POV. Added Alex Hung Agree with Karthik patches 1 and 2 must be squashed. If patch 1 changes the igt_get_output_max_bpc() signature (adding the unsigned int * out-param and changing return type to bool), then all callers in patch 2 won't compile at the patch-1 boundary, breaking git bisect. Overall: LGTM for the AMD test files. The error handling is sensible and the transformation is mechanical/correct. Thanks, Vitaly > > The patch LGTM in general, other than the fact that this patch needs to > be combined with patch 2 to avoid compilation failure there. > > Regards, > Karthik.B.S > > On 5/18/2026 9:33 AM, Pranay Samala wrote: >> Update test call sites of igt_get_output_max_bpc() to use the boolean >> return API so each test can decide how to handle max-bpc read failures. >> This separates read/parsing failures from capability checks and allows >> the test to make an explicit skip/continue decision with clearer logging, >> while keeping normal capability validation unchanged when max bpc is >> read successfully. >> >> Signed-off-by: Pranay Samala <pranay.samala@intel.com> >> --- >> tests/amdgpu/amd_bypass.c | 6 +++++- >> tests/amdgpu/amd_dp_dsc.c | 10 +++++++++- >> tests/intel/kms_dsc.c | 13 +++++++++++-- >> tests/intel/kms_frontbuffer_tracking.c | 10 +++++++++- >> tests/kms_color_helper.c | 5 ++++- >> tests/kms_dither.c | 9 ++++++++- >> tests/kms_hdr.c | 16 ++++++++++++++-- >> 7 files changed, 60 insertions(+), 9 deletions(-) >> >> diff --git a/tests/amdgpu/amd_bypass.c b/tests/amdgpu/amd_bypass.c >> index 3c537ea9e..e59691f16 100644 >> --- a/tests/amdgpu/amd_bypass.c >> +++ b/tests/amdgpu/amd_bypass.c >> @@ -323,6 +323,7 @@ static void bypass_8bpc_test(data_t *data) >> igt_display_t *display = &data->display; >> igt_fb_t fb; >> enum pattern ptn; >> + unsigned int maximum; >> >> test_init(data); >> >> @@ -345,7 +346,10 @@ static void bypass_8bpc_test(data_t *data) >> * Rx supports only up to 6bpc, Rx-crc will different from crtc-crc >> * with 8bpc. >> */ >> - igt_skip_on_f(igt_get_output_max_bpc(data->output) <= 6, >> + igt_skip_on_f(!igt_get_output_max_bpc(data->output, &maximum), >> + "Failed to read max bpc for %s\n", igt_output_name(data->output)); >> + >> + igt_skip_on_f(maximum <= 6, >> "check /sys/kernel/debug/dri/0/eDP-1 (connector)/output_bpc\n"); >> >> igt_create_fb(data->drm_fd, data->width, data->height, >> diff --git a/tests/amdgpu/amd_dp_dsc.c b/tests/amdgpu/amd_dp_dsc.c >> index 1742c7df4..dc71e903e 100644 >> --- a/tests/amdgpu/amd_dp_dsc.c >> +++ b/tests/amdgpu/amd_dp_dsc.c >> @@ -480,11 +480,19 @@ static void test_dsc_bpc(data_t *data) >> >> /* Find max supported bpc */ >> for_each_crtc(&data->display, crtc) { >> + unsigned int maximum; >> + >> output = data->output[crtc->crtc_index]; >> if (!output || !igt_output_is_connected(output)) >> continue; >> igt_info("Checking bpc support of conn %s\n", output->name); >> - max_supported_bpc[crtc->crtc_index] = igt_get_output_max_bpc(output); >> + if (!igt_get_output_max_bpc(output, &maximum)) { >> + igt_info("Failed to read max bpc for conn %s\n", output->name); >> + max_supported_bpc[crtc->crtc_index] = 0; >> + continue; >> + } >> + >> + max_supported_bpc[crtc->crtc_index] = maximum; >> } >> >> /* Setup all outputs */ >> diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c >> index 605ad2d5c..8008fc045 100644 >> --- a/tests/intel/kms_dsc.c >> +++ b/tests/intel/kms_dsc.c >> @@ -265,6 +265,8 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, >> igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc)); >> >> for_each_crtc_with_valid_output(display, crtc, output) { >> + unsigned int maximum; >> + >> data->output_format = output_format; >> data->plane_format = plane_format; >> data->input_bpc = bpc; >> @@ -275,8 +277,15 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, >> !check_gen11_dp_constraint(data->drm_fd, data->output, data->crtc)) >> continue; >> >> - 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); >> + if (!igt_get_output_max_bpc(output, &maximum)) { >> + igt_info("Output %s: Failed to read max bpc\n", >> + igt_output_name(data->output)); >> + continue; >> + } >> + >> + if (maximum < MIN_DSC_BPC) { >> + igt_info("Output %s doesn't support min %d-bpc\n", >> + igt_output_name(data->output), MIN_DSC_BPC); >> continue; >> } >> >> diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c >> index e7bb3fa18..996a67ee6 100644 >> --- a/tests/intel/kms_frontbuffer_tracking.c >> +++ b/tests/intel/kms_frontbuffer_tracking.c >> @@ -2777,6 +2777,8 @@ static void setup_drrs(void) >> >> static void setup_hdr(void) >> { >> + unsigned int maximum; >> + >> if (!igt_output_has_prop(prim_mode_params.output, IGT_CONNECTOR_MAX_BPC) || >> !igt_output_get_prop(prim_mode_params.output, IGT_CONNECTOR_MAX_BPC) || >> !igt_output_supports_hdr(prim_mode_params.output)) { >> @@ -2790,7 +2792,13 @@ static void setup_hdr(void) >> return; >> } >> >> - if (igt_get_output_max_bpc(prim_mode_params.output) < 10) { >> + if (!igt_get_output_max_bpc(prim_mode_params.output, &maximum)) { >> + igt_info("Can't test HDR: Failed to read max bpc for %s.\n", >> + igt_output_name(prim_mode_params.output)); >> + return; >> + } >> + >> + if (maximum < 10) { >> igt_info("Can't test HDR: %s doesn't support 10 bpc.\n", igt_output_name(prim_mode_params.output)); >> return; >> } >> diff --git a/tests/kms_color_helper.c b/tests/kms_color_helper.c >> index 24663444a..a50ac3a37 100644 >> --- a/tests/kms_color_helper.c >> +++ b/tests/kms_color_helper.c >> @@ -40,7 +40,10 @@ bool crtc_output_combo_valid(data_t *data, igt_crtc_t *crtc) >> bool >> panel_supports_deep_color(igt_output_t *output) >> { >> - unsigned int maximum = igt_get_output_max_bpc(output); >> + unsigned int maximum; >> + >> + if (!igt_get_output_max_bpc(output, &maximum)) >> + return false; >> >> igt_info("Max supported bit depth: %d\n", maximum); >> >> diff --git a/tests/kms_dither.c b/tests/kms_dither.c >> index ca367db61..236e5c7c0 100644 >> --- a/tests/kms_dither.c >> +++ b/tests/kms_dither.c >> @@ -206,6 +206,7 @@ run_dither_test(data_t *data, int fb_bpc, int fb_format, int output_bpc) >> >> for_each_connected_output(display, output) { >> igt_crtc_t *crtc; >> + unsigned int maximum; >> >> if (!is_supported(output)) { >> igt_info("Output %s: Doesn't support \"max bpc\" property.\n", >> @@ -213,7 +214,13 @@ run_dither_test(data_t *data, int fb_bpc, int fb_format, int output_bpc) >> continue; >> } >> >> - if (igt_get_output_max_bpc(output) < output_bpc) { >> + if (!igt_get_output_max_bpc(output, &maximum)) { >> + igt_info("Output %s: Failed to read max bpc.\n", >> + igt_output_name(output)); >> + continue; >> + } >> + >> + if (maximum < output_bpc) { >> igt_info("Output %s: Doesn't support %d-bpc.\n", >> igt_output_name(output), output_bpc); >> continue; >> diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c >> index bcc912d15..2f19b3237 100644 >> --- a/tests/kms_hdr.c >> +++ b/tests/kms_hdr.c >> @@ -254,6 +254,7 @@ static void test_bpc_switch(data_t *data, uint32_t flags) >> >> for_each_connected_output(display, output) { >> igt_crtc_t *crtc; >> + unsigned int maximum; >> >> if (!has_max_bpc(output)) { >> igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n", >> @@ -261,7 +262,12 @@ static void test_bpc_switch(data_t *data, uint32_t flags) >> continue; >> } >> >> - if (igt_get_output_max_bpc(output) < 10) { >> + if (!igt_get_output_max_bpc(output, &maximum)) { >> + igt_info("%s: Failed to read max bpc.\n", igt_output_name(output)); >> + continue; >> + } >> + >> + if (maximum < 10) { >> igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); >> continue; >> } >> @@ -532,6 +538,7 @@ static void test_hdr(data_t *data, uint32_t flags) >> >> for_each_connected_output(display, output) { >> igt_crtc_t *crtc; >> + unsigned int maximum; >> >> /* To test HDR, 10 bpc is required, so we need to >> * set MAX_BPC property to 10bpc prior to setting >> @@ -556,7 +563,12 @@ static void test_hdr(data_t *data, uint32_t flags) >> continue; >> } >> >> - if (igt_get_output_max_bpc(output) < 10) { >> + if (!igt_get_output_max_bpc(output, &maximum)) { >> + igt_info("%s: Failed to read max bpc.\n", igt_output_name(output)); >> + continue; >> + } >> + >> + if (maximum < 10) { >> igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); >> continue; >> } ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 3/3] tests/: Handle max bpc read failures explicitly 2026-05-21 15:54 ` vitaly prosyak @ 2026-05-21 17:12 ` Alex Hung 0 siblings, 0 replies; 13+ messages in thread From: Alex Hung @ 2026-05-21 17:12 UTC (permalink / raw) To: vitaly prosyak, Karthik B S, Pranay Samala, igt-dev Cc: sameer.lattannavar, Vitaly Prosyak On 5/21/26 09:54, vitaly prosyak wrote: > > On 2026-05-20 01:04, Karthik B S wrote: >> Hi Pranay, >> >> +cc Vitaly Prosyak <vitaly.prosyak@amd.com> >> >> @Vitaly: Please take a look from the amd tests POV. > > > Added Alex Hung > > Agree with Karthik patches 1 and 2 must be squashed. If patch 1 changes the igt_get_output_max_bpc() signature (adding the unsigned int * out-param and changing return type to bool), then all callers in patch 2 won't compile at the patch-1 boundary, breaking git bisect. Did you mean patch 2 & 3? LGTM too When patches are squashed, > > Overall: LGTM for the AMD test files. The error handling is sensible and the transformation is mechanical/correct. > > Thanks, Vitaly > >> >> The patch LGTM in general, other than the fact that this patch needs to >> be combined with patch 2 to avoid compilation failure there. >> >> Regards, >> Karthik.B.S >> >> On 5/18/2026 9:33 AM, Pranay Samala wrote: >>> Update test call sites of igt_get_output_max_bpc() to use the boolean >>> return API so each test can decide how to handle max-bpc read failures. >>> This separates read/parsing failures from capability checks and allows >>> the test to make an explicit skip/continue decision with clearer logging, >>> while keeping normal capability validation unchanged when max bpc is >>> read successfully. >>> >>> Signed-off-by: Pranay Samala <pranay.samala@intel.com> >>> --- >>> tests/amdgpu/amd_bypass.c | 6 +++++- >>> tests/amdgpu/amd_dp_dsc.c | 10 +++++++++- >>> tests/intel/kms_dsc.c | 13 +++++++++++-- >>> tests/intel/kms_frontbuffer_tracking.c | 10 +++++++++- >>> tests/kms_color_helper.c | 5 ++++- >>> tests/kms_dither.c | 9 ++++++++- >>> tests/kms_hdr.c | 16 ++++++++++++++-- >>> 7 files changed, 60 insertions(+), 9 deletions(-) >>> >>> diff --git a/tests/amdgpu/amd_bypass.c b/tests/amdgpu/amd_bypass.c >>> index 3c537ea9e..e59691f16 100644 >>> --- a/tests/amdgpu/amd_bypass.c >>> +++ b/tests/amdgpu/amd_bypass.c >>> @@ -323,6 +323,7 @@ static void bypass_8bpc_test(data_t *data) >>> igt_display_t *display = &data->display; >>> igt_fb_t fb; >>> enum pattern ptn; >>> + unsigned int maximum; >>> >>> test_init(data); >>> >>> @@ -345,7 +346,10 @@ static void bypass_8bpc_test(data_t *data) >>> * Rx supports only up to 6bpc, Rx-crc will different from crtc-crc >>> * with 8bpc. >>> */ >>> - igt_skip_on_f(igt_get_output_max_bpc(data->output) <= 6, >>> + igt_skip_on_f(!igt_get_output_max_bpc(data->output, &maximum), >>> + "Failed to read max bpc for %s\n", igt_output_name(data->output)); >>> + >>> + igt_skip_on_f(maximum <= 6, >>> "check /sys/kernel/debug/dri/0/eDP-1 (connector)/output_bpc\n"); >>> >>> igt_create_fb(data->drm_fd, data->width, data->height, >>> diff --git a/tests/amdgpu/amd_dp_dsc.c b/tests/amdgpu/amd_dp_dsc.c >>> index 1742c7df4..dc71e903e 100644 >>> --- a/tests/amdgpu/amd_dp_dsc.c >>> +++ b/tests/amdgpu/amd_dp_dsc.c >>> @@ -480,11 +480,19 @@ static void test_dsc_bpc(data_t *data) >>> >>> /* Find max supported bpc */ >>> for_each_crtc(&data->display, crtc) { >>> + unsigned int maximum; >>> + >>> output = data->output[crtc->crtc_index]; >>> if (!output || !igt_output_is_connected(output)) >>> continue; >>> igt_info("Checking bpc support of conn %s\n", output->name); >>> - max_supported_bpc[crtc->crtc_index] = igt_get_output_max_bpc(output); >>> + if (!igt_get_output_max_bpc(output, &maximum)) { >>> + igt_info("Failed to read max bpc for conn %s\n", output->name); >>> + max_supported_bpc[crtc->crtc_index] = 0; >>> + continue; >>> + } >>> + >>> + max_supported_bpc[crtc->crtc_index] = maximum; >>> } >>> >>> /* Setup all outputs */ >>> diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c >>> index 605ad2d5c..8008fc045 100644 >>> --- a/tests/intel/kms_dsc.c >>> +++ b/tests/intel/kms_dsc.c >>> @@ -265,6 +265,8 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, >>> igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc)); >>> >>> for_each_crtc_with_valid_output(display, crtc, output) { >>> + unsigned int maximum; >>> + >>> data->output_format = output_format; >>> data->plane_format = plane_format; >>> data->input_bpc = bpc; >>> @@ -275,8 +277,15 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, >>> !check_gen11_dp_constraint(data->drm_fd, data->output, data->crtc)) >>> continue; >>> >>> - 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); >>> + if (!igt_get_output_max_bpc(output, &maximum)) { >>> + igt_info("Output %s: Failed to read max bpc\n", >>> + igt_output_name(data->output)); >>> + continue; >>> + } >>> + >>> + if (maximum < MIN_DSC_BPC) { >>> + igt_info("Output %s doesn't support min %d-bpc\n", >>> + igt_output_name(data->output), MIN_DSC_BPC); >>> continue; >>> } >>> >>> diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c >>> index e7bb3fa18..996a67ee6 100644 >>> --- a/tests/intel/kms_frontbuffer_tracking.c >>> +++ b/tests/intel/kms_frontbuffer_tracking.c >>> @@ -2777,6 +2777,8 @@ static void setup_drrs(void) >>> >>> static void setup_hdr(void) >>> { >>> + unsigned int maximum; >>> + >>> if (!igt_output_has_prop(prim_mode_params.output, IGT_CONNECTOR_MAX_BPC) || >>> !igt_output_get_prop(prim_mode_params.output, IGT_CONNECTOR_MAX_BPC) || >>> !igt_output_supports_hdr(prim_mode_params.output)) { >>> @@ -2790,7 +2792,13 @@ static void setup_hdr(void) >>> return; >>> } >>> >>> - if (igt_get_output_max_bpc(prim_mode_params.output) < 10) { >>> + if (!igt_get_output_max_bpc(prim_mode_params.output, &maximum)) { >>> + igt_info("Can't test HDR: Failed to read max bpc for %s.\n", >>> + igt_output_name(prim_mode_params.output)); >>> + return; >>> + } >>> + >>> + if (maximum < 10) { >>> igt_info("Can't test HDR: %s doesn't support 10 bpc.\n", igt_output_name(prim_mode_params.output)); >>> return; >>> } >>> diff --git a/tests/kms_color_helper.c b/tests/kms_color_helper.c >>> index 24663444a..a50ac3a37 100644 >>> --- a/tests/kms_color_helper.c >>> +++ b/tests/kms_color_helper.c >>> @@ -40,7 +40,10 @@ bool crtc_output_combo_valid(data_t *data, igt_crtc_t *crtc) >>> bool >>> panel_supports_deep_color(igt_output_t *output) >>> { >>> - unsigned int maximum = igt_get_output_max_bpc(output); >>> + unsigned int maximum; >>> + >>> + if (!igt_get_output_max_bpc(output, &maximum)) >>> + return false; >>> >>> igt_info("Max supported bit depth: %d\n", maximum); >>> >>> diff --git a/tests/kms_dither.c b/tests/kms_dither.c >>> index ca367db61..236e5c7c0 100644 >>> --- a/tests/kms_dither.c >>> +++ b/tests/kms_dither.c >>> @@ -206,6 +206,7 @@ run_dither_test(data_t *data, int fb_bpc, int fb_format, int output_bpc) >>> >>> for_each_connected_output(display, output) { >>> igt_crtc_t *crtc; >>> + unsigned int maximum; >>> >>> if (!is_supported(output)) { >>> igt_info("Output %s: Doesn't support \"max bpc\" property.\n", >>> @@ -213,7 +214,13 @@ run_dither_test(data_t *data, int fb_bpc, int fb_format, int output_bpc) >>> continue; >>> } >>> >>> - if (igt_get_output_max_bpc(output) < output_bpc) { >>> + if (!igt_get_output_max_bpc(output, &maximum)) { >>> + igt_info("Output %s: Failed to read max bpc.\n", >>> + igt_output_name(output)); >>> + continue; >>> + } >>> + >>> + if (maximum < output_bpc) { >>> igt_info("Output %s: Doesn't support %d-bpc.\n", >>> igt_output_name(output), output_bpc); >>> continue; >>> diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c >>> index bcc912d15..2f19b3237 100644 >>> --- a/tests/kms_hdr.c >>> +++ b/tests/kms_hdr.c >>> @@ -254,6 +254,7 @@ static void test_bpc_switch(data_t *data, uint32_t flags) >>> >>> for_each_connected_output(display, output) { >>> igt_crtc_t *crtc; >>> + unsigned int maximum; >>> >>> if (!has_max_bpc(output)) { >>> igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n", >>> @@ -261,7 +262,12 @@ static void test_bpc_switch(data_t *data, uint32_t flags) >>> continue; >>> } >>> >>> - if (igt_get_output_max_bpc(output) < 10) { >>> + if (!igt_get_output_max_bpc(output, &maximum)) { >>> + igt_info("%s: Failed to read max bpc.\n", igt_output_name(output)); >>> + continue; >>> + } >>> + >>> + if (maximum < 10) { >>> igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); >>> continue; >>> } >>> @@ -532,6 +538,7 @@ static void test_hdr(data_t *data, uint32_t flags) >>> >>> for_each_connected_output(display, output) { >>> igt_crtc_t *crtc; >>> + unsigned int maximum; >>> >>> /* To test HDR, 10 bpc is required, so we need to >>> * set MAX_BPC property to 10bpc prior to setting >>> @@ -556,7 +563,12 @@ static void test_hdr(data_t *data, uint32_t flags) >>> continue; >>> } >>> >>> - if (igt_get_output_max_bpc(output) < 10) { >>> + if (!igt_get_output_max_bpc(output, &maximum)) { >>> + igt_info("%s: Failed to read max bpc.\n", igt_output_name(output)); >>> + continue; >>> + } >>> + >>> + if (maximum < 10) { >>> igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); >>> continue; >>> } ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for Improve max-bpc query error handling 2026-05-18 4:03 [PATCH i-g-t 0/3] Improve max-bpc query error handling Pranay Samala ` (2 preceding siblings ...) 2026-05-18 4:03 ` [PATCH i-g-t 3/3] tests/: Handle max bpc read failures explicitly Pranay Samala @ 2026-05-18 22:42 ` Patchwork 2026-05-18 22:55 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2026-05-18 22:42 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 766 bytes --] == Series Details == Series: Improve max-bpc query error handling URL : https://patchwork.freedesktop.org/series/166710/ State : success == Summary == CI Bug Log - changes from XEIGT_8918_BAT -> XEIGTPW_15195_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8918 -> IGTPW_15195 IGTPW_15195: 15195 IGT_8918: 8918 xe-5086-7161a1ce9e045da82f90b1b4c184ab84b7f54900: 7161a1ce9e045da82f90b1b4c184ab84b7f54900 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/index.html [-- Attachment #2: Type: text/html, Size: 1311 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.BAT: success for Improve max-bpc query error handling 2026-05-18 4:03 [PATCH i-g-t 0/3] Improve max-bpc query error handling Pranay Samala ` (3 preceding siblings ...) 2026-05-18 22:42 ` ✓ Xe.CI.BAT: success for Improve max-bpc query error handling Patchwork @ 2026-05-18 22:55 ` Patchwork 2026-05-19 4:56 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-05-19 17:55 ` ✓ i915.CI.Full: success " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2026-05-18 22:55 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4969 bytes --] == Series Details == Series: Improve max-bpc query error handling URL : https://patchwork.freedesktop.org/series/166710/ State : success == Summary == CI Bug Log - changes from IGT_8918 -> IGTPW_15195 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/index.html Participating hosts (41 -> 40) ------------------------------ Additional (1): bat-adls-6 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15195 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-adls-6: NOTRUN -> [SKIP][1] ([i915#15931]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/bat-adls-6/igt@dmabuf@all-tests.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic@basic: - bat-adls-6: NOTRUN -> [SKIP][3] ([i915#15656]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/bat-adls-6/igt@gem_tiled_pread_basic@basic.html * igt@intel_hwmon@hwmon-read: - bat-adls-6: NOTRUN -> [SKIP][4] ([i915#7707]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/bat-adls-6/igt@intel_hwmon@hwmon-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adls-6: NOTRUN -> [SKIP][5] ([i915#4103]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-adls-6: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#3840]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/bat-adls-6/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adls-6: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-adls-6: NOTRUN -> [SKIP][8] ([i915#5354]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-adls-6: NOTRUN -> [SKIP][9] ([i915#1072] / [i915#9732]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adls-6: NOTRUN -> [SKIP][10] ([i915#3555]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-adls-6: NOTRUN -> [SKIP][11] ([i915#3291]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/bat-adls-6/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arlh-3: [DMESG-FAIL][12] ([i915#12061]) -> [PASS][13] +1 other test pass [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8918/bat-arlh-3/igt@i915_selftest@live@workarounds.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/bat-arlh-3/igt@i915_selftest@live@workarounds.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8918 -> IGTPW_15195 * Linux: CI_DRM_18512 -> CI_DRM_18513 CI-20190529: 20190529 CI_DRM_18512: 7161a1ce9e045da82f90b1b4c184ab84b7f54900 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18513: 94e4b8dc66d191ccb11a59ae2c065b5b6f3565d8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15195: 15195 IGT_8918: 8918 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/index.html [-- Attachment #2: Type: text/html, Size: 5952 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.FULL: failure for Improve max-bpc query error handling 2026-05-18 4:03 [PATCH i-g-t 0/3] Improve max-bpc query error handling Pranay Samala ` (4 preceding siblings ...) 2026-05-18 22:55 ` ✓ i915.CI.BAT: " Patchwork @ 2026-05-19 4:56 ` Patchwork 2026-05-19 17:55 ` ✓ i915.CI.Full: success " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2026-05-19 4:56 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 42592 bytes --] == Series Details == Series: Improve max-bpc query error handling URL : https://patchwork.freedesktop.org/series/166710/ State : failure == Summary == CI Bug Log - changes from XEIGT_8918_FULL -> XEIGTPW_15195_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15195_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15195_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_15195_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-d-hdmi-a-3: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html #### Warnings #### * igt@xe_page_reclaim@pat-index-xd: - shard-lnl: [SKIP][3] ([Intel XE#7793]) -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-8/igt@xe_page_reclaim@pat-index-xd.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-7/igt@xe_page_reclaim@pat-index-xd.html Known issues ------------ Here are the changes found in XEIGTPW_15195_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1124]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-3/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#607] / [Intel XE#7361]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1477] / [Intel XE#7361]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#7679]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#7679]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-target-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#7676]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-1/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2887]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-bmg: [PASS][16] -> [DMESG-FAIL][17] ([Intel XE#5545] / [Intel XE#7774]) +1 other test dmesg-fail [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#3432]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#373]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-3/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2325] / [Intel XE#7358]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-10/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2252]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2390] / [Intel XE#6974]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-4/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#7642]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-7/igt@kms_content_protection@uevent.html - shard-bmg: NOTRUN -> [FAIL][25] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-3/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2321] / [Intel XE#7355]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-512x170.html - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2321] / [Intel XE#7355]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#309] / [Intel XE#7343]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4331] / [Intel XE#7227]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#4331] / [Intel XE#7227]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1421]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][32] -> [FAIL][33] ([Intel XE#301]) +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#7178] / [Intel XE#7351]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7179]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-8/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#7179]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-2/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#4141]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#656] / [Intel XE#7905]) +8 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#6312]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2311]) +19 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7061] / [Intel XE#7356]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7865]) +6 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7061]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-8/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7061]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-8/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2313]) +14 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#7905]) +8 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-3/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#1503]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-8/igt@kms_hdr@invalid-hdr.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_hdr@invalid-hdr.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_pm_backlight@fade-with-dpms: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-6/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#4608]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#4608] / [Intel XE#7304]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1489]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#2893] / [Intel XE#7304]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-basic: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1406]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-7/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-6/igt@kms_psr@psr-basic.html * igt@kms_sharpness_filter@filter-dpms: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#6503]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-8/igt@kms_sharpness_filter@filter-dpms.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#6599]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-5/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_eudebug@basic-vm-bind-ufence: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7636]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence.html * igt@xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#7636]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-1/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html * igt@xe_exec_balancer@many-cm-parallel-basic: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#7482]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-8/igt@xe_exec_balancer@many-cm-parallel-basic.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html * igt@xe_exec_basic@multigpu-no-exec-null: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1392]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-null.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#7136]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch.html * igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-imm: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#7136]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-3/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind-imm.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-dyn-priority: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#6874]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-5/igt@xe_exec_multi_queue@many-queues-preempt-mode-dyn-priority.html * igt@xe_exec_multi_queue@many-queues-priority-smem: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#6874]) +8 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-6/igt@xe_exec_multi_queue@many-queues-priority-smem.html * igt@xe_exec_reset@cm-multi-queue-cat-error: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7866]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-9/igt@xe_exec_reset@cm-multi-queue-cat-error.html - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#7866]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-7/igt@xe_exec_reset@cm-multi-queue-cat-error.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][74] ([Intel XE#7098]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-3/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_system_allocator@once-large-mmap-mlock: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#6703]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@xe_exec_system_allocator@once-large-mmap-mlock.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#6196]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma.html * igt@xe_exec_system_allocator@threads-many-malloc-mlock-nomemset: - shard-bmg: [PASS][77] -> [ABORT][78] ([Intel XE#7893]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-malloc-mlock-nomemset.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-malloc-mlock-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch: - shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#6557] / [Intel XE#6703]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch.html * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#7138]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-rebind.html * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#7138]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html * igt@xe_gpgpu_fill@offset-4x4: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#7954]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-8/igt@xe_gpgpu_fill@offset-4x4.html - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#7954]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-2/igt@xe_gpgpu_fill@offset-4x4.html * igt@xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-7/igt@xe_mmap@pci-membarrier-parallel.html * igt@xe_multigpu_svm@mgpu-migration-basic: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#6964]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-7/igt@xe_multigpu_svm@mgpu-migration-basic.html * igt@xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1948]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-1/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pxp@pxp-stale-bo-exec-post-suspend: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4733] / [Intel XE#7417]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-9/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html * igt@xe_query@query-gt-list: - shard-bmg: [PASS][89] -> [SKIP][90] ([Intel XE#6703]) +32 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-3/igt@xe_query@query-gt-list.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@xe_query@query-gt-list.html #### Possible fixes #### * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][91] ([Intel XE#7084]) -> [PASS][92] +1 other test pass [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [FAIL][93] ([Intel XE#301]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3: - shard-bmg: [DMESG-FAIL][95] ([Intel XE#5545] / [Intel XE#7774]) -> [PASS][96] +1 other test pass [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [SKIP][97] ([Intel XE#7308]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-7/igt@kms_hdmi_inject@inject-audio.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [SKIP][99] ([Intel XE#7915]) -> [PASS][100] +1 other test pass [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-3/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-9/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_plane_multiple@tiling-x: - shard-bmg: [SKIP][101] ([Intel XE#6703]) -> [PASS][102] +2 other tests pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@kms_plane_multiple@tiling-x.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-8/igt@kms_plane_multiple@tiling-x.html * igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads: - shard-bmg: [FAIL][103] ([Intel XE#7850]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads.html * igt@xe_module_load@reload: - shard-bmg: [DMESG-WARN][105] -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@xe_module_load@reload.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-6/igt@xe_module_load@reload.html * igt@xe_pmu@fn-engine-activity-load: - shard-bmg: [FAIL][107] ([Intel XE#7992]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@xe_pmu@fn-engine-activity-load.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-3/igt@xe_pmu@fn-engine-activity-load.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random: - shard-bmg: [FAIL][109] -> [PASS][110] +3 other tests pass [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-6/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html * igt@xe_survivability@runtime-survivability: - shard-bmg: [DMESG-WARN][111] ([Intel XE#6627] / [Intel XE#7419]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-9/igt@xe_survivability@runtime-survivability.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-8/igt@xe_survivability@runtime-survivability.html * igt@xe_wedged@wedged-mode-toggle: - shard-bmg: [ABORT][113] ([Intel XE#7914]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-3/igt@xe_wedged@wedged-mode-toggle.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-9/igt@xe_wedged@wedged-mode-toggle.html #### Warnings #### * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-bmg: [SKIP][115] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][116] ([Intel XE#6703]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-lnl: [SKIP][117] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) -> [SKIP][118] ([Intel XE#309] / [Intel XE#7343]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][119] ([Intel XE#7178] / [Intel XE#7349]) -> [SKIP][120] ([Intel XE#6703]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][121] ([Intel XE#6703]) -> [SKIP][122] ([Intel XE#4141]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][123] ([Intel XE#4141]) -> [SKIP][124] ([Intel XE#6703]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][125] ([Intel XE#2311]) -> [SKIP][126] ([Intel XE#6703]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-pri-indfb-draw-blt.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-draw-render: - shard-lnl: [ABORT][127] -> [SKIP][128] ([Intel XE#7905]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-draw-render.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt: - shard-bmg: [SKIP][129] ([Intel XE#7061]) -> [SKIP][130] ([Intel XE#6703]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][131] ([Intel XE#2313]) -> [SKIP][132] ([Intel XE#6703]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-render.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: [SKIP][133] ([Intel XE#3544] / [Intel XE#7915]) -> [SKIP][134] ([Intel XE#3374] / [Intel XE#3544]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-2/igt@kms_hdr@brightness-with-hdr.html - shard-bmg: [SKIP][135] ([Intel XE#3544] / [Intel XE#7915] / [Intel XE#7916]) -> [SKIP][136] ([Intel XE#3374] / [Intel XE#3544]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-lnl: [SKIP][137] ([Intel XE#1503] / [Intel XE#7915]) -> [SKIP][138] ([Intel XE#1503]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-lnl-8/igt@kms_hdr@invalid-metadata-sizes.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-lnl-7/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-bmg: [SKIP][139] ([Intel XE#7283]) -> [SKIP][140] ([Intel XE#6703]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][141] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][142] ([Intel XE#2426] / [Intel XE#5848]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8918/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [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#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [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#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [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#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [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#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#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#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227 [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#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [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#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [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#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [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#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850 [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#7893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7893 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7914 [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#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935 [Intel XE#7954]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7954 [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 Build changes ------------- * IGT: IGT_8918 -> IGTPW_15195 IGTPW_15195: 15195 IGT_8918: 8918 xe-5086-7161a1ce9e045da82f90b1b4c184ab84b7f54900: 7161a1ce9e045da82f90b1b4c184ab84b7f54900 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15195/index.html [-- Attachment #2: Type: text/html, Size: 49367 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.Full: success for Improve max-bpc query error handling 2026-05-18 4:03 [PATCH i-g-t 0/3] Improve max-bpc query error handling Pranay Samala ` (5 preceding siblings ...) 2026-05-19 4:56 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-05-19 17:55 ` Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2026-05-19 17:55 UTC (permalink / raw) To: Samala, Pranay; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 133582 bytes --] == Series Details == Series: Improve max-bpc query error handling URL : https://patchwork.freedesktop.org/series/166710/ State : success == Summary == CI Bug Log - changes from CI_DRM_18513_full -> IGTPW_15195_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between CI_DRM_18513_full and IGTPW_15195_full: ### New IGT tests (12) ### * igt@kms_flip@2x-flip-vs-cursor-atomic: - Statuses : - Exec time: [None] s * igt@kms_flip@bad-rotation-90-y-tiled-gen12-mc-ccs: - Statuses : - Exec time: [None] s * igt@kms_flip@cursorb-vs-flipa-toggle: - Statuses : - Exec time: [None] s * igt@kms_flip@fbc-1p-primscrn-shrfb-msflip-blt: - Statuses : - Exec time: [None] s * igt@kms_flip@fbchdr-2p-primscrn-spr-indfb-draw-mmap-gtt: - Statuses : - Exec time: [None] s * igt@kms_flip@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - Statuses : - Exec time: [None] s * igt@kms_flip@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-wc: - Statuses : - Exec time: [None] s * igt@kms_flip@hdr-2p-pri-indfb-multidraw: - Statuses : - Exec time: [None] s * igt@kms_flip@hdr-2p-primscrn-pri-shrfb-draw-render: - Statuses : - Exec time: [None] s * igt@kms_flip@linear-64bpp-rotate-0: - Statuses : - Exec time: [None] s * igt@kms_flip@planes-scaler-unity-scaling: - Statuses : - Exec time: [None] s * igt@kms_flip@size-max: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_15195_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][1] ([i915#11078]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-5/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][2] ([i915#11078]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@device_reset@cold-reset-bound.html * igt@fbdev@pan: - shard-snb: NOTRUN -> [FAIL][3] ([i915#15792]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-snb6/igt@fbdev@pan.html * igt@gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][4] ([i915#3555] / [i915#9323]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html - shard-dg1: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#9323]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-12/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#9323]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#6335]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][8] ([i915#13356]) +1 other test incomplete [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk4/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][9] ([i915#1099]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-snb6/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#280]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][11] ([i915#280]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#4525]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-2/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_big@single: - shard-mtlp: [PASS][13] -> [FAIL][14] ([i915#15871]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-mtlp-3/igt@gem_exec_big@single.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-2/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible: - shard-glk11: NOTRUN -> [SKIP][15] ([i915#6334]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk11/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#4812]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-6/igt@gem_exec_fence@submit.html - shard-dg1: NOTRUN -> [SKIP][17] ([i915#4812]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-19/igt@gem_exec_fence@submit.html - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#4812]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#3539] / [i915#4852]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-17/igt@gem_exec_flush@basic-batch-kernel-default-wb.html - shard-dg2: NOTRUN -> [SKIP][20] ([i915#3539] / [i915#4852]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-6/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#3539]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#3539]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-17/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#3281]) +6 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html - shard-rkl: NOTRUN -> [SKIP][24] ([i915#3281]) +11 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#3281]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-17/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3281]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#7276]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0: - shard-rkl: [PASS][28] -> [INCOMPLETE][29] ([i915#13356]) +1 other test incomplete [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-8/igt@gem_exec_suspend@basic-s0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4860]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4860]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-19/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4860]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][33] ([i915#2190]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk5/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][34] ([i915#4613] / [i915#7582]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-7/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#4613]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#4613]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][37] ([i915#4613]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk5/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#4613]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-3/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#284]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-1/igt@gem_media_vme.html * igt@gem_mmap@pf-nonblock: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4083]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-14/igt@gem_mmap@pf-nonblock.html * igt@gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4077]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-4/igt@gem_mmap_gtt@basic-write-read-distinct.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#14544] / [i915#3282]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@write-display: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3282]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-7/igt@gem_partial_pwrite_pread@write-display.html - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3282]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-19/igt@gem_partial_pwrite_pread@write-display.html - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3282]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_pread@display: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3282]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@gem_pread@display.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][47] ([i915#2658]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk1/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-regular-context-2: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4270]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-3/igt@gem_pxp@create-regular-context-2.html - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4270]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-18/igt@gem_pxp@create-regular-context-2.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#8428]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#5190] / [i915#8428]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][52] +541 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4079]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_softpin@noreloc-s3: - shard-glk: [PASS][54] -> [INCOMPLETE][55] ([i915#13809]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-glk3/igt@gem_softpin@noreloc-s3.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk5/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +5 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-3/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic@basic: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#15657]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-5/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3297]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3297]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3297]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-16/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-tglu: NOTRUN -> [SKIP][61] ([i915#3297]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3297]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#2527] / [i915#2856]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-4/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-chained: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#2856]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-6/igt@gen9_exec_parse@bb-chained.html - shard-dg1: NOTRUN -> [SKIP][65] ([i915#2527]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-14/igt@gen9_exec_parse@bb-chained.html - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#2856]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-8/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-param: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#2527] / [i915#2856]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#2527]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@most-busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#14073]) +7 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-3/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-glk: NOTRUN -> [ABORT][70] ([i915#15342]) +1 other test abort [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk8/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#8399]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#16080]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#6245]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-13/igt@i915_query@hwconfig_table.html * igt@i915_selftest@perf: - shard-snb: [PASS][74] -> [DMESG-WARN][75] ([i915#14545]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-snb5/igt@i915_selftest@perf.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-snb7/igt@i915_selftest@perf.html * igt@i915_suspend@debugfs-reader: - shard-rkl: NOTRUN -> [INCOMPLETE][76] ([i915#4817]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-untiled: - shard-glk11: NOTRUN -> [INCOMPLETE][77] ([i915#4817]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk11/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@sysfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][78] ([i915#4817]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk2/igt@i915_suspend@sysfs-reader.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#7707]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@intel_hwmon@hwmon-read.html - shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#7707]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: NOTRUN -> [INCOMPLETE][81] ([i915#12761]) +1 other test incomplete [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1: - shard-glk: [PASS][82] -> [INCOMPLETE][83] ([i915#12761]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][84] ([i915#1769]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#5286]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#5286]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4538] / [i915#5286]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#14544] / [i915#5286]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#5286]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#3638]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-8/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#3828]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][92] +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3638]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-19/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4538] / [i915#5190]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4538]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-19/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#6095]) +189 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#12313]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#10307] / [i915#6095]) +91 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#12313]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#6095]) +19 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#12313]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#12313]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][103] ([i915#12313]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#12805]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][105] ([i915#15582]) +2 other tests incomplete [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#6095]) +8 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#14098] / [i915#6095]) +46 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#6095]) +54 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#6095]) +29 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#14544] / [i915#6095]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#6095]) +68 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#16017]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#3742]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#13783]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][117] +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-8/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#11151] / [i915#14544] / [i915#7828]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#11151] / [i915#7828]) +5 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#11151] / [i915#7828]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#11151] / [i915#7828]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd-fast.html - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#11151] / [i915#7828]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#11151] / [i915#7828]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#11151] / [i915#7828]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#15865]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#15330] / [i915#3116] / [i915#3299]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#15330] / [i915#3116]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy-hdcp14: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#15865]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-3/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#15865]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-8/igt@kms_content_protection@srm.html * igt@kms_content_protection@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#15865]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-12/igt@kms_content_protection@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#15865]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-8/igt@kms_content_protection@suspend-resume.html * igt@kms_content_protection@uevent-hdcp14: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#15865]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3555] / [i915#8814]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#13049]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#3555]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#13049]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#8814]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][138] ([i915#13566]) +3 other tests fail [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html - shard-tglu: NOTRUN -> [FAIL][139] ([i915#13566]) +1 other test fail [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [PASS][140] -> [FAIL][141] ([i915#13566]) +1 other test fail [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#13049]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][143] ([i915#12358] / [i915#14152] / [i915#7882]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk11/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [INCOMPLETE][144] ([i915#12358] / [i915#14152]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk11/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#4103]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#13046] / [i915#5354]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#14544]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html - shard-dg1: NOTRUN -> [SKIP][148] +23 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-15/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#9809]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#9067]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#3804]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3804]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#13749]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-mst: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#13748]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#8812]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#8812]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-19/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#3840]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#3840]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#2065]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3637] / [i915#9934]) +6 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#9934]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#3637] / [i915#9934]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#9934]) +7 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-nonexisting-fb: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3637] / [i915#9934]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-8/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#9934]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-6/igt@kms_flip@2x-plain-flip-fb-recreate.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#9934]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-14/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@dpms-off-confusion-interruptible: - shard-rkl: [PASS][167] -> [ABORT][168] ([i915#15929]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-4/igt@kms_flip@dpms-off-confusion-interruptible.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_flip@dpms-off-confusion-interruptible.html * igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1: - shard-rkl: NOTRUN -> [ABORT][169] ([i915#15929]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html * igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][170] ([i915#15929]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_flip@dpms-off-confusion-interruptible@b-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank: - shard-rkl: [PASS][171] -> [FAIL][172] ([i915#13027]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-2/igt@kms_flip@flip-vs-expired-vblank.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][173] ([i915#13027]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#15643]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#15643]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#15643]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][177] ([i915#15643]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#15643]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#15643]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#15643] / [i915#5190]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#15990] / [i915#8708]) +9 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#15990] / [i915#8708]) +12 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][183] +47 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-dg1: [PASS][184] -> [DMESG-WARN][185] ([i915#4391] / [i915#4423]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#15989]) +5 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-14/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-rte: - shard-rkl: [PASS][187] -> [SKIP][188] ([i915#15989]) +4 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-glk: [PASS][189] -> [SKIP][190] +6 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][191] +92 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][192] +90 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-blt: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#15989]) +7 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-blt.html - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#15989]) +6 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#15104] / [i915#15990]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#15104] / [i915#15990]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#15102]) +15 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#1825]) +10 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#15990] / [i915#8708]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#14544] / [i915#15102] / [i915#3023]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#5439]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#5439]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#15990]) +6 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#15990]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#15102]) +9 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#15102]) +24 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-glk10: NOTRUN -> [SKIP][207] +46 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#15102]) +26 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary.html - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#15989]) +8 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#15102]) +23 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#15989]) +20 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#15989]) +14 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-move: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#15991]) +11 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-6/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#15990]) +5 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-7/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][215] ([i915#16056]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk10/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#15102] / [i915#3023]) +14 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#15991] / [i915#1825]) +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#15991] / [i915#5354]) +7 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-render: - shard-glk11: NOTRUN -> [SKIP][219] +117 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk11/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#15991]) +19 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-5/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_hdr@bpc-switch: - shard-rkl: [PASS][221] -> [SKIP][222] ([i915#3555] / [i915#8228]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_hdr@bpc-switch.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-3/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-3/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#15459]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#15458]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#15458]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#15458]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][230] ([i915#15458]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][231] ([i915#15458]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#15458]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-13/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk10: NOTRUN -> [INCOMPLETE][233] ([i915#12756] / [i915#13409] / [i915#13476]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk10: NOTRUN -> [INCOMPLETE][234] ([i915#13409] / [i915#13476]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#15709]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-14/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#15709]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html - shard-dg2: NOTRUN -> [SKIP][237] ([i915#15709]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#15709]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#15709]) +4 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#15709]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#15608]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-19/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#15608]) +5 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#15608]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][244] ([i915#12178]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][245] ([i915#7862]) +1 other test fail [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][246] ([i915#10647] / [i915#12177]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk3/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][247] ([i915#10647]) +1 other test fail [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8821]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-4/igt@kms_plane_lowres@tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][249] ([i915#3555]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-8/igt@kms_plane_lowres@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][250] ([i915#3555]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-13/igt@kms_plane_lowres@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][251] ([i915#3555]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-4/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#8821]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-x: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#13958]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-x.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#13958]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-19/igt@kms_plane_multiple@2x-tiling-x.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#13958]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-5/igt@kms_plane_multiple@2x-tiling-x.html - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#13958]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@tiling-4: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#14259]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-4/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#6953]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#15329]) +3 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#15329] / [i915#6953]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#15329]) +8 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#12343] / [i915#5354]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-5/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#12343] / [i915#9812]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#12343]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@kms_pm_backlight@brightness-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][265] ([i915#12343]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-8/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#12343] / [i915#5354]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#12343] / [i915#5354]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-14/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#15739]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#3828]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html - shard-tglu: NOTRUN -> [SKIP][270] ([i915#3828]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#15073]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][272] ([i915#14544] / [i915#15073]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][273] -> [SKIP][274] ([i915#15073]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-rkl: [PASS][275] -> [SKIP][276] ([i915#15073]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#15073]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [PASS][278] -> [SKIP][279] ([i915#15073]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@pm-caching: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#4077]) +5 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-18/igt@kms_pm_rpm@pm-caching.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: NOTRUN -> [INCOMPLETE][281] ([i915#14419]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-7/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#6524] / [i915#6805]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-5/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-glk10: NOTRUN -> [SKIP][283] ([i915#11520]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][284] ([i915#11520]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-snb7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#11520]) +6 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][286] ([i915#11520]) +4 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][287] ([i915#11520]) +10 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk8/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#11520]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#11520]) +4 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#11520]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-8/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html - shard-dg1: NOTRUN -> [SKIP][291] ([i915#11520]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-12/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#11520] / [i915#14544]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-sprite-render: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#1072] / [i915#9732]) +6 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-13/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#9732]) +7 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#9688]) +6 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-5/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#9732]) +17 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-2/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#1072] / [i915#9732]) +15 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-primary-blt: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +8 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-3/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@pr-sprite-blt: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#1072] / [i915#14544] / [i915#9732]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#15949]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][301] ([i915#15949]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk10: NOTRUN -> [INCOMPLETE][302] ([i915#15500]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#5289]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#5190]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#5289]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#5289]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#12755] / [i915#15867]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_selftest@drm_framebuffer: - shard-glk11: NOTRUN -> [ABORT][308] ([i915#13179]) +1 other test abort [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk11/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#3555]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][310] ([i915#10959]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#8623]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-dg1: [PASS][312] -> [DMESG-WARN][313] ([i915#4423]) +2 other tests dmesg-warn [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg1-16/igt@kms_vblank@ts-continuation-dpms-suspend.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-15/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][314] ([i915#12276]) +1 other test incomplete [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk3/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@lobf: - shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#11920]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#9906]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][317] +161 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-snb7/igt@perf_pmu@busy-accuracy-98.html * igt@perf_pmu@busy-accuracy-98@rcs0: - shard-tglu: NOTRUN -> [FAIL][318] ([i915#4349]) +1 other test fail [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-3/igt@perf_pmu@busy-accuracy-98@rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][319] ([i915#4349]) +4 other tests fail [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@render-node-busy-idle: - shard-mtlp: [PASS][320] -> [FAIL][321] ([i915#4349]) +4 other tests fail [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-3/igt@perf_pmu@render-node-busy-idle.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#3708] / [i915#4077]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-2/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][323] ([i915#3708] / [i915#4077]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-7/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][324] ([i915#3708] / [i915#4077]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-13/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#3291] / [i915#3708]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-4/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#3708]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-6/igt@prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][327] ([i915#3708]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-17/igt@prime_vgem@fence-read-hang.html - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#3708]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#9917]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7: - shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#16066]) +9 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7.html #### Possible fixes #### * igt@drm_read@empty-block: - shard-dg1: [DMESG-WARN][331] ([i915#4423]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg1-13/igt@drm_read@empty-block.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-16/igt@drm_read@empty-block.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [INCOMPLETE][333] ([i915#13390]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@gem_eio@in-flight-suspend.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@gem_eio@in-flight-suspend.html * igt@i915_selftest@live: - shard-tglu: [DMESG-FAIL][335] -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-tglu-8/igt@i915_selftest@live.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-2/igt@i915_selftest@live.html - shard-mtlp: [DMESG-FAIL][337] ([i915#12061] / [i915#15560]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-mtlp-3/igt@i915_selftest@live.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@i915_selftest@live.html * igt@i915_selftest@live@gem_contexts: - shard-tglu: [DMESG-FAIL][339] ([i915#16077]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-tglu-8/igt@i915_selftest@live@gem_contexts.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-2/igt@i915_selftest@live@gem_contexts.html - shard-mtlp: [DMESG-FAIL][341] ([i915#16077]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-mtlp-3/igt@i915_selftest@live@gem_contexts.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@i915_selftest@live@gem_contexts.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][343] ([i915#12061]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-mtlp-3/igt@i915_selftest@live@workarounds.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@fence-restore-untiled: - shard-snb: [ABORT][345] ([i915#15840]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-snb5/igt@i915_suspend@fence-restore-untiled.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-snb7/igt@i915_suspend@fence-restore-untiled.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][347] ([i915#15733] / [i915#5138]) -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][349] ([i915#14694] / [i915#15582]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-tglu: [FAIL][351] ([i915#13566]) -> [PASS][352] +5 other tests pass [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-128x42.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2: - shard-rkl: [FAIL][353] ([i915#13566]) -> [PASS][354] +2 other tests pass [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-rkl: [FAIL][355] ([i915#13027]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html - shard-dg1: [FAIL][357] ([i915#13027]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg1-16/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-13/igt@kms_flip@flip-vs-expired-vblank-interruptible.html - shard-tglu: [FAIL][359] ([i915#13027]) -> [PASS][360] +1 other test pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-tglu-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [INCOMPLETE][361] ([i915#10056]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff: - shard-rkl: [SKIP][363] ([i915#15989]) -> [PASS][364] +4 other tests pass [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@hdr-rgb565-draw-pwrite: - shard-glk: [SKIP][365] -> [PASS][366] +7 other tests pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-glk1/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-pwrite.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk8/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-pwrite.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][367] ([i915#13030]) -> [PASS][368] [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][369] ([i915#15073]) -> [PASS][370] +3 other tests pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][371] ([i915#15073]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@perf_pmu@busy-idle: - shard-mtlp: [FAIL][373] ([i915#4349]) -> [PASS][374] +4 other tests pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-mtlp-6/igt@perf_pmu@busy-idle.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-2/igt@perf_pmu@busy-idle.html #### Warnings #### * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: [SKIP][375] ([i915#9323]) -> [SKIP][376] ([i915#14544] / [i915#9323]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: [SKIP][377] ([i915#13008] / [i915#14544]) -> [SKIP][378] ([i915#13008]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: [SKIP][379] ([i915#14544] / [i915#6335]) -> [SKIP][380] ([i915#6335]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_exec_big@single: - shard-tglu: [FAIL][381] ([i915#15816]) -> [FAIL][382] ([i915#15944]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-tglu-8/igt@gem_exec_big@single.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-3/igt@gem_exec_big@single.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-rkl: [SKIP][383] ([i915#3281]) -> [SKIP][384] ([i915#14544] / [i915#3281]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: [SKIP][385] ([i915#4613]) -> [SKIP][386] ([i915#14544] / [i915#4613]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-7/igt@gem_lmem_swapping@parallel-multi.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_media_vme: - shard-rkl: [SKIP][387] ([i915#284]) -> [SKIP][388] ([i915#14544] / [i915#284]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-4/igt@gem_media_vme.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@gem_media_vme.html * igt@gem_pread@exhaustion: - shard-rkl: [SKIP][389] ([i915#3282]) -> [SKIP][390] ([i915#14544] / [i915#3282]) +1 other test skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-5/igt@gem_pread@exhaustion.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@gem_pread@exhaustion.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: [SKIP][391] ([i915#14544] / [i915#3282]) -> [SKIP][392] ([i915#3282]) +4 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html * igt@gem_userptr_blits@access-control: - shard-rkl: [SKIP][393] ([i915#3297]) -> [SKIP][394] ([i915#14544] / [i915#3297]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-3/igt@gem_userptr_blits@access-control.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: [SKIP][395] ([i915#14544] / [i915#3297]) -> [SKIP][396] ([i915#3297]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@gem_userptr_blits@coherency-unsync.html * igt@gen9_exec_parse@batch-without-end: - shard-rkl: [SKIP][397] ([i915#14544] / [i915#2527]) -> [SKIP][398] ([i915#2527]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@gen9_exec_parse@batch-without-end.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-rkl: [SKIP][399] ([i915#2527]) -> [SKIP][400] ([i915#14544] / [i915#2527]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-3/igt@gen9_exec_parse@cmd-crossing-page.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: [SKIP][401] ([i915#6590]) -> [SKIP][402] ([i915#14544] / [i915#6590]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_sseu@full-enable: - shard-rkl: [SKIP][403] ([i915#4387]) -> [SKIP][404] ([i915#14544] / [i915#4387]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-8/igt@i915_pm_sseu@full-enable.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-unsupported: - shard-rkl: [SKIP][405] ([i915#14544] / [i915#16079]) -> [SKIP][406] ([i915#16079]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@i915_query@query-topology-unsupported.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-3/igt@i915_query@query-topology-unsupported.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: [SKIP][407] ([i915#14544] / [i915#5286]) -> [SKIP][408] ([i915#5286]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][409] ([i915#14098] / [i915#6095]) -> [SKIP][410] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][411] ([i915#6095]) -> [SKIP][412] ([i915#14544] / [i915#6095]) +1 other test skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][413] ([i915#14544] / [i915#6095]) -> [SKIP][414] ([i915#6095]) +7 other tests skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-rkl: [SKIP][415] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][416] ([i915#14098] / [i915#6095]) +10 other tests skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk: [INCOMPLETE][417] ([i915#14694] / [i915#15582]) -> [INCOMPLETE][418] ([i915#15582]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-rkl: [SKIP][419] ([i915#11151] / [i915#7828]) -> [SKIP][420] ([i915#11151] / [i915#14544] / [i915#7828]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-2/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: [SKIP][421] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][422] ([i915#11151] / [i915#7828]) +1 other test skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_color@deep-color: - shard-dg1: [SKIP][423] ([i915#12655] / [i915#3555]) -> [SKIP][424] ([i915#12655] / [i915#3555] / [i915#4423]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg1-17/igt@kms_color@deep-color.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-16/igt@kms_color@deep-color.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-rkl: [SKIP][425] ([i915#14544] / [i915#3555]) -> [SKIP][426] ([i915#3555]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: [SKIP][427] ([i915#13049]) -> [SKIP][428] ([i915#13049] / [i915#14544]) +1 other test skip [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x512.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg1: [SKIP][429] ([i915#13049] / [i915#4423]) -> [SKIP][430] ([i915#13049]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-19/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: [SKIP][431] -> [SKIP][432] ([i915#14544]) +21 other tests skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: [SKIP][433] ([i915#14544] / [i915#4103]) -> [SKIP][434] ([i915#4103]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][435] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][436] ([i915#3555] / [i915#3840]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_dsc@dsc-basic.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: [SKIP][437] ([i915#3840] / [i915#9053]) -> [SKIP][438] ([i915#14544] / [i915#3840] / [i915#9053]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: [SKIP][439] ([i915#14544] / [i915#9934]) -> [SKIP][440] ([i915#9934]) +3 other tests skip [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][441] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][442] ([i915#12745] / [i915#4839]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html - shard-rkl: [SKIP][443] ([i915#9934]) -> [SKIP][444] ([i915#14544] / [i915#9934]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][445] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][446] ([i915#12745]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-rkl: [SKIP][447] ([i915#15643]) -> [SKIP][448] ([i915#14544] / [i915#15643]) +1 other test skip [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-rkl: [SKIP][449] ([i915#14544] / [i915#15643]) -> [SKIP][450] ([i915#15643]) [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg1: [SKIP][451] ([i915#15989] / [i915#4423]) -> [SKIP][452] ([i915#15989]) [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-17/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-suspend: - shard-glk: [INCOMPLETE][453] ([i915#16056]) -> [SKIP][454] [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-suspend.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-glk3/igt@kms_frontbuffer_tracking@fbchdr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][455] ([i915#10433] / [i915#15102]) -> [SKIP][456] ([i915#15102]) +3 other tests skip [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: [SKIP][457] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][458] ([i915#15102] / [i915#3023]) +7 other tests skip [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][459] ([i915#1825]) -> [SKIP][460] ([i915#14544] / [i915#1825]) [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][461] ([i915#14544] / [i915#15102]) -> [SKIP][462] ([i915#15102]) +11 other tests skip [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-mmap-gtt: - shard-rkl: [SKIP][463] ([i915#15102]) -> [SKIP][464] ([i915#14544] / [i915#15102]) +4 other tests skip [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-mmap-gtt.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: [SKIP][465] ([i915#14544]) -> [SKIP][466] +21 other tests skip [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-pwrite.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][467] ([i915#15102]) -> [SKIP][468] ([i915#10433] / [i915#15102]) [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg1: [SKIP][469] ([i915#15990] / [i915#8708]) -> [SKIP][470] ([i915#15990] / [i915#4423] / [i915#8708]) +1 other test skip [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen: - shard-rkl: [SKIP][471] ([i915#15102] / [i915#3023]) -> [SKIP][472] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-rkl: [SKIP][473] ([i915#14544] / [i915#1825]) -> [SKIP][474] ([i915#1825]) [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_hdr@bpc-switch: - shard-dg2: [SKIP][475] ([i915#16012] / [i915#3555] / [i915#8228]) -> [SKIP][476] ([i915#3555] / [i915#8228]) +3 other tests skip [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg2-1/igt@kms_hdr@bpc-switch.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-1/igt@kms_hdr@bpc-switch.html - shard-dg1: [SKIP][477] ([i915#16012] / [i915#3555] / [i915#8228]) -> [SKIP][478] ([i915#3555] / [i915#8228]) +3 other tests skip [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg1-18/igt@kms_hdr@bpc-switch.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-16/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-snb: [FAIL][479] ([i915#16018]) -> [SKIP][480] +2 other tests skip [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-snb6/igt@kms_hdr@bpc-switch-dpms.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-snb5/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu: [SKIP][481] ([i915#16012] / [i915#3555] / [i915#8228]) -> [SKIP][482] ([i915#3555] / [i915#8228]) +2 other tests skip [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-tglu-2/igt@kms_hdr@bpc-switch-dpms.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][483] ([i915#16011]) -> [SKIP][484] ([i915#12713]) [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-mtlp-3/igt@kms_hdr@brightness-with-hdr.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-2/igt@kms_hdr@brightness-with-hdr.html - shard-dg2: [SKIP][485] ([i915#16011]) -> [SKIP][486] ([i915#12713]) [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg2-6/igt@kms_hdr@brightness-with-hdr.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-7/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: [SKIP][487] ([i915#16011]) -> [SKIP][488] ([i915#12713]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-7/igt@kms_hdr@brightness-with-hdr.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: [SKIP][489] ([i915#16011]) -> [SKIP][490] ([i915#1187] / [i915#12713]) [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg1-17/igt@kms_hdr@brightness-with-hdr.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: [SKIP][491] ([i915#16011]) -> [SKIP][492] ([i915#12713]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-rkl: [SKIP][493] ([i915#16012] / [i915#3555] / [i915#8228]) -> [SKIP][494] ([i915#3555] / [i915#8228]) [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-5/igt@kms_hdr@invalid-hdr.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-4/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][495] ([i915#16011] / [i915#3555] / [i915#8228]) -> [SKIP][496] ([i915#3555] / [i915#8228]) +2 other tests skip [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: [SKIP][497] ([i915#16011] / [i915#3555] / [i915#8228]) -> [SKIP][498] ([i915#12713] / [i915#3555] / [i915#8228]) +3 other tests skip [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-mtlp-3/igt@kms_hdr@static-toggle-dpms.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-mtlp-7/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][499] ([i915#16011] / [i915#3555] / [i915#8228]) -> [SKIP][500] ([i915#3555] / [i915#8228]) [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: [SKIP][501] ([i915#16011] / [i915#3555] / [i915#8228]) -> [SKIP][502] ([i915#3555] / [i915#8228]) +3 other tests skip [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg1-16/igt@kms_hdr@static-toggle-suspend.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-12/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: [SKIP][503] ([i915#16011] / [i915#3555] / [i915#8228]) -> [SKIP][504] ([i915#3555] / [i915#8228]) +3 other tests skip [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-tglu-5/igt@kms_hdr@static-toggle-suspend.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-tglu-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][505] ([i915#6301]) -> [SKIP][506] ([i915#14544] / [i915#6301]) [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-rkl: [SKIP][507] ([i915#15709]) -> [SKIP][508] ([i915#14544] / [i915#15709]) +1 other test skip [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-rkl: [SKIP][509] ([i915#14544] / [i915#15709]) -> [SKIP][510] ([i915#15709]) [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-8/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: [SKIP][511] ([i915#14544] / [i915#15948]) -> [SKIP][512] ([i915#15948]) [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: [SKIP][513] ([i915#9340]) -> [SKIP][514] ([i915#3828]) [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: [SKIP][515] ([i915#14544] / [i915#8430]) -> [SKIP][516] ([i915#8430]) [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][517] ([i915#11520] / [i915#14544]) -> [SKIP][518] ([i915#11520]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-rkl: [SKIP][519] ([i915#11520]) -> [SKIP][520] ([i915#11520] / [i915#14544]) [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-5/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: [SKIP][521] ([i915#1072] / [i915#9732]) -> [SKIP][522] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-8/igt@kms_psr@psr2-cursor-mmap-gtt.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-primary-render: - shard-rkl: [SKIP][523] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][524] ([i915#1072] / [i915#9732]) +5 other tests skip [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@kms_psr@psr2-primary-render.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-3/igt@kms_psr@psr2-primary-render.html * igt@kms_setmode@clone-exclusive-crtc: - shard-rkl: [SKIP][525] ([i915#3555]) -> [SKIP][526] ([i915#14544] / [i915#3555]) [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-5/igt@kms_setmode@clone-exclusive-crtc.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html * igt@prime_vgem@basic-fence-read: - shard-rkl: [SKIP][527] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][528] ([i915#3291] / [i915#3708]) [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-6/igt@prime_vgem@basic-fence-read.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-2/igt@prime_vgem@basic-fence-read.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: [SKIP][529] ([i915#9917]) -> [SKIP][530] ([i915#14544] / [i915#9917]) [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18513/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html [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#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [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#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [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#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [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#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [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#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#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792 [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#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871 [i915#15929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15929 [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#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011 [i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012 [i915#16017]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16017 [i915#16018]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16018 [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16077 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [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#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [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#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [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#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [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#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [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#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [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#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [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_8918 -> IGTPW_15195 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18513: 94e4b8dc66d191ccb11a59ae2c065b5b6f3565d8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15195: 15195 IGT_8918: 8918 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15195/index.html [-- Attachment #2: Type: text/html, Size: 179743 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2026-05-21 17:13 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-05-18 4:03 [PATCH i-g-t 0/3] Improve max-bpc query error handling Pranay Samala 2026-05-18 4:03 ` [PATCH i-g-t 1/3] Revert "tests/kms_hdr: Move capability checks inside dynamic subtests" Pranay Samala 2026-05-20 3:04 ` Karthik B S 2026-05-18 4:03 ` [PATCH i-g-t 2/3] lib/igt_kms: make max bpc query return status Pranay Samala 2026-05-20 4:09 ` Karthik B S 2026-05-18 4:03 ` [PATCH i-g-t 3/3] tests/: Handle max bpc read failures explicitly Pranay Samala 2026-05-20 5:04 ` Karthik B S 2026-05-21 15:54 ` vitaly prosyak 2026-05-21 17:12 ` Alex Hung 2026-05-18 22:42 ` ✓ Xe.CI.BAT: success for Improve max-bpc query error handling Patchwork 2026-05-18 22:55 ` ✓ i915.CI.BAT: " Patchwork 2026-05-19 4:56 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-05-19 17:55 ` ✓ i915.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox