* [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification
@ 2025-02-13 11:08 Swati Sharma
2025-02-13 11:08 ` [PATCH i-g-t 1/5] lib/igt_kms: Add highres() and lowres() func Swati Sharma
` (8 more replies)
0 siblings, 9 replies; 15+ messages in thread
From: Swati Sharma @ 2025-02-13 11:08 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma
Based on the review comments received, add highres and lowres
functions to lib and made corresponding changes in the lib.
On top, broken initial patches into smaller patches to better
review.
Swati Sharma (5):
lib/igt_kms: Add highres() and lowres() func
tests/intel/kms_cdclk: Add conditions to filter valid outputs
tests/intel/kms_cdclk: Introduce set_mode()
lib/igt_kms: Add igt_get_max_cdclk()
tests/intel/kms_cdclk: Use igt_get_max_cdclk()
lib/igt_kms.c | 83 +++++++++++++++++++
lib/igt_kms.h | 3 +
tests/intel/kms_cdclk.c | 166 +++++++++++++++++---------------------
tests/intel/kms_dsc.c | 14 +---
tests/kms_display_modes.c | 14 +---
5 files changed, 162 insertions(+), 118 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH i-g-t 1/5] lib/igt_kms: Add highres() and lowres() func 2025-02-13 11:08 [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma @ 2025-02-13 11:08 ` Swati Sharma 2025-02-17 8:12 ` Nautiyal, Ankit K 2025-02-13 11:08 ` [PATCH i-g-t 2/5] tests/intel/kms_cdclk: Add conditions to filter valid outputs Swati Sharma ` (7 subsequent siblings) 8 siblings, 1 reply; 15+ messages in thread From: Swati Sharma @ 2025-02-13 11:08 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma, Santhosh Reddy Guddati Add functions to return highest and lowest modes in lib, update relevant binaries. Addresses two key issues: 1. Remove strict 4K selection and choose the highest mode instead. Previously, the code always selected 4K, even if an 8K mode was available. Update this logic to align with cdclk transition requirements for resolutions above 4K. 2. Optimize mode selection by sorting modes once instead of iterating through the list multiple times, improving efficiency. Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_kms.c | 34 +++++++++++++++++ lib/igt_kms.h | 2 + tests/intel/kms_cdclk.c | 77 +++++++++++++++++---------------------- tests/intel/kms_dsc.c | 14 +------ tests/kms_display_modes.c | 14 +------ 5 files changed, 72 insertions(+), 69 deletions(-) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 90f44b4d3..8220cc0eb 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -4845,6 +4845,40 @@ drmModeModeInfo *igt_output_get_mode(igt_output_t *output) return &output->config.default_mode; } +/** + * igt_output_get_highres_mode: + * @output: Target output + * + * Returns: A #drmModeModeInfo struct representing the highest mode, NULL otherwise. + */ +drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output) +{ + drmModeConnector *connector = output->config.connector; + drmModeModeInfo *highest_mode = NULL; + + igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); + highest_mode = &connector->modes[0]; + + return highest_mode; +} + +/** + * igt_output_get_lowres_mode: + * @output: Target output + * + * Returns: A #drmModeModeInfo struct representing the lowest mode, NULL otherwise. + */ +drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output) +{ + drmModeConnector *connector = output->config.connector; + drmModeModeInfo *lowest_mode = NULL; + + igt_sort_connector_modes(connector, sort_drm_modes_by_res_asc); + lowest_mode = &connector->modes[0]; + + return lowest_mode; +} + /** * igt_output_override_mode: * @output: Output of which the mode will be overridden diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 8810123fb..5cf0b89d3 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -543,6 +543,8 @@ void igt_display_require_output_on_pipe(igt_display_t *display, enum pipe pipe); const char *igt_output_name(igt_output_t *output); drmModeModeInfo *igt_output_get_mode(igt_output_t *output); +drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output); +drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output); void igt_output_override_mode(igt_output_t *output, const drmModeModeInfo *mode); int igt_output_preferred_vrefresh(igt_output_t *output); void igt_output_set_pipe(igt_output_t *output, enum pipe pipe); diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c index 382b3e9d1..e78d22e1d 100644 --- a/tests/intel/kms_cdclk.c +++ b/tests/intel/kms_cdclk.c @@ -110,24 +110,6 @@ static __u64 get_mode_data_rate(drmModeModeInfo *mode) return data_rate; } -static drmModeModeInfo *get_highres_mode(igt_output_t *output) -{ - drmModeModeInfo *highest_mode = NULL; - drmModeConnector *connector = output->config.connector; - int j; - - for (j = 0; j < connector->count_modes; j++) { - if (connector->modes[j].vdisplay == VDISPLAY_4K && - connector->modes[j].hdisplay == HDISPLAY_4K && - connector->modes[j].vrefresh == VREFRESH) { - highest_mode = &connector->modes[j]; - break; - } - } - - return highest_mode; -} - static drmModeModeInfo *get_lowres_mode(igt_output_t *output) { drmModeModeInfo *lowest_mode = NULL; @@ -172,7 +154,7 @@ static void test_plane_scaling(data_t *data, enum pipe pipe, igt_output_t *outpu int cdclk_ref, cdclk_new; struct igt_fb fb; igt_plane_t *primary; - drmModeModeInfo *mode; + drmModeModeInfo mode; int scaling = 50; int ret; bool test_complete = false; @@ -182,14 +164,17 @@ static void test_plane_scaling(data_t *data, enum pipe pipe, igt_output_t *outpu igt_display_reset(display); igt_output_set_pipe(output, pipe); - mode = get_highres_mode(output); - igt_require(mode != NULL); - igt_output_override_mode(output, mode); + mode = *igt_output_get_highres_mode(output); + igt_require_f(mode.hdisplay >= HDISPLAY_4K && mode.vdisplay >= VDISPLAY_4K && + mode.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", + igt_output_name(output)); + + igt_output_override_mode(output, &mode); primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); igt_create_color_pattern_fb(display->drm_fd, - mode->hdisplay, mode->vdisplay, + mode.hdisplay, mode.vdisplay, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, 0.0, 0.0, 0.0, &fb); @@ -225,18 +210,20 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out int cdclk_ref, cdclk_new; struct igt_fb fb; igt_plane_t *primary; - drmModeModeInfo *mode_hi, *mode_lo, *mode; + drmModeModeInfo mode_hi, mode_lo, *mode; do_cleanup_display(display); igt_display_reset(display); igt_output_set_pipe(output, pipe); mode = igt_output_get_mode(output); - mode_lo = get_lowres_mode(output); - mode_hi = get_highres_mode(output); - igt_require(mode_hi != NULL); + mode_lo = *get_lowres_mode(output); + mode_hi = *igt_output_get_highres_mode(output); + igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && + mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", + igt_output_name(output)); - igt_skip_on_f(mode_hi->hdisplay == mode_lo->hdisplay && mode_hi->vdisplay == mode_lo->vdisplay, + igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && mode_hi.vdisplay == mode_lo.vdisplay, "Highest and lowest mode resolutions are same; no transition\n"); primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); @@ -248,13 +235,13 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out 0.0, 0.0, 0.0, &fb); /* switch to lower resolution */ - igt_output_override_mode(output, mode_lo); + igt_output_override_mode(output, &mode_lo); igt_plane_set_fb(primary, &fb); igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); cdclk_ref = get_current_cdclk_freq(debugfs_fd); /* switch to higher resolution */ - igt_output_override_mode(output, mode_hi); + igt_output_override_mode(output, &mode_hi); igt_plane_set_fb(primary, &fb); igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); cdclk_new = get_current_cdclk_freq(debugfs_fd); @@ -273,7 +260,7 @@ static void test_mode_transition_on_all_outputs(data_t *data) { igt_display_t *display = &data->display; int debugfs_fd = data->debugfs_fd; - drmModeModeInfo *mode, *mode_hi, *mode_lo; + drmModeModeInfo *mode, mode_hi, mode_lo; igt_output_t *output; int valid_outputs = 0; int cdclk_ref, cdclk_new; @@ -297,11 +284,13 @@ static void test_mode_transition_on_all_outputs(data_t *data) width = max(width, mode->hdisplay); height = max(height, mode->vdisplay); - mode_hi = get_highres_mode(output); - igt_require(mode_hi != NULL); + mode_hi = *igt_output_get_highres_mode(output); + igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && + mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", + igt_output_name(output)); igt_output_set_pipe(output, i); - igt_output_override_mode(output, mode_hi); + igt_output_override_mode(output, &mode_hi); i++; } igt_require(intel_pipe_output_combo_valid(display)); @@ -320,12 +309,12 @@ static void test_mode_transition_on_all_outputs(data_t *data) mode = igt_output_get_mode(output); igt_assert(mode); - mode_lo = get_lowres_mode(output); + mode_lo = *get_lowres_mode(output); - igt_output_override_mode(output, mode_lo); + igt_output_override_mode(output, &mode_lo); igt_plane_set_fb(plane, &fb); - igt_fb_set_size(&fb, plane, mode_lo->hdisplay, mode_lo->vdisplay); - igt_plane_set_size(plane, mode_lo->hdisplay, mode_lo->vdisplay); + igt_fb_set_size(&fb, plane, mode_lo.hdisplay, mode_lo.vdisplay); + igt_plane_set_size(plane, mode_lo.hdisplay, mode_lo.vdisplay); i++; } @@ -343,13 +332,15 @@ static void test_mode_transition_on_all_outputs(data_t *data) mode = igt_output_get_mode(output); igt_assert(mode); - mode_hi = get_highres_mode(output); - igt_require(mode_hi != NULL); + mode_hi = *igt_output_get_highres_mode(output); + igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && + mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", + igt_output_name(output)); - igt_output_override_mode(output, mode_hi); + igt_output_override_mode(output, &mode_hi); igt_plane_set_fb(plane, &fb); - igt_fb_set_size(&fb, plane, mode_hi->hdisplay, mode_hi->vdisplay); - igt_plane_set_size(plane, mode_hi->hdisplay, mode_hi->vdisplay); + igt_fb_set_size(&fb, plane, mode_hi.hdisplay, mode_hi.vdisplay); + igt_plane_set_size(plane, mode_hi.hdisplay, mode_hi.vdisplay); j++; } diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index 5508e7a9e..1392e1cd4 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -94,18 +94,6 @@ static inline void manual(const char *expected) igt_debug_interactive_mode_check("all", expected); } -static drmModeModeInfo *get_highres_mode(igt_output_t *output) -{ - drmModeConnector *connector = output->config.connector; - drmModeModeInfo *highest_mode = NULL; - - igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); - - highest_mode = &connector->modes[0]; - - return highest_mode; -} - static drmModeModeInfo *get_next_mode(igt_output_t *output, int index) { drmModeConnector *connector = output->config.connector; @@ -184,7 +172,7 @@ static void update_display(data_t *data, uint32_t test_type) igt_skip_on(!igt_plane_has_format_mod(primary, data->plane_format, DRM_FORMAT_MOD_LINEAR)); - mode = get_highres_mode(output); + mode = igt_output_get_highres_mode(output); do { if (data->output_format != DSC_FORMAT_RGB && index > 0) diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c index e41c60cc0..6ea44944a 100644 --- a/tests/kms_display_modes.c +++ b/tests/kms_display_modes.c @@ -60,18 +60,6 @@ typedef struct { int n_pipes; } data_t; -/* Get higher mode supported by panel. */ -static drmModeModeInfo *get_highres_mode(igt_output_t *output) -{ - drmModeConnector *connector = output->config.connector; - drmModeModeInfo *highest_mode = NULL; - - igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); - highest_mode = &connector->modes[0]; - - return highest_mode; -} - /* Get the 4k or less then 4k mode of connected panel. */ static drmModeModeInfo *get_mode(igt_output_t *output) { @@ -344,7 +332,7 @@ igt_main igt_require_f(dp_mst_outputs > 1, "MST not found more then one\n"); memcpy(&data.mode_mst[0], get_mode(data.mst_output[0]), sizeof(drmModeModeInfo)); - memcpy(&data.mode_mst[1], get_highres_mode(data.mst_output[1]), + memcpy(&data.mode_mst[1], igt_output_get_highres_mode(data.mst_output[1]), sizeof(drmModeModeInfo)); igt_require_f((data.mode_mst[1].hdisplay >= HDISPLAY_4K && data.mode_mst[1].vdisplay >= VDISPLAY_4K), "4k panel not found\n"); -- 2.25.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 1/5] lib/igt_kms: Add highres() and lowres() func 2025-02-13 11:08 ` [PATCH i-g-t 1/5] lib/igt_kms: Add highres() and lowres() func Swati Sharma @ 2025-02-17 8:12 ` Nautiyal, Ankit K 0 siblings, 0 replies; 15+ messages in thread From: Nautiyal, Ankit K @ 2025-02-17 8:12 UTC (permalink / raw) To: Swati Sharma, igt-dev; +Cc: Santhosh Reddy Guddati On 2/13/2025 4:38 PM, Swati Sharma wrote: > Add functions to return highest and lowest modes in lib, update > relevant binaries. > > Addresses two key issues: > > 1. Remove strict 4K selection and choose the highest mode instead. > Previously, the code always selected 4K, even if an 8K mode was > available. Update this logic to align with cdclk transition requirements > for resolutions above 4K. > > 2. Optimize mode selection by sorting modes once instead of iterating > through the list multiple times, improving efficiency. > > Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > lib/igt_kms.c | 34 +++++++++++++++++ > lib/igt_kms.h | 2 + > tests/intel/kms_cdclk.c | 77 +++++++++++++++++---------------------- > tests/intel/kms_dsc.c | 14 +------ > tests/kms_display_modes.c | 14 +------ > 5 files changed, 72 insertions(+), 69 deletions(-) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 90f44b4d3..8220cc0eb 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -4845,6 +4845,40 @@ drmModeModeInfo *igt_output_get_mode(igt_output_t *output) > return &output->config.default_mode; > } > > +/** > + * igt_output_get_highres_mode: > + * @output: Target output > + * > + * Returns: A #drmModeModeInfo struct representing the highest mode, NULL otherwise. > + */ > +drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output) > +{ > + drmModeConnector *connector = output->config.connector; > + drmModeModeInfo *highest_mode = NULL; > + > + igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); > + highest_mode = &connector->modes[0]; > + > + return highest_mode; > +} > + > +/** > + * igt_output_get_lowres_mode: > + * @output: Target output > + * > + * Returns: A #drmModeModeInfo struct representing the lowest mode, NULL otherwise. > + */ > +drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output) > +{ > + drmModeConnector *connector = output->config.connector; > + drmModeModeInfo *lowest_mode = NULL; > + > + igt_sort_connector_modes(connector, sort_drm_modes_by_res_asc); > + lowest_mode = &connector->modes[0]; > + > + return lowest_mode; > +} > + > /** > * igt_output_override_mode: > * @output: Output of which the mode will be overridden > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index 8810123fb..5cf0b89d3 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -543,6 +543,8 @@ void igt_display_require_output_on_pipe(igt_display_t *display, enum pipe pipe); > > const char *igt_output_name(igt_output_t *output); > drmModeModeInfo *igt_output_get_mode(igt_output_t *output); > +drmModeModeInfo *igt_output_get_highres_mode(igt_output_t *output); > +drmModeModeInfo *igt_output_get_lowres_mode(igt_output_t *output); > void igt_output_override_mode(igt_output_t *output, const drmModeModeInfo *mode); > int igt_output_preferred_vrefresh(igt_output_t *output); > void igt_output_set_pipe(igt_output_t *output, enum pipe pipe); > diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c > index 382b3e9d1..e78d22e1d 100644 > --- a/tests/intel/kms_cdclk.c > +++ b/tests/intel/kms_cdclk.c > @@ -110,24 +110,6 @@ static __u64 get_mode_data_rate(drmModeModeInfo *mode) > return data_rate; > } > > -static drmModeModeInfo *get_highres_mode(igt_output_t *output) > -{ > - drmModeModeInfo *highest_mode = NULL; > - drmModeConnector *connector = output->config.connector; > - int j; > - > - for (j = 0; j < connector->count_modes; j++) { > - if (connector->modes[j].vdisplay == VDISPLAY_4K && > - connector->modes[j].hdisplay == HDISPLAY_4K && > - connector->modes[j].vrefresh == VREFRESH) { > - highest_mode = &connector->modes[j]; > - break; > - } > - } > - > - return highest_mode; > -} > - > static drmModeModeInfo *get_lowres_mode(igt_output_t *output) > { > drmModeModeInfo *lowest_mode = NULL; > @@ -172,7 +154,7 @@ static void test_plane_scaling(data_t *data, enum pipe pipe, igt_output_t *outpu > int cdclk_ref, cdclk_new; > struct igt_fb fb; > igt_plane_t *primary; > - drmModeModeInfo *mode; > + drmModeModeInfo mode; > int scaling = 50; > int ret; > bool test_complete = false; > @@ -182,14 +164,17 @@ static void test_plane_scaling(data_t *data, enum pipe pipe, igt_output_t *outpu > igt_display_reset(display); > > igt_output_set_pipe(output, pipe); > - mode = get_highres_mode(output); > - igt_require(mode != NULL); > - igt_output_override_mode(output, mode); > + mode = *igt_output_get_highres_mode(output); > + igt_require_f(mode.hdisplay >= HDISPLAY_4K && mode.vdisplay >= VDISPLAY_4K && > + mode.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", > + igt_output_name(output)); > + > + igt_output_override_mode(output, &mode); > > primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > > igt_create_color_pattern_fb(display->drm_fd, > - mode->hdisplay, mode->vdisplay, > + mode.hdisplay, mode.vdisplay, > DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR, > 0.0, 0.0, 0.0, &fb); > @@ -225,18 +210,20 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out > int cdclk_ref, cdclk_new; > struct igt_fb fb; > igt_plane_t *primary; > - drmModeModeInfo *mode_hi, *mode_lo, *mode; > + drmModeModeInfo mode_hi, mode_lo, *mode; > > do_cleanup_display(display); > igt_display_reset(display); > > igt_output_set_pipe(output, pipe); > mode = igt_output_get_mode(output); > - mode_lo = get_lowres_mode(output); > - mode_hi = get_highres_mode(output); > - igt_require(mode_hi != NULL); > + mode_lo = *get_lowres_mode(output); > + mode_hi = *igt_output_get_highres_mode(output); > + igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && > + mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", > + igt_output_name(output)); > > - igt_skip_on_f(mode_hi->hdisplay == mode_lo->hdisplay && mode_hi->vdisplay == mode_lo->vdisplay, > + igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && mode_hi.vdisplay == mode_lo.vdisplay, > "Highest and lowest mode resolutions are same; no transition\n"); > > primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > @@ -248,13 +235,13 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out > 0.0, 0.0, 0.0, &fb); > > /* switch to lower resolution */ > - igt_output_override_mode(output, mode_lo); > + igt_output_override_mode(output, &mode_lo); > igt_plane_set_fb(primary, &fb); > igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > cdclk_ref = get_current_cdclk_freq(debugfs_fd); > > /* switch to higher resolution */ > - igt_output_override_mode(output, mode_hi); > + igt_output_override_mode(output, &mode_hi); > igt_plane_set_fb(primary, &fb); > igt_display_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > cdclk_new = get_current_cdclk_freq(debugfs_fd); > @@ -273,7 +260,7 @@ static void test_mode_transition_on_all_outputs(data_t *data) > { > igt_display_t *display = &data->display; > int debugfs_fd = data->debugfs_fd; > - drmModeModeInfo *mode, *mode_hi, *mode_lo; > + drmModeModeInfo *mode, mode_hi, mode_lo; > igt_output_t *output; > int valid_outputs = 0; > int cdclk_ref, cdclk_new; > @@ -297,11 +284,13 @@ static void test_mode_transition_on_all_outputs(data_t *data) > width = max(width, mode->hdisplay); > height = max(height, mode->vdisplay); > > - mode_hi = get_highres_mode(output); > - igt_require(mode_hi != NULL); > + mode_hi = *igt_output_get_highres_mode(output); > + igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && > + mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", This condition can be a separate function. Also remove fullstop/period at the end of the message. Otherwise looks good to me. Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > + igt_output_name(output)); > > igt_output_set_pipe(output, i); > - igt_output_override_mode(output, mode_hi); > + igt_output_override_mode(output, &mode_hi); > i++; > } > igt_require(intel_pipe_output_combo_valid(display)); > @@ -320,12 +309,12 @@ static void test_mode_transition_on_all_outputs(data_t *data) > mode = igt_output_get_mode(output); > igt_assert(mode); > > - mode_lo = get_lowres_mode(output); > + mode_lo = *get_lowres_mode(output); > > - igt_output_override_mode(output, mode_lo); > + igt_output_override_mode(output, &mode_lo); > igt_plane_set_fb(plane, &fb); > - igt_fb_set_size(&fb, plane, mode_lo->hdisplay, mode_lo->vdisplay); > - igt_plane_set_size(plane, mode_lo->hdisplay, mode_lo->vdisplay); > + igt_fb_set_size(&fb, plane, mode_lo.hdisplay, mode_lo.vdisplay); > + igt_plane_set_size(plane, mode_lo.hdisplay, mode_lo.vdisplay); > i++; > } > > @@ -343,13 +332,15 @@ static void test_mode_transition_on_all_outputs(data_t *data) > mode = igt_output_get_mode(output); > igt_assert(mode); > > - mode_hi = get_highres_mode(output); > - igt_require(mode_hi != NULL); > + mode_hi = *igt_output_get_highres_mode(output); > + igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && > + mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", > + igt_output_name(output)); > > - igt_output_override_mode(output, mode_hi); > + igt_output_override_mode(output, &mode_hi); > igt_plane_set_fb(plane, &fb); > - igt_fb_set_size(&fb, plane, mode_hi->hdisplay, mode_hi->vdisplay); > - igt_plane_set_size(plane, mode_hi->hdisplay, mode_hi->vdisplay); > + igt_fb_set_size(&fb, plane, mode_hi.hdisplay, mode_hi.vdisplay); > + igt_plane_set_size(plane, mode_hi.hdisplay, mode_hi.vdisplay); > j++; > } > > diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c > index 5508e7a9e..1392e1cd4 100644 > --- a/tests/intel/kms_dsc.c > +++ b/tests/intel/kms_dsc.c > @@ -94,18 +94,6 @@ static inline void manual(const char *expected) > igt_debug_interactive_mode_check("all", expected); > } > > -static drmModeModeInfo *get_highres_mode(igt_output_t *output) > -{ > - drmModeConnector *connector = output->config.connector; > - drmModeModeInfo *highest_mode = NULL; > - > - igt_sort_connector_modes(connector, sort_drm_modes_by_clk_dsc); > - > - highest_mode = &connector->modes[0]; > - > - return highest_mode; > -} > - > static drmModeModeInfo *get_next_mode(igt_output_t *output, int index) > { > drmModeConnector *connector = output->config.connector; > @@ -184,7 +172,7 @@ static void update_display(data_t *data, uint32_t test_type) > igt_skip_on(!igt_plane_has_format_mod(primary, data->plane_format, > DRM_FORMAT_MOD_LINEAR)); > > - mode = get_highres_mode(output); > + mode = igt_output_get_highres_mode(output); > > do { > if (data->output_format != DSC_FORMAT_RGB && index > 0) > diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c > index e41c60cc0..6ea44944a 100644 > --- a/tests/kms_display_modes.c > +++ b/tests/kms_display_modes.c > @@ -60,18 +60,6 @@ typedef struct { > int n_pipes; > } data_t; > > -/* Get higher mode supported by panel. */ > -static drmModeModeInfo *get_highres_mode(igt_output_t *output) > -{ > - drmModeConnector *connector = output->config.connector; > - drmModeModeInfo *highest_mode = NULL; > - > - igt_sort_connector_modes(connector, sort_drm_modes_by_res_dsc); > - highest_mode = &connector->modes[0]; > - > - return highest_mode; > -} > - > /* Get the 4k or less then 4k mode of connected panel. */ > static drmModeModeInfo *get_mode(igt_output_t *output) > { > @@ -344,7 +332,7 @@ igt_main > igt_require_f(dp_mst_outputs > 1, "MST not found more then one\n"); > > memcpy(&data.mode_mst[0], get_mode(data.mst_output[0]), sizeof(drmModeModeInfo)); > - memcpy(&data.mode_mst[1], get_highres_mode(data.mst_output[1]), > + memcpy(&data.mode_mst[1], igt_output_get_highres_mode(data.mst_output[1]), > sizeof(drmModeModeInfo)); > igt_require_f((data.mode_mst[1].hdisplay >= HDISPLAY_4K && > data.mode_mst[1].vdisplay >= VDISPLAY_4K), "4k panel not found\n"); ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 2/5] tests/intel/kms_cdclk: Add conditions to filter valid outputs 2025-02-13 11:08 [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma 2025-02-13 11:08 ` [PATCH i-g-t 1/5] lib/igt_kms: Add highres() and lowres() func Swati Sharma @ 2025-02-13 11:08 ` Swati Sharma 2025-02-17 8:17 ` Nautiyal, Ankit K 2025-02-13 11:08 ` [PATCH i-g-t 3/5] tests/intel/kms_cdclk: Introduce set_mode() Swati Sharma ` (6 subsequent siblings) 8 siblings, 1 reply; 15+ messages in thread From: Swati Sharma @ 2025-02-13 11:08 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma Add vrefresh as an additional parameter to check if highest and lowest refresh rates are identical. Skip the test, if highres and lowres are the same, as no cdclk transition will occur. Store highres and lowres of valid outputs in an array for reuse later. v2:-fixed description (Ankit) -highres lowres stored in previous loop (Ankit) -removed comments (Ankit) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_cdclk.c | 50 ++++++++++++++++++++++++++++------------- 1 file changed, 34 insertions(+), 16 deletions(-) diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c index e78d22e1d..75542e21b 100644 --- a/tests/intel/kms_cdclk.c +++ b/tests/intel/kms_cdclk.c @@ -223,7 +223,9 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", igt_output_name(output)); - igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && mode_hi.vdisplay == mode_lo.vdisplay, + igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && + mode_hi.vdisplay == mode_lo.vdisplay && + mode_hi.vrefresh == mode_lo.vrefresh, "Highest and lowest mode resolutions are same; no transition\n"); primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); @@ -261,8 +263,10 @@ static void test_mode_transition_on_all_outputs(data_t *data) igt_display_t *display = &data->display; int debugfs_fd = data->debugfs_fd; drmModeModeInfo *mode, mode_hi, mode_lo; + drmModeModeInfo mode_highres[IGT_MAX_PIPES] = {0}, mode_lowres[IGT_MAX_PIPES] = {0}; + igt_output_t *valid_outputs[IGT_MAX_PIPES] = {NULL}; igt_output_t *output; - int valid_outputs = 0; + int count = 0; int cdclk_ref, cdclk_new; uint16_t width = 0, height = 0; struct igt_fb fb; @@ -273,31 +277,45 @@ static void test_mode_transition_on_all_outputs(data_t *data) do_cleanup_display(display); igt_display_reset(display); - for_each_connected_output(&data->display, output) - valid_outputs++; - - i = 0; for_each_connected_output(display, output) { - mode = igt_output_get_mode(output); + mode_highres[count] = *igt_output_get_highres_mode(output); + igt_require_f(mode_highres[count].hdisplay >= HDISPLAY_4K && mode_highres[count].vdisplay >= VDISPLAY_4K && + mode_highres[count].vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", + igt_output_name(output)); + + mode_lowres[count] = *get_lowres_mode(output); + + if (mode_highres[count].hdisplay == mode_lowres[count].hdisplay && + mode_highres[count].vdisplay == mode_lowres[count].vdisplay && + mode_highres[count].vrefresh == mode_lowres[count].vrefresh) { + igt_info("Highest and lowest mode resolutions are same on output %s; no transition will occur, skipping\n", + igt_output_name(output)); + continue; + } + + valid_outputs[count] = output; + count++; + } + + igt_skip_on_f(count < 2, + "Number of valid outputs (%d) must be greater than or equal to 2\n", count); + + for (int k = 0; k < count; k++) { + mode = igt_output_get_mode(valid_outputs[k]); igt_assert(mode); width = max(width, mode->hdisplay); height = max(height, mode->vdisplay); - mode_hi = *igt_output_get_highres_mode(output); - igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && - mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", - igt_output_name(output)); - - igt_output_set_pipe(output, i); - igt_output_override_mode(output, &mode_hi); - i++; + igt_output_set_pipe(valid_outputs[k], k); + igt_output_override_mode(valid_outputs[k], &mode_highres[k]); } + igt_require(intel_pipe_output_combo_valid(display)); - igt_display_reset(display); igt_create_pattern_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &fb); + i = 0; for_each_connected_output(display, output) { pipe = &display->pipes[i]; -- 2.25.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 2/5] tests/intel/kms_cdclk: Add conditions to filter valid outputs 2025-02-13 11:08 ` [PATCH i-g-t 2/5] tests/intel/kms_cdclk: Add conditions to filter valid outputs Swati Sharma @ 2025-02-17 8:17 ` Nautiyal, Ankit K 0 siblings, 0 replies; 15+ messages in thread From: Nautiyal, Ankit K @ 2025-02-17 8:17 UTC (permalink / raw) To: Swati Sharma, igt-dev On 2/13/2025 4:38 PM, Swati Sharma wrote: > Add vrefresh as an additional parameter to check if highest and > lowest refresh rates are identical. > Skip the test, if highres and lowres are the same, as no cdclk > transition will occur. > Store highres and lowres of valid outputs in an array for reuse later. > > v2:-fixed description (Ankit) > -highres lowres stored in previous loop (Ankit) > -removed comments (Ankit) > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/intel/kms_cdclk.c | 50 ++++++++++++++++++++++++++++------------- > 1 file changed, 34 insertions(+), 16 deletions(-) > > diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c > index e78d22e1d..75542e21b 100644 > --- a/tests/intel/kms_cdclk.c > +++ b/tests/intel/kms_cdclk.c > @@ -223,7 +223,9 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out > mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", > igt_output_name(output)); > > - igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && mode_hi.vdisplay == mode_lo.vdisplay, > + igt_skip_on_f(mode_hi.hdisplay == mode_lo.hdisplay && > + mode_hi.vdisplay == mode_lo.vdisplay && > + mode_hi.vrefresh == mode_lo.vrefresh, > "Highest and lowest mode resolutions are same; no transition\n"); > > primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > @@ -261,8 +263,10 @@ static void test_mode_transition_on_all_outputs(data_t *data) > igt_display_t *display = &data->display; > int debugfs_fd = data->debugfs_fd; > drmModeModeInfo *mode, mode_hi, mode_lo; > + drmModeModeInfo mode_highres[IGT_MAX_PIPES] = {0}, mode_lowres[IGT_MAX_PIPES] = {0}; > + igt_output_t *valid_outputs[IGT_MAX_PIPES] = {NULL}; > igt_output_t *output; > - int valid_outputs = 0; > + int count = 0; > int cdclk_ref, cdclk_new; > uint16_t width = 0, height = 0; > struct igt_fb fb; > @@ -273,31 +277,45 @@ static void test_mode_transition_on_all_outputs(data_t *data) > do_cleanup_display(display); > igt_display_reset(display); > > - for_each_connected_output(&data->display, output) > - valid_outputs++; > - > - i = 0; > for_each_connected_output(display, output) { > - mode = igt_output_get_mode(output); > + mode_highres[count] = *igt_output_get_highres_mode(output); > + igt_require_f(mode_highres[count].hdisplay >= HDISPLAY_4K && mode_highres[count].vdisplay >= VDISPLAY_4K && > + mode_highres[count].vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", > + igt_output_name(output)); > + > + mode_lowres[count] = *get_lowres_mode(output); > + > + if (mode_highres[count].hdisplay == mode_lowres[count].hdisplay && > + mode_highres[count].vdisplay == mode_lowres[count].vdisplay && > + mode_highres[count].vrefresh == mode_lowres[count].vrefresh) { > + igt_info("Highest and lowest mode resolutions are same on output %s; no transition will occur, skipping\n", > + igt_output_name(output)); > + continue; > + } > + > + valid_outputs[count] = output; > + count++; > + } > + > + igt_skip_on_f(count < 2, > + "Number of valid outputs (%d) must be greater than or equal to 2\n", count); > + > + for (int k = 0; k < count; k++) { Just use i for iterator. > + mode = igt_output_get_mode(valid_outputs[k]); > igt_assert(mode); > > width = max(width, mode->hdisplay); > height = max(height, mode->vdisplay); > > - mode_hi = *igt_output_get_highres_mode(output); > - igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && > - mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", > - igt_output_name(output)); > - > - igt_output_set_pipe(output, i); > - igt_output_override_mode(output, &mode_hi); > - i++; > + igt_output_set_pipe(valid_outputs[k], k); > + igt_output_override_mode(valid_outputs[k], &mode_highres[k]); > } > + > igt_require(intel_pipe_output_combo_valid(display)); > - igt_display_reset(display); > > igt_create_pattern_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, > DRM_FORMAT_MOD_LINEAR, &fb); > + This line is extra, not part of this patch. With above things fixed: Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > i = 0; > for_each_connected_output(display, output) { > pipe = &display->pipes[i]; ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 3/5] tests/intel/kms_cdclk: Introduce set_mode() 2025-02-13 11:08 [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma 2025-02-13 11:08 ` [PATCH i-g-t 1/5] lib/igt_kms: Add highres() and lowres() func Swati Sharma 2025-02-13 11:08 ` [PATCH i-g-t 2/5] tests/intel/kms_cdclk: Add conditions to filter valid outputs Swati Sharma @ 2025-02-13 11:08 ` Swati Sharma 2025-02-13 11:08 ` [PATCH i-g-t 4/5] lib/igt_kms: Add igt_get_max_cdclk() Swati Sharma ` (5 subsequent siblings) 8 siblings, 0 replies; 15+ messages in thread From: Swati Sharma @ 2025-02-13 11:08 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma Encapsulate the mode-setting functionality in the set_mode function to reduce redundancy. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> --- tests/intel/kms_cdclk.c | 71 +++++++++++++---------------------------- 1 file changed, 22 insertions(+), 49 deletions(-) diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c index 75542e21b..eeb1ecd69 100644 --- a/tests/intel/kms_cdclk.c +++ b/tests/intel/kms_cdclk.c @@ -258,21 +258,36 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out igt_remove_fb(display->drm_fd, &fb); } +static void set_mode(data_t *data, int count, drmModeModeInfo *mode, + igt_output_t **valid_outputs, struct igt_fb fb) +{ + igt_display_t *display = &data->display; + igt_pipe_t *pipe; + igt_plane_t *plane; + + for (int i = 0; i < count; i++) { + pipe = &display->pipes[i]; + plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); + + igt_output_override_mode(valid_outputs[i], &mode[i]); + + igt_plane_set_fb(plane, &fb); + igt_fb_set_size(&fb, plane, mode[i].hdisplay, mode[i].vdisplay); + igt_plane_set_size(plane, mode[i].hdisplay, mode[i].vdisplay); + } +} + static void test_mode_transition_on_all_outputs(data_t *data) { igt_display_t *display = &data->display; int debugfs_fd = data->debugfs_fd; - drmModeModeInfo *mode, mode_hi, mode_lo; - drmModeModeInfo mode_highres[IGT_MAX_PIPES] = {0}, mode_lowres[IGT_MAX_PIPES] = {0}; + drmModeModeInfo *mode, mode_highres[IGT_MAX_PIPES] = {0}, mode_lowres[IGT_MAX_PIPES] = {0}; igt_output_t *valid_outputs[IGT_MAX_PIPES] = {NULL}; igt_output_t *output; int count = 0; int cdclk_ref, cdclk_new; uint16_t width = 0, height = 0; struct igt_fb fb; - igt_pipe_t *pipe; - igt_plane_t *plane; - int i = 0, j = 0; do_cleanup_display(display); igt_display_reset(display); @@ -316,52 +331,11 @@ static void test_mode_transition_on_all_outputs(data_t *data) igt_create_pattern_fb(data->drm_fd, width, height, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &fb); - i = 0; - for_each_connected_output(display, output) { - pipe = &display->pipes[i]; - plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); - - mode = NULL; - - igt_output_set_pipe(output, i); - mode = igt_output_get_mode(output); - igt_assert(mode); - - mode_lo = *get_lowres_mode(output); - - igt_output_override_mode(output, &mode_lo); - igt_plane_set_fb(plane, &fb); - igt_fb_set_size(&fb, plane, mode_lo.hdisplay, mode_lo.vdisplay); - igt_plane_set_size(plane, mode_lo.hdisplay, mode_lo.vdisplay); - i++; - } - + set_mode(data, count, mode_lowres, valid_outputs, fb); igt_display_commit2(display, COMMIT_ATOMIC); cdclk_ref = get_current_cdclk_freq(debugfs_fd); - j = 0; - for_each_connected_output(display, output) { - pipe = &display->pipes[j]; - plane = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); - - mode = NULL; - - igt_output_set_pipe(output, j); - mode = igt_output_get_mode(output); - igt_assert(mode); - - mode_hi = *igt_output_get_highres_mode(output); - igt_require_f(mode_hi.hdisplay >= HDISPLAY_4K && mode_hi.vdisplay >= VDISPLAY_4K && - mode_hi.vrefresh >= VREFRESH, "Mode >= 4K not found on output %s.\n", - igt_output_name(output)); - - igt_output_override_mode(output, &mode_hi); - igt_plane_set_fb(plane, &fb); - igt_fb_set_size(&fb, plane, mode_hi.hdisplay, mode_hi.vdisplay); - igt_plane_set_size(plane, mode_hi.hdisplay, mode_hi.vdisplay); - j++; - } - + set_mode(data, count, mode_highres, valid_outputs, fb); igt_display_commit2(display, COMMIT_ATOMIC); cdclk_new = get_current_cdclk_freq(debugfs_fd); igt_info("CD clock frequency %d -> %d\n", cdclk_ref, cdclk_new); @@ -369,7 +343,6 @@ static void test_mode_transition_on_all_outputs(data_t *data) /* cdclk should bump */ igt_assert_lt(cdclk_ref, cdclk_new); - igt_plane_set_fb(plane, NULL); do_cleanup_display(display); igt_remove_fb(data->drm_fd, &fb); } -- 2.25.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH i-g-t 4/5] lib/igt_kms: Add igt_get_max_cdclk() 2025-02-13 11:08 [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma ` (2 preceding siblings ...) 2025-02-13 11:08 ` [PATCH i-g-t 3/5] tests/intel/kms_cdclk: Introduce set_mode() Swati Sharma @ 2025-02-13 11:08 ` Swati Sharma 2025-02-17 8:35 ` Nautiyal, Ankit K 2025-02-13 11:08 ` [PATCH i-g-t 5/5] tests/intel/kms_cdclk: Use igt_get_max_cdclk() Swati Sharma ` (4 subsequent siblings) 8 siblings, 1 reply; 15+ messages in thread From: Swati Sharma @ 2025-02-13 11:08 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma Add igt_get_max_cdclk() to return max cdclk frequency. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_kms.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_kms.h | 1 + 2 files changed, 50 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 8220cc0eb..aa5dfa8ce 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6390,6 +6390,55 @@ int igt_get_max_dotclock(int fd) return max_dotclock; } +/** + * igt_get_max_cdclk: + * @fd: A drm file descriptor + * + * Get the Max CD clock frequency from intel specific debugfs + * "i915_frequency_info" (or) "i915_cdclk_info". + * + * Returns: Max supported CD clock frequency. + */ +int igt_get_max_cdclk(int fd) +{ + char buf[4096]; + char *s; + int dir, res, max_cdclk = 0; + drmModeRes *resources; + + if (!is_intel_device(fd)) + return max_cdclk; + + /* If there is no display, then no point to check for cdclk. */ + resources = drmModeGetResources(fd); + if (!resources) + return max_cdclk; + + drmModeFreeResources(resources); + + dir = igt_debugfs_dir(fd); + igt_require(dir != -1); + + /* + * Display specific clock frequency info is moved to i915_cdclk_info, + * On older kernels if this debugfs is not found, fallback to read from + * i915_frequency_info. + */ + res = igt_debugfs_simple_read(dir, "i915_cdclk_info", + buf, sizeof(buf)); + if (res <= 0) + res = igt_debugfs_simple_read(dir, "i915_frequency_info", + buf, sizeof(buf)); + close(dir); + + igt_require(res > 0); + + igt_assert(s = strstr(buf, "Max CD clock frequency:")); + igt_assert_eq(sscanf(s, "Max CD clock frequency: %d kHz", &max_cdclk), 1); + + return max_cdclk; +} + /** * igt_bigjoiner_possible: * @drm_fd: drm file descriptor diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 5cf0b89d3..e6665abdd 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1244,6 +1244,7 @@ void igt_sort_connector_modes(drmModeConnector *connector, bool igt_max_bpc_constraint(igt_display_t *display, enum pipe pipe, igt_output_t *output, int bpc); int igt_get_max_dotclock(int fd); +int igt_get_max_cdclk(int fd); bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int max_dotclock); bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector, int max_dotclock, drmModeModeInfo *mode); -- 2.25.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 4/5] lib/igt_kms: Add igt_get_max_cdclk() 2025-02-13 11:08 ` [PATCH i-g-t 4/5] lib/igt_kms: Add igt_get_max_cdclk() Swati Sharma @ 2025-02-17 8:35 ` Nautiyal, Ankit K 0 siblings, 0 replies; 15+ messages in thread From: Nautiyal, Ankit K @ 2025-02-17 8:35 UTC (permalink / raw) To: Swati Sharma, igt-dev On 2/13/2025 4:38 PM, Swati Sharma wrote: > Add igt_get_max_cdclk() to return max cdclk frequency. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > lib/igt_kms.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ > lib/igt_kms.h | 1 + > 2 files changed, 50 insertions(+) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 8220cc0eb..aa5dfa8ce 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -6390,6 +6390,55 @@ int igt_get_max_dotclock(int fd) > return max_dotclock; > } > > +/** > + * igt_get_max_cdclk: > + * @fd: A drm file descriptor > + * > + * Get the Max CD clock frequency from intel specific debugfs > + * "i915_frequency_info" (or) "i915_cdclk_info". > + * > + * Returns: Max supported CD clock frequency. > + */ > +int igt_get_max_cdclk(int fd) > +{ > + char buf[4096]; > + char *s; > + int dir, res, max_cdclk = 0; > + drmModeRes *resources; > + > + if (!is_intel_device(fd)) > + return max_cdclk; > + > + /* If there is no display, then no point to check for cdclk. */ > + resources = drmModeGetResources(fd); > + if (!resources) > + return max_cdclk; > + > + drmModeFreeResources(resources); > + > + dir = igt_debugfs_dir(fd); > + igt_require(dir != -1); > + > + /* > + * Display specific clock frequency info is moved to i915_cdclk_info, > + * On older kernels if this debugfs is not found, fallback to read from > + * i915_frequency_info. > + */ > + res = igt_debugfs_simple_read(dir, "i915_cdclk_info", > + buf, sizeof(buf)); > + if (res <= 0) > + res = igt_debugfs_simple_read(dir, "i915_frequency_info", > + buf, sizeof(buf)); > + close(dir); > + > + igt_require(res > 0); > + > + igt_assert(s = strstr(buf, "Max CD clock frequency:")); > + igt_assert_eq(sscanf(s, "Max CD clock frequency: %d kHz", &max_cdclk), 1); > + > + return max_cdclk; I think there can be some code that can be re-used between this and igt_get_max_dotclock() to read the debugfs. The search string "Max CD clock frequency" or "Max pixel clock frequency" can be passed and it can return the parsed value in Khz. Regards, Ankit > +} > + > /** > * igt_bigjoiner_possible: > * @drm_fd: drm file descriptor > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index 5cf0b89d3..e6665abdd 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -1244,6 +1244,7 @@ void igt_sort_connector_modes(drmModeConnector *connector, > bool igt_max_bpc_constraint(igt_display_t *display, enum pipe pipe, > igt_output_t *output, int bpc); > int igt_get_max_dotclock(int fd); > +int igt_get_max_cdclk(int fd); > bool igt_bigjoiner_possible(int drm_fd, drmModeModeInfo *mode, int max_dotclock); > bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector, > int max_dotclock, drmModeModeInfo *mode); ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 5/5] tests/intel/kms_cdclk: Use igt_get_max_cdclk() 2025-02-13 11:08 [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma ` (3 preceding siblings ...) 2025-02-13 11:08 ` [PATCH i-g-t 4/5] lib/igt_kms: Add igt_get_max_cdclk() Swati Sharma @ 2025-02-13 11:08 ` Swati Sharma 2025-02-17 8:36 ` Nautiyal, Ankit K 2025-02-13 12:33 ` ✓ Xe.CI.BAT: success for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev3) Patchwork ` (3 subsequent siblings) 8 siblings, 1 reply; 15+ messages in thread From: Swati Sharma @ 2025-02-13 11:08 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma Replace hardcoded max cdclk freq with one computed from debugfs. in igt_get_max_cdclk(). Also, add same condition for all_outputs subtest. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_cdclk.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c index eeb1ecd69..3596fd30c 100644 --- a/tests/intel/kms_cdclk.c +++ b/tests/intel/kms_cdclk.c @@ -53,7 +53,6 @@ IGT_TEST_DESCRIPTION("Test cdclk features : crawling and squashing"); #define HDISPLAY_4K 3840 #define VDISPLAY_4K 2160 #define VREFRESH 60 -#define MAX_CDCLK_4K 307200 /* Test flags */ enum { @@ -250,7 +249,7 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out igt_info("CD clock frequency %d -> %d\n", cdclk_ref, cdclk_new); /* cdclk should bump */ - if (cdclk_new != MAX_CDCLK_4K) + if (cdclk_new != igt_get_max_cdclk(debugfs_fd)) igt_assert_lt(cdclk_ref, cdclk_new); /* cleanup */ @@ -341,7 +340,8 @@ static void test_mode_transition_on_all_outputs(data_t *data) igt_info("CD clock frequency %d -> %d\n", cdclk_ref, cdclk_new); /* cdclk should bump */ - igt_assert_lt(cdclk_ref, cdclk_new); + if (cdclk_new != igt_get_max_cdclk(debugfs_fd)) + igt_assert_lt(cdclk_ref, cdclk_new); do_cleanup_display(display); igt_remove_fb(data->drm_fd, &fb); -- 2.25.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 5/5] tests/intel/kms_cdclk: Use igt_get_max_cdclk() 2025-02-13 11:08 ` [PATCH i-g-t 5/5] tests/intel/kms_cdclk: Use igt_get_max_cdclk() Swati Sharma @ 2025-02-17 8:36 ` Nautiyal, Ankit K 0 siblings, 0 replies; 15+ messages in thread From: Nautiyal, Ankit K @ 2025-02-17 8:36 UTC (permalink / raw) To: Swati Sharma, igt-dev On 2/13/2025 4:38 PM, Swati Sharma wrote: > Replace hardcoded max cdclk freq with one computed from debugfs. > in igt_get_max_cdclk(). Also, add same condition for > all_outputs subtest. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> > --- > tests/intel/kms_cdclk.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c > index eeb1ecd69..3596fd30c 100644 > --- a/tests/intel/kms_cdclk.c > +++ b/tests/intel/kms_cdclk.c > @@ -53,7 +53,6 @@ IGT_TEST_DESCRIPTION("Test cdclk features : crawling and squashing"); > #define HDISPLAY_4K 3840 > #define VDISPLAY_4K 2160 > #define VREFRESH 60 > -#define MAX_CDCLK_4K 307200 > > /* Test flags */ > enum { > @@ -250,7 +249,7 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out > igt_info("CD clock frequency %d -> %d\n", cdclk_ref, cdclk_new); > > /* cdclk should bump */ > - if (cdclk_new != MAX_CDCLK_4K) > + if (cdclk_new != igt_get_max_cdclk(debugfs_fd)) > igt_assert_lt(cdclk_ref, cdclk_new); > > /* cleanup */ > @@ -341,7 +340,8 @@ static void test_mode_transition_on_all_outputs(data_t *data) > igt_info("CD clock frequency %d -> %d\n", cdclk_ref, cdclk_new); > > /* cdclk should bump */ > - igt_assert_lt(cdclk_ref, cdclk_new); > + if (cdclk_new != igt_get_max_cdclk(debugfs_fd)) > + igt_assert_lt(cdclk_ref, cdclk_new); > > do_cleanup_display(display); > igt_remove_fb(data->drm_fd, &fb); ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev3) 2025-02-13 11:08 [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma ` (4 preceding siblings ...) 2025-02-13 11:08 ` [PATCH i-g-t 5/5] tests/intel/kms_cdclk: Use igt_get_max_cdclk() Swati Sharma @ 2025-02-13 12:33 ` Patchwork 2025-02-13 12:50 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2025-02-13 12:33 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2478 bytes --] == Series Details == Series: tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev3) URL : https://patchwork.freedesktop.org/series/142515/ State : success == Summary == CI Bug Log - changes from XEIGT_8229_BAT -> XEIGTPW_12588_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12588_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_live_ktest@xe_migrate: - bat-adlp-vf: [PASS][1] -> [SKIP][2] ([Intel XE#1192]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html * igt@xe_pat@pat-index-xelp@render: - bat-adlp-vf: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#3970]) +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html #### Warnings #### * igt@xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8229 -> IGTPW_12588 * Linux: xe-2652-b9696aa14a67620661572e94f4141df2a4b6b5cd -> xe-2657-dbf65862427b99b51ac5279560a1f7995779480b IGTPW_12588: 12588 IGT_8229: 8229 xe-2652-b9696aa14a67620661572e94f4141df2a4b6b5cd: b9696aa14a67620661572e94f4141df2a4b6b5cd xe-2657-dbf65862427b99b51ac5279560a1f7995779480b: dbf65862427b99b51ac5279560a1f7995779480b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/index.html [-- Attachment #2: Type: text/html, Size: 3173 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev3) 2025-02-13 11:08 [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma ` (5 preceding siblings ...) 2025-02-13 12:33 ` ✓ Xe.CI.BAT: success for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev3) Patchwork @ 2025-02-13 12:50 ` Patchwork 2025-02-13 20:09 ` ✗ i915.CI.Full: failure " Patchwork 2025-02-14 4:35 ` ✗ Xe.CI.Full: " Patchwork 8 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2025-02-13 12:50 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6237 bytes --] == Series Details == Series: tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev3) URL : https://patchwork.freedesktop.org/series/142515/ State : success == Summary == CI Bug Log - changes from IGT_8229 -> IGTPW_12588 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/index.html Participating hosts (42 -> 40) ------------------------------ Additional (2): fi-hsw-4770 fi-pnv-d510 Missing (4): bat-twl-1 bat-rplp-1 bat-mtlp-9 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12588 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@basic: - fi-cfl-8700k: NOTRUN -> [SKIP][1] ([i915#4613]) +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/fi-cfl-8700k/igt@gem_lmem_swapping@basic.html * igt@gem_softpin@allocator-basic-reserve: - fi-hsw-4770: NOTRUN -> [SKIP][2] +14 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/fi-hsw-4770/igt@gem_softpin@allocator-basic-reserve.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-arlh-3/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/bat-arlh-3/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][5] ([i915#5190]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_psr@psr-primary-mmap-gtt: - fi-pnv-d510: NOTRUN -> [SKIP][6] +33 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_psr@psr-sprite-plane-onoff: - fi-hsw-4770: NOTRUN -> [SKIP][7] ([i915#1072]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/fi-hsw-4770/igt@kms_psr@psr-sprite-plane-onoff.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - fi-cfl-8700k: [ABORT][8] ([i915#13508]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html * igt@gem_exec_fence@basic-await@vecs0: - bat-rpls-4: [DMESG-WARN][10] ([i915#13400]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-rpls-4/igt@gem_exec_fence@basic-await@vecs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/bat-rpls-4/igt@gem_exec_fence@basic-await@vecs0.html * igt@i915_selftest@live: - bat-jsl-3: [INCOMPLETE][12] ([i915#12445] / [i915#13241]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-jsl-3/igt@i915_selftest@live.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/bat-jsl-3/igt@i915_selftest@live.html * igt@i915_selftest@live@gem_contexts: - bat-jsl-3: [INCOMPLETE][14] ([i915#12445]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-jsl-3/igt@i915_selftest@live@gem_contexts.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/bat-jsl-3/igt@i915_selftest@live@gem_contexts.html #### Warnings #### * igt@i915_selftest@live@mman: - bat-atsm-1: [ABORT][16] ([i915#13465]) -> [ABORT][17] ([i915#13679]) +1 other test abort [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-atsm-1/igt@i915_selftest@live@mman.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/bat-atsm-1/igt@i915_selftest@live@mman.html * igt@kms_flip@basic-flip-vs-dpms: - bat-dg1-6: [SKIP][18] ([i915#12311] / [i915#3637]) -> [SKIP][19] ([i915#12311] / [i915#13682] / [i915#3637]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-dg1-6/igt@kms_flip@basic-flip-vs-dpms.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/bat-dg1-6/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@basic-plain-flip: - bat-dg1-6: [SKIP][20] ([i915#12311]) -> [SKIP][21] ([i915#12311] / [i915#13682]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-dg1-6/igt@kms_flip@basic-plain-flip.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/bat-dg1-6/igt@kms_flip@basic-plain-flip.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#13241]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13241 [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400 [i915#13465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13465 [i915#13508]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13508 [i915#13679]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13679 [i915#13682]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13682 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8229 -> IGTPW_12588 * Linux: CI_DRM_16123 -> CI_DRM_16126 CI-20190529: 20190529 CI_DRM_16123: 4af00c2e09da0269f3f329e660b6417037041bea @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16126: dbf65862427b99b51ac5279560a1f7995779480b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12588: 12588 IGT_8229: 8229 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/index.html [-- Attachment #2: Type: text/html, Size: 7618 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev3) 2025-02-13 11:08 [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma ` (6 preceding siblings ...) 2025-02-13 12:50 ` ✓ i915.CI.BAT: " Patchwork @ 2025-02-13 20:09 ` Patchwork 2025-02-14 4:35 ` ✗ Xe.CI.Full: " Patchwork 8 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2025-02-13 20:09 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100297 bytes --] == Series Details == Series: tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev3) URL : https://patchwork.freedesktop.org/series/142515/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16126_full -> IGTPW_12588_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12588_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12588_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): shard-snb-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12588_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_gttfill@all-engines: - shard-snb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-snb1/igt@gem_exec_gttfill@all-engines.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-snb1/igt@gem_exec_gttfill@all-engines.html * igt@gem_exec_suspend@basic-s4-devices: - shard-glk: NOTRUN -> [ABORT][3] +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk9/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_softpin@noreloc-s3: - shard-glk: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk6/igt@gem_softpin@noreloc-s3.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][5] +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html #### Warnings #### * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [TIMEOUT][6] ([i915#12917] / [i915#12964]) -> [SKIP][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-context.html * igt@kms_cdclk@mode-transition: - shard-mtlp: [SKIP][8] ([i915#7213] / [i915#9010]) -> [SKIP][9] +5 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-mtlp-7/igt@kms_cdclk@mode-transition.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-6/igt@kms_cdclk@mode-transition.html - shard-dg2: [SKIP][10] ([i915#11616] / [i915#7213]) -> [SKIP][11] +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-5/igt@kms_cdclk@mode-transition.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-5/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: [SKIP][12] ([i915#7213]) -> [SKIP][13] +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-dg2: [SKIP][14] ([i915#4087]) -> [SKIP][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-8/igt@kms_cdclk@plane-scaling.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: [SKIP][16] ([i915#4087]) -> [SKIP][17] +4 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-mtlp-5/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-4/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html New tests --------- New tests have been introduced between CI_DRM_16126_full and IGTPW_12588_full: ### New IGT tests (1) ### * igt@kms_cursor_edge_walk@128x128-top-edge@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [3.49] s Known issues ------------ Here are the changes found in IGTPW_12588_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#8411]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-18/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#11078]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-8/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@most-busy-check-all@vcs0: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8414]) +6 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-5/igt@drm_fdinfo@most-busy-check-all@vcs0.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8414]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-17/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#3281]) +6 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-7/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#7697]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-4/igt@gem_basic@multigpu-create-close.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#7697]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-5/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#9323]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#13008]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-6/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][27] ([i915#13356]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-6/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][28] ([i915#9323]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-10/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][29] ([i915#12392] / [i915#13356]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#7697]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-3/igt@gem_close_race@multigpu-basic-process.html - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#7697]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2-9: NOTRUN -> [SKIP][32] ([i915#7697]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#8555]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-8/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2-9: NOTRUN -> [SKIP][34] ([i915#8555]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg2-9: NOTRUN -> [ABORT][36] ([i915#7975]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][37] ([i915#13197] / [i915#13390]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk7/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@kms: - shard-tglu-1: NOTRUN -> [DMESG-WARN][38] ([i915#13363]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][39] ([i915#8898]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-snb4/igt@gem_eio@unwedge-stress.html - shard-dg1: [PASS][40] -> [FAIL][41] ([i915#12714] / [i915#5784]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-19/igt@gem_eio@unwedge-stress.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-19/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4771]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-4/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#4525]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu: NOTRUN -> [SKIP][44] ([i915#4525]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-9/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4525]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4812]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-11/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][47] ([i915#6334]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk4/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4812]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-3/igt@gem_exec_fence@concurrent.html - shard-dg2-9: NOTRUN -> [SKIP][49] ([i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_exec_fence@concurrent.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4812]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-19/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-12/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3281]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281]) +7 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-write-cpu: - shard-dg2-9: NOTRUN -> [SKIP][55] ([i915#3281]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_exec_reloc@basic-write-cpu.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#3281]) +5 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-12/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4537] / [i915#4812]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-4/igt@gem_exec_schedule@semaphore-power.html - shard-dg2-9: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][60] -> [INCOMPLETE][61] ([i915#11441] / [i915#13304]) +1 other test incomplete [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-7/igt@gem_exec_suspend@basic-s0@smem.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-2/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4860]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4860]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-19/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#4860]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4613]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#4613]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#4613]) +6 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][69] ([i915#4613]) +7 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk6/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2-9: NOTRUN -> [TIMEOUT][70] ([i915#5493]) +1 other test timeout [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8289]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-1/igt@gem_media_fill@media-fill.html * igt@gem_mmap@bad-offset: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4083]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-12/igt@gem_mmap@bad-offset.html - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4083]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-4/igt@gem_mmap@bad-offset.html * igt@gem_mmap@short-mmap: - shard-dg2-9: NOTRUN -> [SKIP][74] ([i915#4083]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4077]) +9 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-17/igt@gem_mmap_gtt@basic-small-copy.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4077]) +8 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#4077]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4077]) +7 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-11/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4083]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-8/igt@gem_mmap_wc@copy.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3282]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-7/igt@gem_partial_pwrite_pread@write.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3282]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-18/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][83] ([i915#2658]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-10/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][84] ([i915#12964]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-7/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4270]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-4/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: NOTRUN -> [TIMEOUT][86] ([i915#12917] / [i915#12964]) +2 other tests timeout [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4270]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-15/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-dg2-9: NOTRUN -> [SKIP][88] ([i915#4270]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@read-write: - shard-dg2-9: NOTRUN -> [SKIP][89] ([i915#3282]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_readwrite@read-write.html * igt@gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3282]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-2/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#5190] / [i915#8428]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#8428]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-dg2-9: NOTRUN -> [SKIP][93] ([i915#5190] / [i915#8428]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2-9: NOTRUN -> [SKIP][94] ([i915#4079]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4079]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-18/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4079]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-8/igt@gem_tiled_pread_pwrite.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu: NOTRUN -> [FAIL][97] ([i915#12941]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-7/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2-9: NOTRUN -> [SKIP][98] ([i915#3297]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#3297]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-8/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#3323]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-8/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3282] / [i915#3297]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3297] / [i915#4880]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3297]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3297]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-tglu: NOTRUN -> [SKIP][105] ([i915#3297]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-5/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#3297]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-1/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_workarounds@suspend-resume: - shard-tglu: NOTRUN -> [ABORT][107] ([i915#12817]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-6/igt@gem_workarounds@suspend-resume.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][108] ([i915#13356]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk1/igt@gem_workarounds@suspend-resume-context.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: [PASS][109] -> [DMESG-FAIL][110] ([i915#12964]) +1 other test dmesg-fail [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-8/igt@gem_workarounds@suspend-resume-fd.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-7/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@basic-allocation: - shard-dg2-9: NOTRUN -> [SKIP][111] +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gen7_exec_parse@basic-allocation.html * igt@gen9_exec_parse@allowed-single: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#2856]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-3/igt@gen9_exec_parse@allowed-single.html - shard-dg2: NOTRUN -> [SKIP][113] ([i915#2856]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-8/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#2527]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-1/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#2527] / [i915#2856]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html - shard-dg1: NOTRUN -> [SKIP][116] ([i915#2527]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-13/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][117] ([i915#2527] / [i915#2856]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-5/igt@gen9_exec_parse@cmd-crossing-page.html - shard-dg2-9: NOTRUN -> [SKIP][118] ([i915#2856]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_module_load@reload-no-display: - shard-tglu: [PASS][119] -> [DMESG-WARN][120] ([i915#13029]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-tglu-3/igt@i915_module_load@reload-no-display.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-9/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][121] ([i915#9820]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#6412]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-2/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#8399]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#8399]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-6/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#8399]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-1/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4387]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-6/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][127] ([i915#4387]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-1/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4387]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-14/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][129] ([i915#4387]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-9/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#8437]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-6/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#6245]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#5723]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-5/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][133] ([i915#9311]) +1 other test dmesg-warn [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-19/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@sysfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][134] ([i915#4817]) +1 other test incomplete [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk4/igt@i915_suspend@sysfs-reader.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#7707]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-3/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4215] / [i915#5190]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#8709]) +7 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs-cc.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#12967] / [i915#6228]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-10/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: [PASS][139] -> [FAIL][140] ([i915#5956]) +1 other test fail [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][141] ([i915#1769]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][142] ([i915#1769] / [i915#3555]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#5286]) +6 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5286]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#5286]) +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#5286]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3638]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-12/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][148] +13 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-1/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3638]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-9: NOTRUN -> [SKIP][150] ([i915#4538] / [i915#5190]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5190]) +6 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#4538]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#6095]) +157 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-19/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#6095]) +64 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-10/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#6095]) +90 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#6095]) +29 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][158] +424 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#6095]) +169 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#6095]) +39 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][161] ([i915#10307] / [i915#6095]) +14 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#12313]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#12805]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#12805]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#6095]) +15 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-4.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][166] ([i915#12796]) +1 other test incomplete [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2-9: NOTRUN -> [SKIP][167] ([i915#6095]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#12313]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#12313]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#3742]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][171] ([i915#3742]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-13/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +6 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-5/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +11 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +5 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-12/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg2-9: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +7 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +6 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#9979]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-4/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-2/igt@kms_content_protection@atomic-dpms.html - shard-dg2: NOTRUN -> [SKIP][181] ([i915#7118] / [i915#9424]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-dg2-9: NOTRUN -> [SKIP][182] ([i915#9424]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_content_protection@content-type-change.html - shard-rkl: NOTRUN -> [SKIP][183] ([i915#9424]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-8/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#3116] / [i915#3299]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3116]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@uevent: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#7118] / [i915#9424]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-7/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][187] ([i915#1339] / [i915#7173]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3555]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#13049]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#13049]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg2-9: NOTRUN -> [SKIP][191] ([i915#13049]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-tglu: [PASS][192] -> [FAIL][193] ([i915#13566]) +7 other tests fail [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-tglu-9/igt@kms_cursor_crc@cursor-random-128x42.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-2/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555]) +7 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#13049]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8814]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#3555]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-7/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#13049]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-rkl: [PASS][199] -> [FAIL][200] ([i915#13566]) +4 other tests fail [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][201] ([i915#13566]) +4 other tests fail [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [DMESG-WARN][202] ([i915#4423]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-18/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#9809]) +3 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#4103] / [i915#4213]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-tglu: NOTRUN -> [SKIP][205] ([i915#4103]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#4103]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][207] +16 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html - shard-dg2: NOTRUN -> [SKIP][208] ([i915#13046] / [i915#5354]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2-9: NOTRUN -> [SKIP][209] ([i915#13046] / [i915#5354]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2-9: NOTRUN -> [SKIP][210] ([i915#9067]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#4103]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#9723]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dp_aux_dev: - shard-dg2: [PASS][213] -> [SKIP][214] ([i915#1257]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-11/igt@kms_dp_aux_dev.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-3/igt@kms_dp_aux_dev.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#1257]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-8/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#12402]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8812]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-7/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][218] ([i915#8812]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][219] ([i915#8812]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-14/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#3840]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-6/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-1/igt@kms_dsc@dsc-with-output-formats.html - shard-dg2: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-15/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#3955]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#1839]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-5/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#658]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-8/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#4881]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-8/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#9934]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-18/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#8381]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2-9: NOTRUN -> [SKIP][231] ([i915#9934]) +4 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-flip-vs-panning: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#9934]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-1/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3637]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#3637]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-9/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#3637]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#9934]) +7 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [PASS][237] -> [DMESG-WARN][238] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-3/igt@kms_flip@absolute-wf_vblank-interruptible.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-5/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@basic-plain-flip@b-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][239] ([i915#12964]) +18 other tests dmesg-warn [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html * igt@kms_flip@blocking-wf_vblank: - shard-mtlp: [PASS][240] -> [FAIL][241] ([i915#11989]) +2 other tests fail [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-mtlp-6/igt@kms_flip@blocking-wf_vblank.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-6/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][242] ([i915#12745] / [i915#4839]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][243] ([i915#12745]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [PASS][244] -> [FAIL][245] ([i915#11989]) +1 other test fail [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-snb4/igt@kms_flip@plain-flip-ts-check-interruptible.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][246] ([i915#11989]) +1 other test fail [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#2587] / [i915#2672]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#2672]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#8813]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#2672] / [i915#3555] / [i915#8813]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg2: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555] / [i915#5190]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672] / [i915#3555]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#2587] / [i915#2672] / [i915#3555]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][259] ([i915#2672]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#2587] / [i915#2672]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555]) +2 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][264] ([i915#8708]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [PASS][265] -> [FAIL][266] ([i915#6880]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-snb: [PASS][267] -> [SKIP][268] +2 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][269] +26 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#1825]) +47 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: NOTRUN -> [FAIL][271] ([i915#6880]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][272] ([i915#10056] / [i915#13353]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk4/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#3458]) +9 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-9: NOTRUN -> [SKIP][274] ([i915#5354]) +9 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#1825]) +24 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][276] +32 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][277] ([i915#3458]) +6 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#10055]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#10055]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#3458]) +9 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#8708]) +11 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#8708]) +9 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#5354]) +20 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#8708]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#3023]) +25 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][286] +77 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#13030]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-8/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-4/igt@kms_hdr@static-swap.html - shard-dg2: [PASS][291] -> [SKIP][292] ([i915#3555] / [i915#8228]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-10/igt@kms_hdr@static-swap.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-8/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#3555] / [i915#8228]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#3555] / [i915#8228]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-13/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#10656]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-7/igt@kms_joiner@basic-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][296] ([i915#10656]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-17/igt@kms_joiner@basic-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][297] ([i915#10656]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-7/igt@kms_joiner@basic-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#10656]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-6/igt@kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][299] ([i915#10656]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-5/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#12388]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-10/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#12339]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-8/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: [PASS][302] -> [SKIP][303] ([i915#12388]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#12394]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#13522]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][306] +6 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-1/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][307] ([i915#10647] / [i915#12169]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk4/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][308] ([i915#10647]) +1 other test fail [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk4/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#3555] / [i915#8821]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8806]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-7/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [PASS][311] -> [SKIP][312] ([i915#6953] / [i915#9423]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#12247]) +13 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#12247]) +19 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2-9: NOTRUN -> [SKIP][315] ([i915#12247] / [i915#9423]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-dg2-9: NOTRUN -> [SKIP][316] ([i915#12247]) +3 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#12247] / [i915#6953] / [i915#9423]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][318] ([i915#12247] / [i915#6953]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][319] ([i915#12247] / [i915#6953]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12247] / [i915#6953]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#12247]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#12247]) +8 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - shard-dg1: NOTRUN -> [SKIP][323] ([i915#12247]) +8 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#12247] / [i915#6953]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#12247] / [i915#6953]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c: - shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#12247]) +13 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#5354]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html - shard-dg1: NOTRUN -> [SKIP][328] ([i915#5354]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-19/igt@kms_pm_backlight@bad-brightness.html - shard-tglu: NOTRUN -> [SKIP][329] ([i915#9812]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#12343]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-2/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#9685]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-19/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#3828]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-5/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [PASS][333] -> [FAIL][334] ([i915#9295]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][335] -> [SKIP][336] ([i915#9519]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-dg1: NOTRUN -> [SKIP][337] ([i915#9519]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#9519]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][339] ([i915#9519]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-6/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][340] -> [SKIP][341] ([i915#9519]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-snb: NOTRUN -> [SKIP][342] ([i915#11520]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-snb6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][343] ([i915#11520]) +12 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#11520]) +8 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][345] ([i915#11520]) +5 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-19/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#9808]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#12316]) +3 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#11520]) +7 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#11520]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-3/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][350] ([i915#11520]) +4 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-9: NOTRUN -> [SKIP][351] ([i915#11520]) +2 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#9683]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-7/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#9732]) +20 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-2/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-snb: NOTRUN -> [SKIP][354] +77 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-snb2/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@pr-cursor-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#9732]) +7 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_psr@pr-cursor-mmap-gtt.html * igt@kms_psr@pr-primary-render: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#9688]) +10 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-8/igt@kms_psr@pr-primary-render.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][357] ([i915#1072] / [i915#9732]) +4 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#1072] / [i915#9732]) +13 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-10/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#1072] / [i915#9732]) +23 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][360] ([i915#1072] / [i915#9732]) +13 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-19/igt@kms_psr@psr2-sprite-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#4077] / [i915#9688]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-2/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#12755]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][363] ([i915#5289]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg2: NOTRUN -> [SKIP][364] ([i915#5190]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][365] ([i915#5289]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu-1: NOTRUN -> [SKIP][366] ([i915#5289]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#3555]) +5 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][368] ([i915#5465]) +2 other tests fail [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-snb2/igt@kms_setmode@basic.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg1: NOTRUN -> [SKIP][369] ([i915#3555]) +3 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-17/igt@kms_setmode@clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][370] ([i915#3555] / [i915#8809]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][371] ([IGT#160]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-6/igt@kms_sysfs_edid_timing.html - shard-dg1: NOTRUN -> [FAIL][372] ([IGT#160] / [i915#6493]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-14/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu-1: NOTRUN -> [SKIP][373] ([i915#8623]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: NOTRUN -> [SKIP][374] ([i915#8623]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-13/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][375] ([i915#8623]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-mtlp: NOTRUN -> [SKIP][376] ([i915#8623]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][377] ([i915#8623]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@query-busy: - shard-dg1: [PASS][378] -> [DMESG-WARN][379] ([i915#4423]) +4 other tests dmesg-warn [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-12/igt@kms_vblank@query-busy.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-19/igt@kms_vblank@query-busy.html * igt@kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][380] ([i915#8808] / [i915#9906]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-4/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flipline: - shard-dg2-9: NOTRUN -> [SKIP][381] ([i915#3555]) +1 other test skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-9/igt@kms_vrr@flipline.html * igt@kms_vrr@max-min: - shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#9906]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][383] ([i915#9906]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg1: NOTRUN -> [SKIP][384] ([i915#9906]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][385] ([i915#2437] / [i915#9412]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-13/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][386] ([i915#2437]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-4/igt@kms_writeback@writeback-invalid-parameters.html - shard-glk: NOTRUN -> [SKIP][387] ([i915#2437]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk9/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][388] ([i915#2437]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-8/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][389] ([i915#7387]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-5/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-mtlp: NOTRUN -> [SKIP][390] ([i915#2434]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-6/igt@perf@mi-rpc.html * igt@perf_pmu@invalid-init: - shard-tglu-1: NOTRUN -> [FAIL][391] ([i915#13663]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@perf_pmu@invalid-init.html - shard-glk: NOTRUN -> [FAIL][392] ([i915#13663]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-glk2/igt@perf_pmu@invalid-init.html * igt@perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][393] ([i915#8516]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html - shard-dg1: NOTRUN -> [SKIP][394] ([i915#8516]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-13/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#3291] / [i915#3708]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-1/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][396] ([i915#3291] / [i915#3708]) +1 other test skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][397] ([i915#3708] / [i915#4077]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-3/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][398] ([i915#3708] / [i915#4077]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-7/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][399] ([i915#3708]) +1 other test skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-17/igt@prime_vgem@fence-flip-hang.html - shard-mtlp: NOTRUN -> [SKIP][400] ([i915#3708]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-5/igt@prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][401] ([i915#3708]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-10/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][402] ([i915#3708]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][403] ([i915#9917]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-1/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6: - shard-tglu: NOTRUN -> [FAIL][404] ([i915#12910]) +9 other tests fail [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5: - shard-tglu-1: NOTRUN -> [FAIL][405] ([i915#12910]) +9 other tests fail [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5.html * igt@syncobj_eventfd@binary-wait-before-signal: - shard-rkl: [PASS][406] -> [DMESG-WARN][407] ([i915#12964]) +25 other tests dmesg-warn [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-8/igt@syncobj_eventfd@binary-wait-before-signal.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-2/igt@syncobj_eventfd@binary-wait-before-signal.html #### Possible fixes #### * igt@gem_tiled_swapping@non-threaded: - shard-rkl: [FAIL][408] ([i915#12941]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-7/igt@gem_tiled_swapping@non-threaded.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-7/igt@gem_tiled_swapping@non-threaded.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][410] ([i915#7984]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-mtlp-7/igt@i915_power@sanity.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-8/igt@i915_power@sanity.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][412] ([i915#12061]) -> [PASS][413] +1 other test pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-mtlp-1/igt@i915_selftest@live@workarounds.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-mtlp-1/igt@i915_selftest@live@workarounds.html * igt@kms_async_flips@async-flip-with-page-flip-events: - shard-dg1: [DMESG-WARN][414] ([i915#4423]) -> [PASS][415] +2 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][416] ([i915#13566]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][418] ([i915#13566]) -> [PASS][419] +1 other test pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [SKIP][420] ([i915#3555]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-dg2-8/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-snb: [FAIL][422] ([i915#11989]) -> [PASS][423] +3 other tests pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16126/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-snb: [FAIL][424] ([i9 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12588/index.html [-- Attachment #2: Type: text/html, Size: 109911 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev3) 2025-02-13 11:08 [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma ` (7 preceding siblings ...) 2025-02-13 20:09 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-02-14 4:35 ` Patchwork 8 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2025-02-14 4:35 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 110427 bytes --] == Series Details == Series: tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev3) URL : https://patchwork.freedesktop.org/series/142515/ State : failure == Summary == CI Bug Log - changes from XEIGT_8229_full -> XEIGTPW_12588_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12588_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12588_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12588_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][1] +5 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][2] +4 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-dg2-set2: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_pm_rpm@modeset-stress-extra-wait.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@kms_pm_rpm@modeset-stress-extra-wait.html #### Warnings #### * igt@kms_cdclk@plane-scaling: - shard-lnl: [SKIP][6] ([Intel XE#1152]) -> [SKIP][7] +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-8/igt@kms_cdclk@plane-scaling.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-8/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: [SKIP][8] ([Intel XE#1152]) -> [SKIP][9] +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_joiner@basic-max-non-joiner}: - shard-dg2-set2: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@kms_joiner@basic-max-non-joiner.html New tests --------- New tests have been introduced between XEIGT_8229_full and XEIGTPW_12588_full: ### New IGT tests (1) ### * igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-d-hdmi-a-2: - Statuses : 1 dmesg-warn(s) - Exec time: [3.25] s Known issues ------------ Here are the changes found in XEIGTPW_12588_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#3157]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#3767]) +15 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-2-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: NOTRUN -> [FAIL][13] ([Intel XE#911]) +3 other tests fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#873]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@kms_async_flips@invalid-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#873]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_async_flips@invalid-async-flip.html - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#873]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-8/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#3768]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_async_flips@invalid-async-flip-atomic.html - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3768]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#3768]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_async_flips@test-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#664]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-4/igt@kms_async_flips@test-cursor-atomic.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2385]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2370]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1407]) +5 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3658]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#316]) +8 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2327]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#607]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#607]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +16 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +24 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +15 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#619]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2191]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-8/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#2191]) +4 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1512]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2314] / [Intel XE#2894]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#367]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#367]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#367]) +6 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +22 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#455] / [Intel XE#787]) +62 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2887]) +22 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#2669]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#787]) +241 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#3442]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#3432]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#3432]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][48] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][49] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4010]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#2907]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2652] / [Intel XE#787]) +26 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2724]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#306]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@degamma: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2325]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@kms_chamelium_color@degamma.html - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#306]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2252]) +12 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#373]) +20 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#373]) +14 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-3/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][59] ([Intel XE#1178]) +2 other tests fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_content_protection@atomic.html - shard-dg2-set2: NOTRUN -> [FAIL][60] ([Intel XE#1178]) +2 other tests fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_content_protection@atomic.html - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#3278]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#307]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2341]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_content_protection@mei-interface.html - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1468]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#308]) +5 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2321]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2320]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2321]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1424]) +6 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2-set2: [PASS][70] -> [SKIP][71] ([Intel XE#309]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#2291]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2291]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#309]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#309]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#323]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#323]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2286]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1340]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([i915#3804]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2244]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats.html - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#2244]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][84] ([Intel XE#1033]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#776]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#776]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#703]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@kms_feature_discovery@display-3x.html - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2373]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_feature_discovery@display-3x.html - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#703]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#1135]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2-set2: [PASS][91] -> [SKIP][92] ([Intel XE#310]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-blocking-wf_vblank@bc-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [INCOMPLETE][93] ([Intel XE#2049]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][94] -> [FAIL][95] ([Intel XE#301] / [Intel XE#3321]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][96] -> [FAIL][97] ([Intel XE#301]) +4 other tests fail [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3: - shard-bmg: [PASS][98] -> [FAIL][99] ([Intel XE#3321]) +1 other test fail [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][100] ([Intel XE#301]) +5 other tests fail [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-bmg: [PASS][101] -> [DMESG-WARN][102] ([Intel XE#2955]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning-interruptible.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning-interruptible.html - shard-dg2-set2: NOTRUN -> [DMESG-WARN][103] ([Intel XE#2955]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3: - shard-bmg: [PASS][104] -> [DMESG-WARN][105] ([Intel XE#4172]) +8 other tests dmesg-warn [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1421]) +7 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][107] -> [SKIP][108] ([Intel XE#2316]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][109] ([Intel XE#1033]) +18 other tests dmesg-warn [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_flip@2x-plain-flip-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#310]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][111] -> [DMESG-WARN][112] ([Intel XE#1033]) +19 other tests dmesg-warn [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1401]) +5 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2293]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1397]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_force_connector_basic@force-connector-state: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#352]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2311]) +36 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#651]) +58 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg2-set2: [PASS][122] -> [SKIP][123] ([Intel XE#656]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#656]) +53 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#4141]) +18 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#651]) +22 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#653]) +51 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#656]) +11 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2312]) +10 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2313]) +27 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2502]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_getfb@getfb-reject-ccs.html - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#605]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#605]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-3/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1470]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-8/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#3374] / [Intel XE#3544]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#3374] / [Intel XE#3544]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html * igt@kms_invalid_mode@clock-too-high: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1450] / [Intel XE#2568]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1450]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2934]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_joiner@basic-force-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#2934]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-4/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2927]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2927]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2927]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#4090]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2925]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2486]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_panel_fitting@legacy.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][147] ([Intel XE#616]) +3 other tests fail [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256.html * igt@kms_plane_lowres@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#599]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-3/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#2493]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#3307]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][151] ([Intel XE#4212]) +5 other tests dmesg-warn [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#2763]) +5 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#2763]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#870]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_pm_backlight@bad-brightness.html - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#870]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2391]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#1122]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#736]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2392]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#1129]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#3309]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#908]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#836]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#1439] / [Intel XE#836]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#1439] / [Intel XE#3141]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-8/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#1489]) +11 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#2893]) +5 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#1489]) +6 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#2850] / [Intel XE#929]) +29 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#1406]) +6 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#2234] / [Intel XE#2850]) +19 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@kms_psr@psr-basic.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#2939]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#3414] / [Intel XE#3904]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#3414]) +4 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#3414] / [Intel XE#3904]) +5 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#1127]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#2413]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][179] -> [SKIP][180] ([Intel XE#1435]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [PASS][181] -> [FAIL][182] ([Intel XE#899]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#1499]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#455]) +41 other tests skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@kms_vrr@flipline.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#1499]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#756]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#756]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@kms_writeback@writeback-pixel-formats.html - shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#756]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-4/igt@kms_writeback@writeback-pixel-formats.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#1123]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#1126]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_drm_fdinfo@utilization-single-full-load-isolation: - shard-bmg: NOTRUN -> [DMESG-WARN][192] ([Intel XE#4172]) +4 other tests dmesg-warn [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][193] ([Intel XE#2905]) +17 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@xe_eudebug@basic-close.html - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#2905]) +12 other tests skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-vm-bind-ufence: - shard-bmg: NOTRUN -> [SKIP][195] ([Intel XE#2905]) +8 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence.html * igt@xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#3889]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html - shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#3889]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html - shard-lnl: NOTRUN -> [SKIP][198] ([Intel XE#3889]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-4/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt@xe_evict@evict-beng-small-multi-vm: - shard-bmg: NOTRUN -> [DMESG-WARN][199] ([Intel XE#1473] / [Intel XE#4172]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@xe_evict@evict-beng-small-multi-vm.html - shard-dg2-set2: NOTRUN -> [DMESG-WARN][200] ([Intel XE#1033] / [Intel XE#1473]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@xe_evict@evict-beng-small-multi-vm.html * igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd: - shard-lnl: NOTRUN -> [SKIP][201] ([Intel XE#688]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#1392]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#1392]) +7 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [PASS][204] -> [SKIP][205] ([Intel XE#1392]) +6 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][206] ([Intel XE#2322]) +6 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#288]) +50 other tests skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#255]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][209] ([Intel XE#2229]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][210] ([Intel XE#1192]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-8/igt@xe_live_ktest@xe_mocs.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][211] ([Intel XE#1999]) +2 other tests fail [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_oa@mi-rpc: - shard-dg2-set2: NOTRUN -> [SKIP][212] ([Intel XE#2541] / [Intel XE#3573]) +14 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@xe_oa@mi-rpc.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][213] ([Intel XE#1173]) +3 other tests fail [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][214] ([Intel XE#2427]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@xe_peer2peer@write.html - shard-lnl: NOTRUN -> [SKIP][215] ([Intel XE#1061]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-basic: - shard-lnl: NOTRUN -> [SKIP][216] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][217] ([Intel XE#2284] / [Intel XE#366]) +4 other tests skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][218] ([Intel XE#2284]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][219] ([Intel XE#584]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-3/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-bmg: [PASS][220] -> [DMESG-WARN][221] ([Intel XE#4172] / [Intel XE#569]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@xe_pm@s3-d3hot-basic-exec.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@xe_pm@s3-d3hot-basic-exec.html - shard-dg2-set2: NOTRUN -> [DMESG-WARN][222] ([Intel XE#1033] / [Intel XE#569]) +1 other test dmesg-warn [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: NOTRUN -> [DMESG-WARN][223] ([Intel XE#4172] / [Intel XE#569]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-dg2-set2: NOTRUN -> [ABORT][224] ([Intel XE#1033] / [Intel XE#4268]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@xe_pm@s4-vm-bind-prefetch.html - shard-lnl: NOTRUN -> [ABORT][225] ([Intel XE#4268]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-4/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][226] ([Intel XE#944]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][227] ([Intel XE#944]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html - shard-lnl: NOTRUN -> [SKIP][228] ([Intel XE#944]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_sriov_auto_provisioning@exclusive-ranges: - shard-bmg: NOTRUN -> [SKIP][229] ([Intel XE#4130]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@xe_sriov_auto_provisioning@exclusive-ranges.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#4130]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: - shard-dg2-set2: NOTRUN -> [SKIP][231] ([Intel XE#4130]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html * igt@xe_sriov_flr@flr-twice: - shard-dg2-set2: NOTRUN -> [SKIP][232] ([Intel XE#4273]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@xe_sriov_flr@flr-twice.html #### Possible fixes #### * igt@kms_async_flips@crc@pipe-d-hdmi-a-3: - shard-bmg: [DMESG-WARN][233] ([Intel XE#4172]) -> [PASS][234] +47 other tests pass [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [DMESG-WARN][235] ([Intel XE#1033]) -> [PASS][236] +48 other tests pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][237] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-dg2-set2: [SKIP][239] ([Intel XE#309]) -> [PASS][240] +2 other tests pass [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [SKIP][241] ([Intel XE#2291]) -> [PASS][242] +3 other tests pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2-set2: [SKIP][243] -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_dp_linktrain_fallback@dp-fallback.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: [DMESG-WARN][245] ([Intel XE#2955]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-434/igt@kms_flip@2x-dpms-vs-vblank-race.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-bmg: [SKIP][247] ([Intel XE#2316]) -> [PASS][248] +3 other tests pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][249] ([Intel XE#3321]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [DMESG-WARN][251] ([Intel XE#2955]) -> [PASS][252] +2 other tests pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html - shard-dg2-set2: [ABORT][253] ([Intel XE#2625]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-dg2-set2: [SKIP][255] ([Intel XE#310]) -> [PASS][256] +1 other test pass [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_flip@2x-nonexisting-fb-interruptible.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [DMESG-WARN][257] -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-lnl: [FAIL][259] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1: - shard-lnl: [FAIL][261] ([Intel XE#886]) -> [PASS][262] +2 other tests pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4: - shard-dg2-set2: [FAIL][263] ([Intel XE#301]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp2: - shard-bmg: [INCOMPLETE][265] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp2.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp2.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2-set2: [SKIP][267] ([Intel XE#656]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][269] ([Intel XE#1503]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_hdr@invalid-hdr.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_hdr@invalid-hdr.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2-set2: [SKIP][271] ([Intel XE#836]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-dg2-set2: [SKIP][273] ([Intel XE#455]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vrr@flip-basic: - shard-lnl: [FAIL][275] ([Intel XE#1522]) -> [PASS][276] +9 other tests pass [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@kms_vrr@flip-basic.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-6/igt@kms_vrr@flip-basic.html * igt@xe_evict@evict-large-multi-vm: - shard-dg2-set2: [DMESG-WARN][277] ([Intel XE#1033] / [Intel XE#1473]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-434/igt@xe_evict@evict-large-multi-vm.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@xe_evict@evict-large-multi-vm.html * igt@xe_exec_basic@twice-null-defer-bind: - shard-dg2-set2: [DMESG-WARN][279] ([Intel XE#4113]) -> [PASS][280] +1 other test pass [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@xe_exec_basic@twice-null-defer-bind.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@xe_exec_basic@twice-null-defer-bind.html * igt@xe_module_load@load: - shard-lnl: ([PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [SKIP][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306]) ([Intel XE#378]) -> ([PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-6/igt@xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-6/igt@xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@xe_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@xe_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-4/igt@xe_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-7/igt@xe_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-8/igt@xe_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-8/igt@xe_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-5/igt@xe_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-5/igt@xe_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-5/igt@xe_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-5/igt@xe_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-7/igt@xe_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-5/igt@xe_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-7/igt@xe_module_load@load.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-7/igt@xe_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-4/igt@xe_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-4/igt@xe_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@xe_module_load@load.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-3/igt@xe_module_load@load.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-3/igt@xe_module_load@load.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-3/igt@xe_module_load@load.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-8/igt@xe_module_load@load.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-3/igt@xe_module_load@load.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-6/igt@xe_module_load@load.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@xe_module_load@load.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-6/igt@xe_module_load@load.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@xe_module_load@load.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-6/igt@xe_module_load@load.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@xe_module_load@load.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@xe_module_load@load.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@xe_module_load@load.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-2/igt@xe_module_load@load.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-8/igt@xe_module_load@load.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-8/igt@xe_module_load@load.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@xe_module_load@load.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-5/igt@xe_module_load@load.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-4/igt@xe_module_load@load.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-8/igt@xe_module_load@load.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@xe_module_load@load.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-7/igt@xe_module_load@load.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-4/igt@xe_module_load@load.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-3/igt@xe_module_load@load.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-4/igt@xe_module_load@load.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-4/igt@xe_module_load@load.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-6/igt@xe_module_load@load.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-3/igt@xe_module_load@load.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-8/igt@xe_module_load@load.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-3/igt@xe_module_load@load.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-lnl-8/igt@xe_module_load@load.html - shard-bmg: ([PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [SKIP][357]) ([Intel XE#2457]) -> ([PASS][358], [PASS][359], [PASS][360], [PASS][361], [PASS][362], [PASS][363], [PASS][364], [PASS][365], [PASS][366], [PASS][367], [PASS][368], [PASS][369], [PASS][370], [PASS][371], [PASS][372], [PASS][373], [PASS][374], [PASS][375], [PASS][376], [PASS][377], [PASS][378], [PASS][379], [PASS][380], [PASS][381], [PASS][382]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@xe_module_load@load.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@xe_module_load@load.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@xe_module_load@load.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@xe_module_load@load.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@xe_module_load@load.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@xe_module_load@load.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@xe_module_load@load.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@xe_module_load@load.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@xe_module_load@load.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@xe_module_load@load.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@xe_module_load@load.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@xe_module_load@load.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@xe_module_load@load.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@xe_module_load@load.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@xe_module_load@load.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@xe_module_load@load.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@xe_module_load@load.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@xe_module_load@load.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@xe_module_load@load.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@xe_module_load@load.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@xe_module_load@load.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@xe_module_load@load.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@xe_module_load@load.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@xe_module_load@load.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@xe_module_load@load.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@xe_module_load@load.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@xe_module_load@load.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@xe_module_load@load.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@xe_module_load@load.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@xe_module_load@load.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@xe_module_load@load.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@xe_module_load@load.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@xe_module_load@load.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@xe_module_load@load.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@xe_module_load@load.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@xe_module_load@load.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@xe_module_load@load.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@xe_module_load@load.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@xe_module_load@load.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@xe_module_load@load.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@xe_module_load@load.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@xe_module_load@load.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@xe_module_load@load.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@xe_module_load@load.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@xe_module_load@load.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@xe_module_load@load.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@xe_module_load@load.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@xe_module_load@load.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@xe_module_load@load.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@xe_module_load@load.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@xe_module_load@load.html - shard-dg2-set2: ([PASS][383], [PASS][384], [PASS][385], [PASS][386], [PASS][387], [PASS][388], [PASS][389], [PASS][390], [PASS][391], [PASS][392], [PASS][393], [PASS][394], [PASS][395], [PASS][396], [PASS][397], [PASS][398], [SKIP][399], [PASS][400], [PASS][401], [PASS][402], [PASS][403], [PASS][404]) ([Intel XE#378]) -> ([PASS][405], [PASS][406], [PASS][407], [PASS][408], [PASS][409], [PASS][410], [PASS][411], [PASS][412], [PASS][413], [PASS][414], [PASS][415], [PASS][416], [PASS][417], [PASS][418], [PASS][419], [PASS][420], [PASS][421], [PASS][422], [PASS][423], [PASS][424], [PASS][425], [PASS][426], [PASS][427], [PASS][428], [PASS][429]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-466/igt@xe_module_load@load.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-432/igt@xe_module_load@load.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@xe_module_load@load.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-463/igt@xe_module_load@load.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@xe_module_load@load.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@xe_module_load@load.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@xe_module_load@load.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@xe_module_load@load.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@xe_module_load@load.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-434/igt@xe_module_load@load.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-436/igt@xe_module_load@load.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-434/igt@xe_module_load@load.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-436/igt@xe_module_load@load.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-463/igt@xe_module_load@load.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-463/igt@xe_module_load@load.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@xe_module_load@load.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-436/igt@xe_module_load@load.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-436/igt@xe_module_load@load.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@xe_module_load@load.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@xe_module_load@load.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-466/igt@xe_module_load@load.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-466/igt@xe_module_load@load.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@xe_module_load@load.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@xe_module_load@load.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@xe_module_load@load.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@xe_module_load@load.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@xe_module_load@load.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@xe_module_load@load.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@xe_module_load@load.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@xe_module_load@load.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@xe_module_load@load.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@xe_module_load@load.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@xe_module_load@load.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@xe_module_load@load.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@xe_module_load@load.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@xe_module_load@load.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@xe_module_load@load.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@xe_module_load@load.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@xe_module_load@load.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@xe_module_load@load.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@xe_module_load@load.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@xe_module_load@load.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@xe_module_load@load.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@xe_module_load@load.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@xe_module_load@load.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@xe_module_load@load.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@xe_module_load@load.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-bmg: [DMESG-WARN][430] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][431] +1 other test pass [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@xe_pm@s3-vm-bind-prefetch.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@xe_pm@s3-vm-bind-prefetch.html - shard-dg2-set2: [DMESG-WARN][432] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@xe_pm@s3-vm-bind-prefetch.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-463/igt@xe_pm@s3-vm-bind-prefetch.html #### Warnings #### * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][434] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][435] ([Intel XE#787]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][436] ([Intel XE#787]) -> [SKIP][437] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_color@ctm-0-75: - shard-dg2-set2: [DMESG-WARN][438] ([Intel XE#4113]) -> [DMESG-WARN][439] ([Intel XE#1033]) [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_color@ctm-0-75.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-432/igt@kms_color@ctm-0-75.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: [FAIL][440] ([Intel XE#1178]) -> [SKIP][441] ([Intel XE#455]) [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_content_protection@atomic-dpms.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@legacy: - shard-dg2-set2: [SKIP][442] ([Intel XE#455]) -> [FAIL][443] ([Intel XE#1178]) [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_content_protection@legacy.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: [DMESG-FAIL][444] ([Intel XE#1033]) -> [SKIP][445] ([Intel XE#455]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_content_protection@lic-type-0.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: [DMESG-FAIL][446] ([Intel XE#4172]) -> [FAIL][447] ([Intel XE#1178]) +1 other test fail [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][448] ([Intel XE#2341]) -> [FAIL][449] ([Intel XE#1178]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_content_protection@srm.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_content_protection@srm.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-dg2-set2: [DMESG-WARN][450] ([Intel XE#1033]) -> [SKIP][451] ([Intel XE#310]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_flip@2x-blocking-absolute-wf_vblank.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: [SKIP][452] ([Intel XE#2316]) -> [INCOMPLETE][453] ([Intel XE#2049]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_flip@2x-blocking-wf_vblank.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [DMESG-FAIL][454] ([Intel XE#4172]) -> [FAIL][455] ([Intel XE#3321]) [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-bmg: [DMESG-WARN][456] ([Intel XE#4172]) -> [SKIP][457] ([Intel XE#2316]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-bmg: [SKIP][458] ([Intel XE#2316]) -> [DMESG-WARN][459] ([Intel XE#4172]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_flip@2x-plain-flip-interruptible.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_flip@2x-plain-flip-interruptible.html - shard-dg2-set2: [SKIP][460] ([Intel XE#310]) -> [DMESG-WARN][461] ([Intel XE#1033]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_flip@2x-plain-flip-interruptible.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][462] ([Intel XE#2049] / [Intel XE#2597]) -> [DMESG-WARN][463] ([Intel XE#4172]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [INCOMPLETE][464] ([Intel XE#2049] / [Intel XE#2597]) -> [DMESG-WARN][465] ([Intel XE#2955]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@d-dp4: - shard-dg2-set2: [INCOMPLETE][466] ([Intel XE#2049] / [Intel XE#2597]) -> [DMESG-WARN][467] ([Intel XE#1033]) [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][468] ([Intel XE#2311]) -> [SKIP][469] ([Intel XE#2312]) +10 other tests skip [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][470] ([Intel XE#2312]) -> [SKIP][471] ([Intel XE#2311]) +13 other tests skip [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][472] ([Intel XE#2312]) -> [SKIP][473] ([Intel XE#4141]) +3 other tests skip [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][474] ([Intel XE#4141]) -> [SKIP][475] ([Intel XE#2312]) +3 other tests skip [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][476] ([Intel XE#656]) -> [SKIP][477] ([Intel XE#651]) +8 other tests skip [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][478] ([Intel XE#651]) -> [SKIP][479] ([Intel XE#656]) +10 other tests skip [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][480] ([Intel XE#2313]) -> [SKIP][481] ([Intel XE#2312]) +12 other tests skip [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][482] ([Intel XE#2312]) -> [SKIP][483] ([Intel XE#2313]) +15 other tests skip [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][484] ([Intel XE#653]) -> [SKIP][485] ([Intel XE#656]) +5 other tests skip [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][486] ([Intel XE#656]) -> [SKIP][487] ([Intel XE#653]) +3 other tests skip [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][488] ([Intel XE#362]) -> [SKIP][489] ([Intel XE#1500]) [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_pm@s4-exec-after: - shard-bmg: [ABORT][490] ([Intel XE#4172] / [Intel XE#4268]) -> [ABORT][491] ([Intel XE#4268]) [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@xe_pm@s4-exec-after.html [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-bmg-4/igt@xe_pm@s4-exec-after.html - shard-dg2-set2: [ABORT][492] ([Intel XE#1033] / [Intel XE#4268]) -> [ABORT][493] ([Intel XE#4268]) [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-463/igt@xe_pm@s4-exec-after.html [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/shard-dg2-434/igt@xe_pm@s4-exec-after.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4113 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8229 -> IGTPW_12588 * Linux: xe-2652-b9696aa14a67620661572e94f4141df2a4b6b5cd -> xe-2657-dbf65862427b99b51ac5279560a1f7995779480b IGTPW_12588: 12588 IGT_8229: 8229 xe-2652-b9696aa14a67620661572e94f4141df2a4b6b5cd: b9696aa14a67620661572e94f4141df2a4b6b5cd xe-2657-dbf65862427b99b51ac5279560a1f7995779480b: dbf65862427b99b51ac5279560a1f7995779480b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12588/index.html [-- Attachment #2: Type: text/html, Size: 129556 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification @ 2025-02-17 21:35 Swati Sharma 2025-02-17 21:35 ` [PATCH i-g-t 5/5] tests/intel/kms_cdclk: Use igt_get_max_cdclk() Swati Sharma 0 siblings, 1 reply; 15+ messages in thread From: Swati Sharma @ 2025-02-17 21:35 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma Based on the review comments received, add highres and lowres functions to lib and made corresponding changes in the lib. On top, broken initial patches into smaller patches to better review. Swati Sharma (5): lib/igt_kms: Add func() to read and parse cdclk debugfs lib/igt_kms: Add highres() and lowres() func tests/intel/kms_cdclk: Add conditions to filter valid outputs tests/intel/kms_cdclk: Introduce set_mode() tests/intel/kms_cdclk: Use igt_get_max_cdclk() lib/igt_kms.c | 110 ++++++++++++++++---- lib/igt_kms.h | 4 + tests/intel/kms_cdclk.c | 207 +++++++++++++++----------------------- tests/intel/kms_dsc.c | 14 +-- tests/kms_display_modes.c | 14 +-- 5 files changed, 177 insertions(+), 172 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 5/5] tests/intel/kms_cdclk: Use igt_get_max_cdclk() 2025-02-17 21:35 [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma @ 2025-02-17 21:35 ` Swati Sharma 0 siblings, 0 replies; 15+ messages in thread From: Swati Sharma @ 2025-02-17 21:35 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma Replace hardcoded max cdclk freq with one computed from debugfs. in igt_get_max_cdclk(). Also, add same condition for all_outputs subtest. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> --- tests/intel/kms_cdclk.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/intel/kms_cdclk.c b/tests/intel/kms_cdclk.c index b84ec5cae..22561ab5c 100644 --- a/tests/intel/kms_cdclk.c +++ b/tests/intel/kms_cdclk.c @@ -53,7 +53,6 @@ IGT_TEST_DESCRIPTION("Test cdclk features : crawling and squashing"); #define HDISPLAY_4K 3840 #define VDISPLAY_4K 2160 #define VREFRESH 60 -#define MAX_CDCLK_4K 307200 /* Test flags */ enum { @@ -227,7 +226,7 @@ static void test_mode_transition(data_t *data, enum pipe pipe, igt_output_t *out igt_info("CD clock frequency %d -> %d\n", cdclk_ref, cdclk_new); /* cdclk should bump */ - if (cdclk_new != MAX_CDCLK_4K) + if (cdclk_new != igt_get_max_cdclk(data->drm_fd)) igt_assert_lt(cdclk_ref, cdclk_new); /* cleanup */ @@ -314,7 +313,8 @@ static void test_mode_transition_on_all_outputs(data_t *data) igt_info("CD clock frequency %d -> %d\n", cdclk_ref, cdclk_new); /* cdclk should bump */ - igt_assert_lt(cdclk_ref, cdclk_new); + if (cdclk_new != igt_get_max_cdclk(data->drm_fd)) + igt_assert_lt(cdclk_ref, cdclk_new); do_cleanup_display(display); igt_remove_fb(data->drm_fd, &fb); -- 2.25.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
end of thread, other threads:[~2025-02-17 21:30 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-13 11:08 [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma 2025-02-13 11:08 ` [PATCH i-g-t 1/5] lib/igt_kms: Add highres() and lowres() func Swati Sharma 2025-02-17 8:12 ` Nautiyal, Ankit K 2025-02-13 11:08 ` [PATCH i-g-t 2/5] tests/intel/kms_cdclk: Add conditions to filter valid outputs Swati Sharma 2025-02-17 8:17 ` Nautiyal, Ankit K 2025-02-13 11:08 ` [PATCH i-g-t 3/5] tests/intel/kms_cdclk: Introduce set_mode() Swati Sharma 2025-02-13 11:08 ` [PATCH i-g-t 4/5] lib/igt_kms: Add igt_get_max_cdclk() Swati Sharma 2025-02-17 8:35 ` Nautiyal, Ankit K 2025-02-13 11:08 ` [PATCH i-g-t 5/5] tests/intel/kms_cdclk: Use igt_get_max_cdclk() Swati Sharma 2025-02-17 8:36 ` Nautiyal, Ankit K 2025-02-13 12:33 ` ✓ Xe.CI.BAT: success for tests/intel/kms_cdclk: Refactor mode setting and CD clock verification (rev3) Patchwork 2025-02-13 12:50 ` ✓ i915.CI.BAT: " Patchwork 2025-02-13 20:09 ` ✗ i915.CI.Full: failure " Patchwork 2025-02-14 4:35 ` ✗ Xe.CI.Full: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2025-02-17 21:35 [PATCH i-g-t 0/5] tests/intel/kms_cdclk: Refactor mode setting and CD clock verification Swati Sharma 2025-02-17 21:35 ` [PATCH i-g-t 5/5] tests/intel/kms_cdclk: Use igt_get_max_cdclk() Swati Sharma
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox