* [PATCH i-g-t v8 0/4] Add new test to validate adaptive sharpness filter
@ 2024-11-22 18:57 Swati Sharma
2024-11-22 18:57 ` [PATCH i-g-t, v7 1/4] lib/igt_kms: Add "sharpness strength" as crtc property Swati Sharma
` (7 more replies)
0 siblings, 8 replies; 10+ messages in thread
From: Swati Sharma @ 2024-11-22 18:57 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
New test is added to validate adaptive sharpness filter on
LNL platform. Pipe scaler is repurposed to perform a portion
of this work. This means pipe scaling will be unavailable while
the sharpening function is being used. The other scaler can be
used for plane scaler.
In this series, attempt is made to validate adaptive sharpness
solution which helps in improving the image quality. For this new
CRTC property is added. The user can set this property with desired
sharpness strength value with 0-255. A value of 1 representing
minimum sharpening strength and 255 representing maximum
sharpness strength. A strength value of 0 means no sharpening or
sharpening feature disabled.
KMD: https://patchwork.freedesktop.org/series/138754/
Swati Sharma (4):
lib/igt_kms: Add "sharpness strength" as crtc property
lib/igt_kms: Add func() to return scaling mode name string
tests/kms_sharpness_filter: Add adaptive sharpness filter test
tests/chamelium/kms_chamelium_sharpness_filter: Add basic test
lib/igt_kms.c | 23 +
lib/igt_kms.h | 2 +
.../kms_chamelium_sharpness_filter.c | 240 ++++++
tests/kms_sharpness_filter.c | 739 ++++++++++++++++++
tests/meson.build | 3 +
5 files changed, 1007 insertions(+)
create mode 100644 tests/chamelium/kms_chamelium_sharpness_filter.c
create mode 100644 tests/kms_sharpness_filter.c
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH i-g-t, v7 1/4] lib/igt_kms: Add "sharpness strength" as crtc property 2024-11-22 18:57 [PATCH i-g-t v8 0/4] Add new test to validate adaptive sharpness filter Swati Sharma @ 2024-11-22 18:57 ` Swati Sharma 2024-11-22 18:57 ` [PATCH i-g-t, v2 2/4] lib/igt_kms: Add func() to return scaling mode name string Swati Sharma ` (6 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Swati Sharma @ 2024-11-22 18:57 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma, Mohammed Thasleem, Ankit Nautiyal Add "sharpness strength" as crtc property. v2: Replace SHARPENESS_STRENGTH with SHARPNESS_STRENGTH. (Nemesa) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> --- lib/igt_kms.c | 4 ++++ lib/igt_kms.h | 1 + 2 files changed, 5 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 5d8096a17..e5acde438 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -702,6 +702,7 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = { [IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR", [IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED", [IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER", + [IGT_CRTC_SHARPNESS_STRENGTH] = "SHARPNESS_STRENGTH", }; const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = { @@ -2587,6 +2588,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe) if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SCALING_FILTER)) igt_pipe_obj_set_prop_enum(pipe, IGT_CRTC_SCALING_FILTER, "Default"); + if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH)) + igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_SHARPNESS_STRENGTH, 0); + pipe->out_fence_fd = -1; } diff --git a/lib/igt_kms.h b/lib/igt_kms.h index bd154d1c1..fbe132577 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -164,6 +164,7 @@ enum igt_atomic_crtc_properties { IGT_CRTC_OUT_FENCE_PTR, IGT_CRTC_VRR_ENABLED, IGT_CRTC_SCALING_FILTER, + IGT_CRTC_SHARPNESS_STRENGTH, IGT_NUM_CRTC_PROPS }; -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t, v2 2/4] lib/igt_kms: Add func() to return scaling mode name string 2024-11-22 18:57 [PATCH i-g-t v8 0/4] Add new test to validate adaptive sharpness filter Swati Sharma 2024-11-22 18:57 ` [PATCH i-g-t, v7 1/4] lib/igt_kms: Add "sharpness strength" as crtc property Swati Sharma @ 2024-11-22 18:57 ` Swati Sharma 2024-11-22 18:57 ` [PATCH i-g-t, v8 3/4] tests/kms_sharpness_filter: Add adaptive sharpness filter test Swati Sharma ` (5 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Swati Sharma @ 2024-11-22 18:57 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma, Ankit Nautiyal Add func() to print scaling mode name string. v2: -replaced uint32_t with int (Ankit) -fixed subject (Ankit) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> --- lib/igt_kms.c | 19 +++++++++++++++++++ lib/igt_kms.h | 1 + 2 files changed, 20 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index e5acde438..6c474b8f1 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -1042,6 +1042,25 @@ const char *kmstest_scaling_filter_str(int filter) return find_type_name(scaling_filter_names, filter); } +static const struct type_name scaling_modes_names[] = { + { DRM_MODE_SCALE_FULLSCREEN, "fullscreen" }, + { DRM_MODE_SCALE_CENTER, "center" }, + { DRM_MODE_SCALE_ASPECT, "aspect" }, + { DRM_MODE_SCALE_NONE, "none" }, + {} +}; + +/** + * kmstest_scaling_mode_str: + * @mode: SCALING_MODE_* mode value + * + * Returns: A string representing the scaling mode @mode. + */ +const char *kmstest_scaling_mode_str(int mode) +{ + return find_type_name(scaling_modes_names, mode); +} + static const struct type_name dsc_output_format_names[] = { { DSC_FORMAT_RGB, "RGB" }, { DSC_FORMAT_YCBCR420, "YCBCR420" }, diff --git a/lib/igt_kms.h b/lib/igt_kms.h index fbe132577..7fda89117 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -143,6 +143,7 @@ const char *kmstest_encoder_type_str(int type); const char *kmstest_connector_status_str(int status); const char *kmstest_connector_type_str(int type); const char *kmstest_scaling_filter_str(int filter); +const char *kmstest_scaling_mode_str(int mode); const char *kmstest_dsc_output_format_str(int output_format); void kmstest_dump_mode(drmModeModeInfo *mode); -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t, v8 3/4] tests/kms_sharpness_filter: Add adaptive sharpness filter test 2024-11-22 18:57 [PATCH i-g-t v8 0/4] Add new test to validate adaptive sharpness filter Swati Sharma 2024-11-22 18:57 ` [PATCH i-g-t, v7 1/4] lib/igt_kms: Add "sharpness strength" as crtc property Swati Sharma 2024-11-22 18:57 ` [PATCH i-g-t, v2 2/4] lib/igt_kms: Add func() to return scaling mode name string Swati Sharma @ 2024-11-22 18:57 ` Swati Sharma 2024-12-03 5:27 ` Nautiyal, Ankit K 2024-11-22 18:57 ` [PATCH i-g-t, v2 4/4] tests/chamelium/kms_chamelium_sharpness_filter: Add basic test Swati Sharma ` (4 subsequent siblings) 7 siblings, 1 reply; 10+ messages in thread From: Swati Sharma @ 2024-11-22 18:57 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma, Mohammed Thasleem New test is added to validate adaptive sharpness filter on LNL platform. Various testcases are added to validate this feature. These are non CRC based tests and manual verification is required. Pipe scaler is repurposed to perform a portion of this work. This means pipe scaling will be unavailable while the sharpening function is being used. The other scaler can be used for plane scaler. 15 subtests are added: -basic: verify basic functionality -toggle: switch between enable and disable -tap: verify different taps selected based on resolution -modifiers: verify casf with different modifiers -rotation: verify casf with different rotation -formats: verify casf with different formats -dpms: verify casf with dpms -suspend: verify casf with suspend -upscale: apply plane scaler and casf together -downscale: apply plane scaler and casf together -strength: vary strength and check difference in sharpness -invalid filter with scaler: enable scaler on 2 planes and attempt is made to enable casf -invalid filter with plane: enable 2 NV12 planes and attempt is made to enable casf -invalid plane with filter: enable 1 NV12 plane and casf and attempt is made to enable 2nd NV12 plane -invalid filter with scaling mode: enable scaling_mode property and attempt is made to enable casf TODO: -Enable casf with varying output formats (YCBCR/RGB) v2: -Updated modifier type to uint64_t. -Replaced IGT_CRTC_SHARPENESS_STRENGTH with IGT_CRTC_SHARPNESS_STRENGTH. v3: -Updated setup_fb with height and width. v4: -Renamed tests/intel/kms_sharpness_filter.c -> tests/kms_sharpness_filter.c (Ankit) -Added subtest invalid filter with connector. (Ankit) -Updated documentation. (Bhanu) -Used driver_close_driver instead close. (Bhanu) -Added check to avoid debug print for invalid tests and filter strength = 0. (Ankit) v5: -Instead of using default strength as MAX, use MID value strength. -Add relevant debug print for test skip. -Fix indentation. -Renamed invalid-filter-with-connector -> invalid-filter-with-scaling-mode -Reworked on invalid-filter-with-scaling-mode(), added provision to validate other scaling modes. v6: -Skip test if ret=-EINVAL for downscaling test. -Change if() for tap subtest. v8: -Optimize tap-filter subtest (Ankit) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> --- tests/kms_sharpness_filter.c | 739 +++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 740 insertions(+) create mode 100644 tests/kms_sharpness_filter.c diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c new file mode 100644 index 000000000..9f261e72f --- /dev/null +++ b/tests/kms_sharpness_filter.c @@ -0,0 +1,739 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2024 Intel Corporation + */ + +/** + * TEST: kms sharpness filter + * Category: Display + * Description: Test to validate content adaptive sharpness filter + * Driver requirement: xe + * Functionality: casf + * Mega feature: General Display Features + * Test category: functionality test + */ + +#include "igt.h" +#include "igt_kms.h" + +/** + * SUBTEST: filter-basic + * Description: Verify basic content adaptive sharpness filter. + * + * SUBTEST: filter-tap + * Description: Verify that following a resolution change, distict taps are selected. + * + * SUBTEST: filter-strength + * Description: Verify that varying strength (0-255), affects the degree of sharpeness applied. + * + * SUBTEST: filter-toggle + * Description: Verify toggling between enabling and disabling content adaptive sharpness filter. + * + * SUBTEST: filter-modifiers + * Description: Verify content adaptive sharpness filter with varying modifiers. + * Functionality: casf, tiling + * + * SUBTEST: filter-rotations + * Description: Verify content adaptive sharpness filter with varying rotations. + * Functionality: casf, rotation + * + * SUBTEST: filter-formats + * Description: Verify content adaptive sharpness filter with varying formats. + * Functionality: casf, pixel-format + * + * SUBTEST: filter-dpms + * Description: Verify content adaptive sharpness filter with DPMS. + * Functionality: casf, dpms + * + * SUBTEST: filter-suspend + * Description: Verify content adaptive sharpness filter with suspend. + * Functionality: casf, suspend + * + * SUBTEST: filter-scaler-upscale + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. + * Functionality: casf, scaling + * + * SUBTEST: filter-scaler-downscale + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. + * Functionality: casf, scaling + * + * SUBTEST: invalid-filter-with-scaler + * Description: Negative check for content adaptive sharpness filter + * when 2 plane scalers have already been enabled and + * attempt is made to enable sharpness filter. + * Functionality: casf, scaling + * + * SUBTEST: invalid-filter-with-plane + * Description: Negative check for content adaptive sharpness filter + * when 2 NV12 planes have already been enabled and attempt is + * made to enable the sharpness filter. + * Functionality: casf, plane + * + * SUBTEST: invalid-plane-with-filter + * Description: Negative check for content adaptive sharpness filter + * when 1 NV12 plane and sharpness filter have already been enabled + * and attempt is made to enable the second NV12 plane. + * Functionality: casf, plane + * + * SUBTEST: invalid-filter-with-scaling-mode + * Description: Negative check for content adaptive sharpness filter + * when scaling mode is already enabled and attempt is made to enable + * sharpness filter. + * Functionality: casf, scaling +*/ + +IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter"); + +/* + * Until the CRC support is added test needs to be invoked with + * --interactive|--i to manually verify if "sharpened" image + * is seen without corruption for each subtest. + */ + +#define TAP_3 3 +#define TAP_5 5 +#define TAP_7 7 +#define DISABLE_FILTER 0 +#define MIN_FILTER_STRENGTH 1 +#define MID_FILTER_STRENGTH 128 +#define MAX_FILTER_STRENGTH 255 +#define MAX_PIXELS_FOR_3_TAP_FILTER (1920 * 1080) +#define MAX_PIXELS_FOR_5_TAP_FILTER (3840 * 2160) +#define NROUNDS 10 +#define INVALID_TEST ((type == TEST_INVALID_FILTER_WITH_SCALER) \ + || (type == TEST_INVALID_FILTER_WITH_PLANE) \ + || (type == TEST_INVALID_PLANE_WITH_FILTER) \ + || (type == TEST_INVALID_FILTER_WITH_SCALING_MODE)) +#define SET_PLANES ((type == TEST_FILTER_UPSCALE) \ + || (type == TEST_FILTER_DOWNSCALE) \ + || (type == TEST_INVALID_FILTER_WITH_SCALER) \ + || (type == TEST_INVALID_FILTER_WITH_PLANE) \ + || (type == TEST_INVALID_FILTER_WITH_SCALING_MODE)) + +enum test_type { + TEST_FILTER_TAP, + TEST_FILTER_BASIC, + TEST_FILTER_TOGGLE, + TEST_FILTER_MODIFIERS, + TEST_FILTER_ROTATION, + TEST_FILTER_FORMATS, + TEST_FILTER_DPMS, + TEST_FILTER_SUSPEND, + TEST_FILTER_UPSCALE, + TEST_FILTER_DOWNSCALE, + TEST_FILTER_STRENGTH, + TEST_INVALID_FILTER_WITH_SCALER, + TEST_INVALID_FILTER_WITH_PLANE, + TEST_INVALID_PLANE_WITH_FILTER, + TEST_INVALID_FILTER_WITH_SCALING_MODE, +}; + +const int filter_strength_list[] = { + MIN_FILTER_STRENGTH, + (MIN_FILTER_STRENGTH + MID_FILTER_STRENGTH) / 2, + MID_FILTER_STRENGTH, + (MID_FILTER_STRENGTH + MAX_FILTER_STRENGTH) / 2, + MAX_FILTER_STRENGTH, +}; +const int filter_tap_list[] = { + TAP_3, + TAP_5, + TAP_7, +}; +static const struct { + uint64_t modifier; + const char *name; +} modifiers[] = { + { DRM_FORMAT_MOD_LINEAR, "linear", }, + { I915_FORMAT_MOD_X_TILED, "x-tiled", }, + { I915_FORMAT_MOD_4_TILED, "4-tiled", }, +}; +static const int formats[] = { + DRM_FORMAT_NV12, + DRM_FORMAT_RGB565, + DRM_FORMAT_XRGB8888, + DRM_FORMAT_XBGR16161616F, +}; +static const igt_rotation_t rotations[] = { + IGT_ROTATION_0, + IGT_ROTATION_180, +}; +static const uint32_t scaling_modes[] = { + DRM_MODE_SCALE_FULLSCREEN, + DRM_MODE_SCALE_CENTER, + DRM_MODE_SCALE_ASPECT, +}; + +typedef struct { + int drm_fd; + bool limited; + enum pipe pipe_id; + struct igt_fb fb[4]; + igt_pipe_t *pipe; + igt_display_t display; + igt_output_t *output; + igt_plane_t *plane[4]; + drmModeModeInfo *mode; + int filter_strength; + int filter_tap; + uint64_t modifier; + const char *modifier_name; + uint32_t format; + igt_rotation_t rotation; + uint32_t scaling_mode; +} data_t; + +static void set_filter_strength_on_pipe(data_t *data) +{ + igt_pipe_set_prop_value(&data->display, data->pipe_id, + IGT_CRTC_SHARPNESS_STRENGTH, + data->filter_strength); +} + +static bool has_scaling_mode(igt_output_t *output) +{ + return igt_output_has_prop(output, IGT_CONNECTOR_SCALING_MODE) && + igt_output_get_prop(output, IGT_CONNECTOR_SCALING_MODE); +} + +static drmModeModeInfo *get_mode(igt_output_t *output, int tap) +{ + drmModeConnector *connector = output->config.connector; + drmModeModeInfo *mode[3] = { NULL }; + int total_pixels = 0; + + /* + * TAP 3: mode->hdisplay <= 1920 && mode->vdisplay <= 1080 + * TAP 5: mode->hdisplay > 1920 && mode->vdisplay > 1080 + * TAP 7: mode->hdisplay >= 3840 && mode->vdisplay >= 2160 + */ + for (int i = 0; i < connector->count_modes; i++) { + total_pixels = connector->modes[i].hdisplay * connector->modes[i].vdisplay; + + if (total_pixels <= MAX_PIXELS_FOR_3_TAP_FILTER && mode[0] == NULL) + mode[0] = &connector->modes[i]; + + if (total_pixels > MAX_PIXELS_FOR_3_TAP_FILTER && + total_pixels <= MAX_PIXELS_FOR_5_TAP_FILTER && mode[1] == NULL) + mode[1] = &connector->modes[i]; + + if (total_pixels > MAX_PIXELS_FOR_5_TAP_FILTER && mode[2] == NULL) + mode[2] = &connector->modes[i]; + } + + switch (tap) { + case TAP_3: + return mode[0]; + case TAP_5: + return mode[1]; + case TAP_7: + return mode[2]; + default: + igt_assert(0); + } +} + +static void paint_image(igt_fb_t *fb) +{ + cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb); + int img_x, img_y, img_w, img_h; + const char *file = "1080p-left.png"; + + img_x = img_y = 0; + img_w = fb->width; + img_h = fb->height; + + igt_paint_image(cr, file, img_x, img_y, img_w, img_h); + + igt_put_cairo_ctx(cr); +} + +static void setup_fb(int fd, int width, int height, uint32_t format, + uint64_t modifier, struct igt_fb *fb) +{ + int fb_id; + + fb_id = igt_create_fb(fd, width, height, format, modifier, fb); + igt_assert(fb_id); + + paint_image(fb); +} + +static void cleanup_fbs(data_t *data) +{ + for (int i = 0; i < ARRAY_SIZE(data->fb); i++) + igt_remove_fb(data->drm_fd, &data->fb[i]); +} + +static void cleanup(data_t *data) +{ + igt_display_reset(&data->display); + + cleanup_fbs(data); +} + +static void set_planes(data_t *data, enum test_type type) +{ + int ret; + drmModeModeInfo *mode = data->mode; + igt_output_t *output = data->output; + + data->plane[1] = igt_output_get_plane(output, 1); + data->plane[2] = igt_output_get_plane(output, 2); + + if (type == TEST_FILTER_UPSCALE) { + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); + } + + if (type == TEST_FILTER_DOWNSCALE) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_size(data->plane[1], mode->hdisplay * 0.75, mode->vdisplay * 0.75); + } + + if (type == TEST_INVALID_FILTER_WITH_SCALER) { + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[2]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_fb(data->plane[2], &data->fb[2]); + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); + igt_plane_set_size(data->plane[2], mode->hdisplay, mode->vdisplay); + } + + if (type == TEST_INVALID_FILTER_WITH_PLANE) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[2]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_fb(data->plane[2], &data->fb[2]); + } + + if (type == TEST_INVALID_PLANE_WITH_FILTER) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + } + + if (type == TEST_INVALID_FILTER_WITH_SCALING_MODE) { + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); + setup_fb(data->drm_fd, 640, 480, data->format, data->modifier, &data->fb[2]); + igt_plane_set_fb(data->plane[1], &data->fb[1]); + igt_plane_set_fb(data->plane[2], &data->fb[2]); + + ret = igt_display_try_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); + igt_assert_eq(ret, 0); + + mode->hdisplay = 640; + mode->vdisplay = 480; + + igt_output_override_mode(data->output, mode); + igt_plane_set_fb(data->plane[2], NULL); + igt_plane_set_fb(data->plane[1], &data->fb[2]); + + igt_output_set_prop_value(data->output, IGT_CONNECTOR_SCALING_MODE, data->scaling_mode); + } +} + +static void test_sharpness_filter(data_t *data, enum test_type type) +{ + igt_output_t *output = data->output; + drmModeModeInfo *mode = data->mode; + int height = mode->hdisplay; + int width = mode->vdisplay; + int ret; + + igt_display_reset(&data->display); + igt_output_set_pipe(output, data->pipe_id); + + if (type == TEST_FILTER_TAP) { + mode = get_mode(output, data->filter_tap); + igt_require(mode != NULL); + igt_info("Mode %dx%d@%d on output %s\n", mode->hdisplay, mode->vdisplay, mode->vrefresh, + igt_output_name(output)); + igt_output_override_mode(output, mode); + } + + data->plane[0] = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY); + igt_skip_on_f(!igt_plane_has_format_mod(data->plane[0], data->format, data->modifier), + "No requested format/modifier on pipe %s\n", kmstest_pipe_name(data->pipe_id)); + + setup_fb(data->drm_fd, height, width, data->format, data->modifier, &data->fb[0]); + igt_plane_set_fb(data->plane[0], &data->fb[0]); + + if (igt_plane_has_rotation(data->plane[0], data->rotation)) + igt_plane_set_rotation(data->plane[0], data->rotation); + else + igt_skip("No requested rotation on pipe %s\n", kmstest_pipe_name(data->pipe_id)); + + if (type == TEST_INVALID_FILTER_WITH_SCALING_MODE) + igt_require_f(has_scaling_mode(output), "No connecter scaling mode found on %s\n", output->name); + + if (SET_PLANES) + set_planes(data, type); + + /* Set filter strength property */ + set_filter_strength_on_pipe(data); + + if (!INVALID_TEST && data->filter_strength != 0) + igt_debug("Sharpened image should be observed for filter strength > 0\n"); + + if (type == TEST_INVALID_FILTER_WITH_SCALING_MODE) + ret = igt_display_try_commit_atomic(&data->display, 0, NULL); + else + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); + + if (type == TEST_FILTER_DPMS) { + kmstest_set_connector_dpms(data->drm_fd, + output->config.connector, + DRM_MODE_DPMS_OFF); + kmstest_set_connector_dpms(data->drm_fd, + output->config.connector, + DRM_MODE_DPMS_ON); + } + + if (type == TEST_FILTER_SUSPEND) + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, + SUSPEND_TEST_NONE); + + if (type == TEST_INVALID_PLANE_WITH_FILTER) { + data->plane[3] = igt_output_get_plane(data->output, 3); + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[3]); + igt_plane_set_fb(data->plane[3], &data->fb[3]); + + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); + } + + if (type == TEST_FILTER_DOWNSCALE) + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL, + "Scaling op not supported, cdclk limits might be exceeded.\n"); + + if (INVALID_TEST) + igt_assert_eq(ret, -EINVAL); + else + igt_assert_eq(ret, 0); + + cleanup(data); +} + +static bool has_sharpness_filter(igt_pipe_t *pipe) +{ + return igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH); +} + +static void +run_sharpness_filter_test(data_t *data, enum test_type type) +{ + igt_display_t *display = &data->display; + igt_output_t *output; + enum pipe pipe; + char name[40]; + + for_each_pipe_with_valid_output(display, pipe, output) { + igt_display_reset(display); + + data->output = output; + data->pipe_id = pipe; + data->pipe = &display->pipes[data->pipe_id]; + data->mode = igt_output_get_mode(data->output); + + if (!has_sharpness_filter(data->pipe)) { + igt_info("%s: Doesn't support IGT_CRTC_SHARPNESS_STRENGTH.\n", + kmstest_pipe_name(pipe)); + continue; + } + + igt_output_set_pipe(output, pipe); + + if (!intel_pipe_output_combo_valid(display)) { + igt_output_set_pipe(output, PIPE_NONE); + continue; + } + + switch (type) { + case TEST_FILTER_BASIC: + snprintf(name, sizeof(name), "-basic"); + break; + case TEST_FILTER_TAP: + snprintf(name, sizeof(name), "-tap-%d", data->filter_tap); + break; + case TEST_FILTER_TOGGLE: + snprintf(name, sizeof(name), "-toggle"); + break; + case TEST_FILTER_MODIFIERS: + snprintf(name, sizeof(name), "-%s", data->modifier_name); + break; + case TEST_FILTER_ROTATION: + snprintf(name, sizeof(name), "-%srot", igt_plane_rotation_name(data->rotation)); + break; + case TEST_FILTER_FORMATS: + snprintf(name, sizeof(name), "-%s", igt_format_str(data->format)); + break; + case TEST_FILTER_DPMS: + snprintf(name, sizeof(name), "-dpms"); + break; + case TEST_FILTER_SUSPEND: + snprintf(name, sizeof(name), "-suspend"); + break; + case TEST_FILTER_UPSCALE: + snprintf(name, sizeof(name), "-upscale"); + break; + case TEST_FILTER_DOWNSCALE: + snprintf(name, sizeof(name), "-downscale"); + break; + case TEST_INVALID_FILTER_WITH_SCALER: + snprintf(name, sizeof(name), "-invalid-filter-with-scaler"); + break; + case TEST_INVALID_FILTER_WITH_PLANE: + snprintf(name, sizeof(name), "-invalid-filter-with-plane"); + break; + case TEST_INVALID_PLANE_WITH_FILTER: + snprintf(name, sizeof(name), "-invalid-plane-with-filter"); + break; + case TEST_FILTER_STRENGTH: + snprintf(name, sizeof(name), "-strength-%d", data->filter_strength); + break; + case TEST_INVALID_FILTER_WITH_SCALING_MODE: + snprintf(name, sizeof(name), "-invalid-filter-with-scaling-mode-%s", kmstest_scaling_mode_str(data->scaling_mode)); + break; + default: + igt_assert(0); + } + + igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(data->pipe_id), data->output->name, name) + test_sharpness_filter(data, type); + + if (data->limited) + break; + } +} + +static int opt_handler(int opt, int opt_index, void *_data) +{ + data_t *data = _data; + + switch (opt) { + case 'l': + data->limited = true; + break; + default: + return IGT_OPT_HANDLER_ERROR; + } + + return IGT_OPT_HANDLER_SUCCESS; +} + +static const char help_str[] = + " --limited|-l\t\tLimit execution to 1 valid pipe-output combo\n"; + +data_t data = {}; + +igt_main_args("l", NULL, help_str, opt_handler, &data) +{ + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_ANY); + + kmstest_set_vt_graphics_mode(); + + igt_display_require(&data.display, data.drm_fd); + igt_require(data.display.is_atomic); + igt_display_require_output(&data.display); + } + + igt_describe("Verify basic content adaptive sharpness filter."); + igt_subtest_with_dynamic("filter-basic") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MID_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_BASIC); + } + + igt_describe("Verify that following a resolution change, " + "distict taps are selected."); + igt_subtest_with_dynamic("filter-tap") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MID_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(filter_tap_list); k++) { + data.filter_tap = filter_tap_list[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_TAP); + } + } + + igt_describe("Verify that varying strength(0-255), affects " + "the degree of sharpeness applied."); + igt_subtest_with_dynamic("filter-strength") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + + for (int k = 0; k < ARRAY_SIZE(filter_strength_list); k++) { + data.filter_strength = filter_strength_list[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_STRENGTH); + } + } + + igt_describe("Verify toggling between enabling and disabling " + "content adaptive sharpness filter."); + igt_subtest_with_dynamic("filter-toggle") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + + for (int k = 0; k < NROUNDS; k++) { + data.filter_strength = DISABLE_FILTER; + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); + data.filter_strength = MAX_FILTER_STRENGTH; + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying modifiers."); + igt_subtest_with_dynamic("filter-modifiers") { + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MID_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(modifiers); k++) { + data.modifier = modifiers[k].modifier; + data.modifier_name = modifiers[k].name; + + run_sharpness_filter_test(&data, TEST_FILTER_MODIFIERS); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying rotations."); + igt_subtest_with_dynamic("filter-rotations") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MID_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(rotations); k++) { + data.rotation = rotations[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_ROTATION); + } + } + + igt_describe("Verify content adaptive sharpness filter with " + "varying formats."); + igt_subtest_with_dynamic("filter-formats") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.filter_strength = MID_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(formats); k++) { + data.format = formats[k]; + + run_sharpness_filter_test(&data, TEST_FILTER_FORMATS); + } + } + + igt_describe("Verify content adaptive sharpness filter " + "with DPMS."); + igt_subtest_with_dynamic("filter-dpms") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MID_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_DPMS); + } + + igt_describe("Verify content adaptive sharpness filter " + "with suspend."); + igt_subtest_with_dynamic("filter-suspend") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MID_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_SUSPEND); + } + + igt_describe("Verify content adaptive sharpness filter " + "with 1 plane scaler enabled."); + igt_subtest_with_dynamic("filter-scaler-upscale") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MID_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_UPSCALE); + } + + igt_describe("Verify content adaptive sharpness filter " + "with 1 plane scaler enabled."); + igt_subtest_with_dynamic("filter-scaler-downscale") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MID_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_FILTER_DOWNSCALE); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 2 plane scalers have already been enabled and " + "attempt is made to enable sharpness filter."); + igt_subtest_with_dynamic("invalid-filter-with-scaler") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MID_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_SCALER); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 2 NV12 planes have already been enabled and attempt is " + "made to enable the sharpness filter."); + igt_subtest_with_dynamic("invalid-filter-with-plane") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_NV12; + data.filter_strength = MID_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_PLANE); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when 1 NV12 plane and sharpness filter have already been enabled " + "and attempt is made to enable the second NV12 plane."); + igt_subtest_with_dynamic("invalid-plane-with-filter") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_NV12; + data.filter_strength = MID_FILTER_STRENGTH; + + run_sharpness_filter_test(&data, TEST_INVALID_PLANE_WITH_FILTER); + } + + igt_describe("Negative check for content adaptive sharpness filter " + "when scaling mode is already enabled and attempt is made " + "to enable sharpness filter."); + igt_subtest_with_dynamic("invalid-filter-with-scaling-mode") { + data.modifier = DRM_FORMAT_MOD_LINEAR; + data.rotation = IGT_ROTATION_0; + data.format = DRM_FORMAT_XRGB8888; + data.filter_strength = MID_FILTER_STRENGTH; + + for (int k = 0; k < ARRAY_SIZE(scaling_modes); k++) { + data.scaling_mode = scaling_modes[k]; + + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_SCALING_MODE); + } + } + + igt_fixture { + igt_display_fini(&data.display); + drm_close_driver(data.drm_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 2724c7a9a..84d8bed4b 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -58,6 +58,7 @@ test_progs = [ 'kms_sequence', 'kms_setmode', 'kms_sysfs_edid_timing', + 'kms_sharpness_filter', 'kms_tiled_display', 'kms_tv_load_detect', 'kms_universal_plane', -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t, v8 3/4] tests/kms_sharpness_filter: Add adaptive sharpness filter test 2024-11-22 18:57 ` [PATCH i-g-t, v8 3/4] tests/kms_sharpness_filter: Add adaptive sharpness filter test Swati Sharma @ 2024-12-03 5:27 ` Nautiyal, Ankit K 0 siblings, 0 replies; 10+ messages in thread From: Nautiyal, Ankit K @ 2024-12-03 5:27 UTC (permalink / raw) To: Swati Sharma, igt-dev; +Cc: Mohammed Thasleem On 11/23/2024 12:27 AM, Swati Sharma wrote: > New test is added to validate adaptive sharpness filter on > LNL platform. Various testcases are added to validate this > feature. These are non CRC based tests and manual verification > is required. > > Pipe scaler is repurposed to perform a portion of this work. > This means pipe scaling will be unavailable while the sharpening > function is being used. The other scaler can be used for plane > scaler. > > 15 subtests are added: > -basic: verify basic functionality > -toggle: switch between enable and disable > -tap: verify different taps selected based on resolution > -modifiers: verify casf with different modifiers > -rotation: verify casf with different rotation > -formats: verify casf with different formats > -dpms: verify casf with dpms > -suspend: verify casf with suspend > -upscale: apply plane scaler and casf together > -downscale: apply plane scaler and casf together > -strength: vary strength and check difference in sharpness > -invalid filter with scaler: enable scaler on 2 planes and attempt > is made to enable casf > -invalid filter with plane: enable 2 NV12 planes and attempt > is made to enable casf > -invalid plane with filter: enable 1 NV12 plane and casf and attempt > is made to enable 2nd NV12 plane > -invalid filter with scaling mode: enable scaling_mode property and attempt > is made to enable casf > > TODO: -Enable casf with varying output formats (YCBCR/RGB) > > v2: -Updated modifier type to uint64_t. > -Replaced IGT_CRTC_SHARPENESS_STRENGTH with IGT_CRTC_SHARPNESS_STRENGTH. > v3: -Updated setup_fb with height and width. > v4: -Renamed tests/intel/kms_sharpness_filter.c -> tests/kms_sharpness_filter.c (Ankit) > -Added subtest invalid filter with connector. (Ankit) > -Updated documentation. (Bhanu) > -Used driver_close_driver instead close. (Bhanu) > -Added check to avoid debug print for invalid tests and filter strength = 0. (Ankit) > v5: -Instead of using default strength as MAX, use MID value strength. > -Add relevant debug print for test skip. > -Fix indentation. > -Renamed invalid-filter-with-connector -> invalid-filter-with-scaling-mode > -Reworked on invalid-filter-with-scaling-mode(), added provision to > validate other scaling modes. > v6: -Skip test if ret=-EINVAL for downscaling test. > -Change if() for tap subtest. > v8: -Optimize tap-filter subtest (Ankit) > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> > --- > tests/kms_sharpness_filter.c | 739 +++++++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 740 insertions(+) > create mode 100644 tests/kms_sharpness_filter.c > > diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c > new file mode 100644 > index 000000000..9f261e72f > --- /dev/null > +++ b/tests/kms_sharpness_filter.c > @@ -0,0 +1,739 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2024 Intel Corporation > + */ > + > +/** > + * TEST: kms sharpness filter > + * Category: Display > + * Description: Test to validate content adaptive sharpness filter > + * Driver requirement: xe > + * Functionality: casf > + * Mega feature: General Display Features > + * Test category: functionality test > + */ > + > +#include "igt.h" > +#include "igt_kms.h" > + > +/** > + * SUBTEST: filter-basic > + * Description: Verify basic content adaptive sharpness filter. > + * > + * SUBTEST: filter-tap > + * Description: Verify that following a resolution change, distict taps are selected. > + * > + * SUBTEST: filter-strength > + * Description: Verify that varying strength (0-255), affects the degree of sharpeness applied. > + * > + * SUBTEST: filter-toggle > + * Description: Verify toggling between enabling and disabling content adaptive sharpness filter. > + * > + * SUBTEST: filter-modifiers > + * Description: Verify content adaptive sharpness filter with varying modifiers. > + * Functionality: casf, tiling > + * > + * SUBTEST: filter-rotations > + * Description: Verify content adaptive sharpness filter with varying rotations. > + * Functionality: casf, rotation > + * > + * SUBTEST: filter-formats > + * Description: Verify content adaptive sharpness filter with varying formats. > + * Functionality: casf, pixel-format > + * > + * SUBTEST: filter-dpms > + * Description: Verify content adaptive sharpness filter with DPMS. > + * Functionality: casf, dpms > + * > + * SUBTEST: filter-suspend > + * Description: Verify content adaptive sharpness filter with suspend. > + * Functionality: casf, suspend > + * > + * SUBTEST: filter-scaler-upscale > + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. > + * Functionality: casf, scaling > + * > + * SUBTEST: filter-scaler-downscale > + * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled. > + * Functionality: casf, scaling > + * > + * SUBTEST: invalid-filter-with-scaler > + * Description: Negative check for content adaptive sharpness filter > + * when 2 plane scalers have already been enabled and > + * attempt is made to enable sharpness filter. > + * Functionality: casf, scaling > + * > + * SUBTEST: invalid-filter-with-plane > + * Description: Negative check for content adaptive sharpness filter > + * when 2 NV12 planes have already been enabled and attempt is > + * made to enable the sharpness filter. > + * Functionality: casf, plane > + * > + * SUBTEST: invalid-plane-with-filter > + * Description: Negative check for content adaptive sharpness filter > + * when 1 NV12 plane and sharpness filter have already been enabled > + * and attempt is made to enable the second NV12 plane. > + * Functionality: casf, plane > + * > + * SUBTEST: invalid-filter-with-scaling-mode > + * Description: Negative check for content adaptive sharpness filter > + * when scaling mode is already enabled and attempt is made to enable > + * sharpness filter. > + * Functionality: casf, scaling > +*/ > + > +IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter"); > + > +/* > + * Until the CRC support is added test needs to be invoked with > + * --interactive|--i to manually verify if "sharpened" image > + * is seen without corruption for each subtest. > + */ > + > +#define TAP_3 3 > +#define TAP_5 5 > +#define TAP_7 7 > +#define DISABLE_FILTER 0 > +#define MIN_FILTER_STRENGTH 1 > +#define MID_FILTER_STRENGTH 128 > +#define MAX_FILTER_STRENGTH 255 > +#define MAX_PIXELS_FOR_3_TAP_FILTER (1920 * 1080) > +#define MAX_PIXELS_FOR_5_TAP_FILTER (3840 * 2160) > +#define NROUNDS 10 > +#define INVALID_TEST ((type == TEST_INVALID_FILTER_WITH_SCALER) \ > + || (type == TEST_INVALID_FILTER_WITH_PLANE) \ > + || (type == TEST_INVALID_PLANE_WITH_FILTER) \ > + || (type == TEST_INVALID_FILTER_WITH_SCALING_MODE)) > +#define SET_PLANES ((type == TEST_FILTER_UPSCALE) \ > + || (type == TEST_FILTER_DOWNSCALE) \ > + || (type == TEST_INVALID_FILTER_WITH_SCALER) \ > + || (type == TEST_INVALID_FILTER_WITH_PLANE) \ > + || (type == TEST_INVALID_FILTER_WITH_SCALING_MODE)) > + > +enum test_type { > + TEST_FILTER_TAP, > + TEST_FILTER_BASIC, > + TEST_FILTER_TOGGLE, > + TEST_FILTER_MODIFIERS, > + TEST_FILTER_ROTATION, > + TEST_FILTER_FORMATS, > + TEST_FILTER_DPMS, > + TEST_FILTER_SUSPEND, > + TEST_FILTER_UPSCALE, > + TEST_FILTER_DOWNSCALE, > + TEST_FILTER_STRENGTH, > + TEST_INVALID_FILTER_WITH_SCALER, > + TEST_INVALID_FILTER_WITH_PLANE, > + TEST_INVALID_PLANE_WITH_FILTER, > + TEST_INVALID_FILTER_WITH_SCALING_MODE, > +}; > + > +const int filter_strength_list[] = { > + MIN_FILTER_STRENGTH, > + (MIN_FILTER_STRENGTH + MID_FILTER_STRENGTH) / 2, > + MID_FILTER_STRENGTH, > + (MID_FILTER_STRENGTH + MAX_FILTER_STRENGTH) / 2, > + MAX_FILTER_STRENGTH, > +}; > +const int filter_tap_list[] = { > + TAP_3, > + TAP_5, > + TAP_7, > +}; > +static const struct { > + uint64_t modifier; > + const char *name; > +} modifiers[] = { > + { DRM_FORMAT_MOD_LINEAR, "linear", }, > + { I915_FORMAT_MOD_X_TILED, "x-tiled", }, > + { I915_FORMAT_MOD_4_TILED, "4-tiled", }, > +}; > +static const int formats[] = { > + DRM_FORMAT_NV12, > + DRM_FORMAT_RGB565, > + DRM_FORMAT_XRGB8888, > + DRM_FORMAT_XBGR16161616F, > +}; > +static const igt_rotation_t rotations[] = { > + IGT_ROTATION_0, > + IGT_ROTATION_180, > +}; > +static const uint32_t scaling_modes[] = { > + DRM_MODE_SCALE_FULLSCREEN, > + DRM_MODE_SCALE_CENTER, > + DRM_MODE_SCALE_ASPECT, > +}; > + > +typedef struct { > + int drm_fd; > + bool limited; > + enum pipe pipe_id; > + struct igt_fb fb[4]; > + igt_pipe_t *pipe; > + igt_display_t display; > + igt_output_t *output; > + igt_plane_t *plane[4]; > + drmModeModeInfo *mode; > + int filter_strength; > + int filter_tap; > + uint64_t modifier; > + const char *modifier_name; > + uint32_t format; > + igt_rotation_t rotation; > + uint32_t scaling_mode; > +} data_t; > + > +static void set_filter_strength_on_pipe(data_t *data) > +{ > + igt_pipe_set_prop_value(&data->display, data->pipe_id, > + IGT_CRTC_SHARPNESS_STRENGTH, > + data->filter_strength); > +} > + > +static bool has_scaling_mode(igt_output_t *output) > +{ > + return igt_output_has_prop(output, IGT_CONNECTOR_SCALING_MODE) && > + igt_output_get_prop(output, IGT_CONNECTOR_SCALING_MODE); > +} > + > +static drmModeModeInfo *get_mode(igt_output_t *output, int tap) Currently we loop for each filter tap (3 ,5, 7) for each pipe (0,1,2,3) for each connected output for each mode, just to find the appropriate mode. With 4 panels each with say 10 modes, this becomes 3 x 4 x 4 x10 iterations. I think what we need is a function to get 3 appropriate modes 1 for each filter tap for a given output. That way we need to iterate over the number of modes of a given output only once. Something like: staticvoidget_modes_for_filter_taps(igt_output_t *output, drmModeModeInfo *mode[3]){ ... for (int i = 0; i < connector->count_modes; i++) { total_pixels = connector->modes[i].hdisplay * connector->modes[i].vdisplay; if (total_pixels <= MAX_PIXELS_FOR_3_TAP_FILTER) mode[0] = &connector->modes[i]; if (total_pixels > MAX_PIXELS_FOR_3_TAP_FILTER && total_pixels <= MAX_PIXELS_FOR_5_TAP_FILTER) mode[1] = &connector->modes[i]; if (total_pixels > MAX_PIXELS_FOR_5_TAP_FILTER) mode[2] = &connector->modes[i]; } ... } The function can be called in the loop for each output and then we can iterate over number of filter taps 3, 5, 7. > +{ > + drmModeConnector *connector = output->config.connector; > + drmModeModeInfo *mode[3] = { NULL }; > + int total_pixels = 0; > + > + /* > + * TAP 3: mode->hdisplay <= 1920 && mode->vdisplay <= 1080 > + * TAP 5: mode->hdisplay > 1920 && mode->vdisplay > 1080 > + * TAP 7: mode->hdisplay >= 3840 && mode->vdisplay >= 2160 > + */ > + for (int i = 0; i < connector->count_modes; i++) { > + total_pixels = connector->modes[i].hdisplay * connector->modes[i].vdisplay; > + > + if (total_pixels <= MAX_PIXELS_FOR_3_TAP_FILTER && mode[0] == NULL) > + mode[0] = &connector->modes[i]; > + > + if (total_pixels > MAX_PIXELS_FOR_3_TAP_FILTER && > + total_pixels <= MAX_PIXELS_FOR_5_TAP_FILTER && mode[1] == NULL) > + mode[1] = &connector->modes[i]; > + > + if (total_pixels > MAX_PIXELS_FOR_5_TAP_FILTER && mode[2] == NULL) > + mode[2] = &connector->modes[i]; > + } > + > + switch (tap) { > + case TAP_3: > + return mode[0]; > + case TAP_5: > + return mode[1]; > + case TAP_7: > + return mode[2]; > + default: > + igt_assert(0); > + } > +} > + > +static void paint_image(igt_fb_t *fb) > +{ > + cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb); > + int img_x, img_y, img_w, img_h; > + const char *file = "1080p-left.png"; > + > + img_x = img_y = 0; > + img_w = fb->width; > + img_h = fb->height; > + > + igt_paint_image(cr, file, img_x, img_y, img_w, img_h); > + > + igt_put_cairo_ctx(cr); > +} > + > +static void setup_fb(int fd, int width, int height, uint32_t format, > + uint64_t modifier, struct igt_fb *fb) > +{ > + int fb_id; > + > + fb_id = igt_create_fb(fd, width, height, format, modifier, fb); > + igt_assert(fb_id); > + > + paint_image(fb); > +} > + > +static void cleanup_fbs(data_t *data) > +{ > + for (int i = 0; i < ARRAY_SIZE(data->fb); i++) > + igt_remove_fb(data->drm_fd, &data->fb[i]); > +} > + > +static void cleanup(data_t *data) > +{ > + igt_display_reset(&data->display); > + > + cleanup_fbs(data); > +} > + > +static void set_planes(data_t *data, enum test_type type) > +{ > + int ret; > + drmModeModeInfo *mode = data->mode; > + igt_output_t *output = data->output; > + > + data->plane[1] = igt_output_get_plane(output, 1); > + data->plane[2] = igt_output_get_plane(output, 2); > + > + if (type == TEST_FILTER_UPSCALE) { > + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); > + } > + > + if (type == TEST_FILTER_DOWNSCALE) { > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_size(data->plane[1], mode->hdisplay * 0.75, mode->vdisplay * 0.75); > + } > + > + if (type == TEST_INVALID_FILTER_WITH_SCALER) { > + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]); > + setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[2]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_fb(data->plane[2], &data->fb[2]); > + igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay); > + igt_plane_set_size(data->plane[2], mode->hdisplay, mode->vdisplay); > + } > + > + if (type == TEST_INVALID_FILTER_WITH_PLANE) { > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[2]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_fb(data->plane[2], &data->fb[2]); > + } > + > + if (type == TEST_INVALID_PLANE_WITH_FILTER) { > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + } > + > + if (type == TEST_INVALID_FILTER_WITH_SCALING_MODE) { > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]); > + setup_fb(data->drm_fd, 640, 480, data->format, data->modifier, &data->fb[2]); > + igt_plane_set_fb(data->plane[1], &data->fb[1]); > + igt_plane_set_fb(data->plane[2], &data->fb[2]); > + > + ret = igt_display_try_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL); > + igt_assert_eq(ret, 0); > + > + mode->hdisplay = 640; > + mode->vdisplay = 480; > + > + igt_output_override_mode(data->output, mode); > + igt_plane_set_fb(data->plane[2], NULL); > + igt_plane_set_fb(data->plane[1], &data->fb[2]); > + > + igt_output_set_prop_value(data->output, IGT_CONNECTOR_SCALING_MODE, data->scaling_mode); > + } > +} > + > +static void test_sharpness_filter(data_t *data, enum test_type type) > +{ > + igt_output_t *output = data->output; > + drmModeModeInfo *mode = data->mode; > + int height = mode->hdisplay; > + int width = mode->vdisplay; > + int ret; > + > + igt_display_reset(&data->display); > + igt_output_set_pipe(output, data->pipe_id); > + > + if (type == TEST_FILTER_TAP) { > + mode = get_mode(output, data->filter_tap); > + igt_require(mode != NULL); > + igt_info("Mode %dx%d@%d on output %s\n", mode->hdisplay, mode->vdisplay, mode->vrefresh, > + igt_output_name(output)); > + igt_output_override_mode(output, mode); > + } > + > + data->plane[0] = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY); > + igt_skip_on_f(!igt_plane_has_format_mod(data->plane[0], data->format, data->modifier), > + "No requested format/modifier on pipe %s\n", kmstest_pipe_name(data->pipe_id)); > + > + setup_fb(data->drm_fd, height, width, data->format, data->modifier, &data->fb[0]); > + igt_plane_set_fb(data->plane[0], &data->fb[0]); > + > + if (igt_plane_has_rotation(data->plane[0], data->rotation)) > + igt_plane_set_rotation(data->plane[0], data->rotation); > + else > + igt_skip("No requested rotation on pipe %s\n", kmstest_pipe_name(data->pipe_id)); > + > + if (type == TEST_INVALID_FILTER_WITH_SCALING_MODE) > + igt_require_f(has_scaling_mode(output), "No connecter scaling mode found on %s\n", output->name); > + > + if (SET_PLANES) > + set_planes(data, type); > + > + /* Set filter strength property */ > + set_filter_strength_on_pipe(data); > + > + if (!INVALID_TEST && data->filter_strength != 0) > + igt_debug("Sharpened image should be observed for filter strength > 0\n"); > + > + if (type == TEST_INVALID_FILTER_WITH_SCALING_MODE) > + ret = igt_display_try_commit_atomic(&data->display, 0, NULL); > + else > + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); > + > + if (type == TEST_FILTER_DPMS) { > + kmstest_set_connector_dpms(data->drm_fd, > + output->config.connector, > + DRM_MODE_DPMS_OFF); > + kmstest_set_connector_dpms(data->drm_fd, > + output->config.connector, > + DRM_MODE_DPMS_ON); > + } > + > + if (type == TEST_FILTER_SUSPEND) > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, > + SUSPEND_TEST_NONE); > + > + if (type == TEST_INVALID_PLANE_WITH_FILTER) { > + data->plane[3] = igt_output_get_plane(data->output, 3); > + setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[3]); > + igt_plane_set_fb(data->plane[3], &data->fb[3]); > + > + ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); > + } > + > + if (type == TEST_FILTER_DOWNSCALE) > + igt_skip_on_f(ret == -ERANGE || ret == -EINVAL, > + "Scaling op not supported, cdclk limits might be exceeded.\n"); > + > + if (INVALID_TEST) > + igt_assert_eq(ret, -EINVAL); > + else > + igt_assert_eq(ret, 0); > + > + cleanup(data); > +} > + > +static bool has_sharpness_filter(igt_pipe_t *pipe) > +{ > + return igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH); > +} > + > +static void > +run_sharpness_filter_test(data_t *data, enum test_type type) > +{ > + igt_display_t *display = &data->display; > + igt_output_t *output; > + enum pipe pipe; > + char name[40]; > + > + for_each_pipe_with_valid_output(display, pipe, output) { Instead of this perhaps we should use for_each_connected_output() then for each pipe So if we have DP-1, DP-2, DP-3 we will run DP-1 for pipe 0 to3, for filter tap 3,5,7 then DP-2 and so on... With this we just need to iterate over modes of each output once. > + igt_display_reset(display); > + > + data->output = output; > + data->pipe_id = pipe; > + data->pipe = &display->pipes[data->pipe_id]; > + data->mode = igt_output_get_mode(data->output); > + > + if (!has_sharpness_filter(data->pipe)) { > + igt_info("%s: Doesn't support IGT_CRTC_SHARPNESS_STRENGTH.\n", > + kmstest_pipe_name(pipe)); > + continue; > + } > + > + igt_output_set_pipe(output, pipe); > + > + if (!intel_pipe_output_combo_valid(display)) { > + igt_output_set_pipe(output, PIPE_NONE); > + continue; > + } > + > + switch (type) { > + case TEST_FILTER_BASIC: > + snprintf(name, sizeof(name), "-basic"); > + break; > + case TEST_FILTER_TAP: > + snprintf(name, sizeof(name), "-tap-%d", data->filter_tap); > + break; > + case TEST_FILTER_TOGGLE: > + snprintf(name, sizeof(name), "-toggle"); > + break; > + case TEST_FILTER_MODIFIERS: > + snprintf(name, sizeof(name), "-%s", data->modifier_name); > + break; > + case TEST_FILTER_ROTATION: > + snprintf(name, sizeof(name), "-%srot", igt_plane_rotation_name(data->rotation)); > + break; > + case TEST_FILTER_FORMATS: > + snprintf(name, sizeof(name), "-%s", igt_format_str(data->format)); > + break; > + case TEST_FILTER_DPMS: > + snprintf(name, sizeof(name), "-dpms"); > + break; > + case TEST_FILTER_SUSPEND: > + snprintf(name, sizeof(name), "-suspend"); > + break; > + case TEST_FILTER_UPSCALE: > + snprintf(name, sizeof(name), "-upscale"); > + break; > + case TEST_FILTER_DOWNSCALE: > + snprintf(name, sizeof(name), "-downscale"); > + break; > + case TEST_INVALID_FILTER_WITH_SCALER: > + snprintf(name, sizeof(name), "-invalid-filter-with-scaler"); > + break; > + case TEST_INVALID_FILTER_WITH_PLANE: > + snprintf(name, sizeof(name), "-invalid-filter-with-plane"); > + break; > + case TEST_INVALID_PLANE_WITH_FILTER: > + snprintf(name, sizeof(name), "-invalid-plane-with-filter"); > + break; > + case TEST_FILTER_STRENGTH: > + snprintf(name, sizeof(name), "-strength-%d", data->filter_strength); > + break; > + case TEST_INVALID_FILTER_WITH_SCALING_MODE: > + snprintf(name, sizeof(name), "-invalid-filter-with-scaling-mode-%s", kmstest_scaling_mode_str(data->scaling_mode)); > + break; > + default: > + igt_assert(0); > + } > + > + igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(data->pipe_id), data->output->name, name) > + test_sharpness_filter(data, type); > + > + if (data->limited) > + break; > + } > +} > + > +static int opt_handler(int opt, int opt_index, void *_data) > +{ > + data_t *data = _data; > + > + switch (opt) { > + case 'l': > + data->limited = true; > + break; > + default: > + return IGT_OPT_HANDLER_ERROR; > + } > + > + return IGT_OPT_HANDLER_SUCCESS; > +} > + > +static const char help_str[] = > + " --limited|-l\t\tLimit execution to 1 valid pipe-output combo\n"; > + > +data_t data = {}; > + > +igt_main_args("l", NULL, help_str, opt_handler, &data) > +{ > + igt_fixture { > + data.drm_fd = drm_open_driver_master(DRIVER_ANY); > + > + kmstest_set_vt_graphics_mode(); > + > + igt_display_require(&data.display, data.drm_fd); > + igt_require(data.display.is_atomic); > + igt_display_require_output(&data.display); > + } > + > + igt_describe("Verify basic content adaptive sharpness filter."); > + igt_subtest_with_dynamic("filter-basic") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; Alignment seems to be off here, also in below dynamic subtests. Also IMHO this patch can be broken into smaller patches, perhaps one for the skeleton with basic tests. Then one to add invalid tests, filter tap tests etc. that introduce separate functions/macros etc. Regards, Ankit > + > + run_sharpness_filter_test(&data, TEST_FILTER_BASIC); > + } > + > + igt_describe("Verify that following a resolution change, " > + "distict taps are selected."); > + igt_subtest_with_dynamic("filter-tap") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + for (int k = 0; k < ARRAY_SIZE(filter_tap_list); k++) { > + data.filter_tap = filter_tap_list[k]; > + > + run_sharpness_filter_test(&data, TEST_FILTER_TAP); > + } > + } > + > + igt_describe("Verify that varying strength(0-255), affects " > + "the degree of sharpeness applied."); > + igt_subtest_with_dynamic("filter-strength") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + > + for (int k = 0; k < ARRAY_SIZE(filter_strength_list); k++) { > + data.filter_strength = filter_strength_list[k]; > + > + run_sharpness_filter_test(&data, TEST_FILTER_STRENGTH); > + } > + } > + > + igt_describe("Verify toggling between enabling and disabling " > + "content adaptive sharpness filter."); > + igt_subtest_with_dynamic("filter-toggle") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + > + for (int k = 0; k < NROUNDS; k++) { > + data.filter_strength = DISABLE_FILTER; > + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); > + data.filter_strength = MAX_FILTER_STRENGTH; > + run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE); > + } > + } > + > + igt_describe("Verify content adaptive sharpness filter with " > + "varying modifiers."); > + igt_subtest_with_dynamic("filter-modifiers") { > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + for (int k = 0; k < ARRAY_SIZE(modifiers); k++) { > + data.modifier = modifiers[k].modifier; > + data.modifier_name = modifiers[k].name; > + > + run_sharpness_filter_test(&data, TEST_FILTER_MODIFIERS); > + } > + } > + > + igt_describe("Verify content adaptive sharpness filter with " > + "varying rotations."); > + igt_subtest_with_dynamic("filter-rotations") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + for (int k = 0; k < ARRAY_SIZE(rotations); k++) { > + data.rotation = rotations[k]; > + > + run_sharpness_filter_test(&data, TEST_FILTER_ROTATION); > + } > + } > + > + igt_describe("Verify content adaptive sharpness filter with " > + "varying formats."); > + igt_subtest_with_dynamic("filter-formats") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + for (int k = 0; k < ARRAY_SIZE(formats); k++) { > + data.format = formats[k]; > + > + run_sharpness_filter_test(&data, TEST_FILTER_FORMATS); > + } > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with DPMS."); > + igt_subtest_with_dynamic("filter-dpms") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_DPMS); > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with suspend."); > + igt_subtest_with_dynamic("filter-suspend") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_SUSPEND); > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with 1 plane scaler enabled."); > + igt_subtest_with_dynamic("filter-scaler-upscale") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_UPSCALE); > + } > + > + igt_describe("Verify content adaptive sharpness filter " > + "with 1 plane scaler enabled."); > + igt_subtest_with_dynamic("filter-scaler-downscale") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_FILTER_DOWNSCALE); > + } > + > + igt_describe("Negative check for content adaptive sharpness filter " > + "when 2 plane scalers have already been enabled and " > + "attempt is made to enable sharpness filter."); > + igt_subtest_with_dynamic("invalid-filter-with-scaler") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_SCALER); > + } > + > + igt_describe("Negative check for content adaptive sharpness filter " > + "when 2 NV12 planes have already been enabled and attempt is " > + "made to enable the sharpness filter."); > + igt_subtest_with_dynamic("invalid-filter-with-plane") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_NV12; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_PLANE); > + } > + > + igt_describe("Negative check for content adaptive sharpness filter " > + "when 1 NV12 plane and sharpness filter have already been enabled " > + "and attempt is made to enable the second NV12 plane."); > + igt_subtest_with_dynamic("invalid-plane-with-filter") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_NV12; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + run_sharpness_filter_test(&data, TEST_INVALID_PLANE_WITH_FILTER); > + } > + > + igt_describe("Negative check for content adaptive sharpness filter " > + "when scaling mode is already enabled and attempt is made " > + "to enable sharpness filter."); > + igt_subtest_with_dynamic("invalid-filter-with-scaling-mode") { > + data.modifier = DRM_FORMAT_MOD_LINEAR; > + data.rotation = IGT_ROTATION_0; > + data.format = DRM_FORMAT_XRGB8888; > + data.filter_strength = MID_FILTER_STRENGTH; > + > + for (int k = 0; k < ARRAY_SIZE(scaling_modes); k++) { > + data.scaling_mode = scaling_modes[k]; > + > + run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_SCALING_MODE); > + } > + } > + > + igt_fixture { > + igt_display_fini(&data.display); > + drm_close_driver(data.drm_fd); > + } > +} > diff --git a/tests/meson.build b/tests/meson.build > index 2724c7a9a..84d8bed4b 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -58,6 +58,7 @@ test_progs = [ > 'kms_sequence', > 'kms_setmode', > 'kms_sysfs_edid_timing', > + 'kms_sharpness_filter', > 'kms_tiled_display', > 'kms_tv_load_detect', > 'kms_universal_plane', ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t, v2 4/4] tests/chamelium/kms_chamelium_sharpness_filter: Add basic test 2024-11-22 18:57 [PATCH i-g-t v8 0/4] Add new test to validate adaptive sharpness filter Swati Sharma ` (2 preceding siblings ...) 2024-11-22 18:57 ` [PATCH i-g-t, v8 3/4] tests/kms_sharpness_filter: Add adaptive sharpness filter test Swati Sharma @ 2024-11-22 18:57 ` Swati Sharma 2024-11-22 20:18 ` ✓ Xe.CI.BAT: success for Add new test to validate adaptive sharpness filter (rev9) Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Swati Sharma @ 2024-11-22 18:57 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma Add new chamelium based sharpness test. Basic test is added where we have tried comparing frame dump of unsharped and sharped image. After, sharpness filter is applied its expected both frame dumps will be different. v2: -removed MIN/MAX_FILTER_STRENGTH (Ankit) -fixed alignment (Ankit) -removed commit with fb_ref (Ankit) -set data->pipe_id (Ankit) -removed disable_filter_strength_on_pipe() -fixed CRASH -fixed assert condition Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- .../kms_chamelium_sharpness_filter.c | 240 ++++++++++++++++++ tests/meson.build | 2 + 2 files changed, 242 insertions(+) create mode 100644 tests/chamelium/kms_chamelium_sharpness_filter.c diff --git a/tests/chamelium/kms_chamelium_sharpness_filter.c b/tests/chamelium/kms_chamelium_sharpness_filter.c new file mode 100644 index 000000000..d7316723a --- /dev/null +++ b/tests/chamelium/kms_chamelium_sharpness_filter.c @@ -0,0 +1,240 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2024 Intel Corporation + */ + +/** + * TEST: kms chamelium sharpness filter + * Category: Display + * Description: Test to validate content adaptive sharpness filter using Chamelium + * Driver requirement: xe + * Functionality: chamelium, casf + * Mega feature: General Display Features + * Test category: functionality test + */ + +#include "igt.h" +#include "igt_kms.h" + +/** + * SUBTEST: filter-basic + * Description: Verify basic content adaptive sharpness filter. + */ + +IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter using Chamelium"); + +#define MID_FILTER_STRENGTH 128 + +typedef struct { + int drm_fd; + enum pipe pipe_id; + struct igt_fb fb, fb_ref; + igt_display_t display; + igt_output_t *output; + igt_plane_t *primary; + drmModeModeInfo *mode; + int filter_strength; + struct chamelium *chamelium; + struct chamelium_port **ports; + int port_count; +} data_t; + +static bool pipe_output_combo_valid(data_t *data, enum pipe pipe) +{ + bool ret = true; + + igt_output_set_pipe(data->output, pipe); + if (!intel_pipe_output_combo_valid(&data->display)) + ret = false; + igt_output_set_pipe(data->output, PIPE_NONE); + + return ret; +} + +static void set_filter_strength_on_pipe(data_t *data) +{ + igt_pipe_set_prop_value(&data->display, data->pipe_id, + IGT_CRTC_SHARPNESS_STRENGTH, + data->filter_strength); +} + +static void paint_image(igt_fb_t *fb) +{ + cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb); + int img_x, img_y, img_w, img_h; + const char *file = "1080p-left.png"; + + img_x = img_y = 0; + img_w = fb->width; + img_h = fb->height; + + igt_paint_image(cr, file, img_x, img_y, img_w, img_h); + + igt_put_cairo_ctx(cr); +} + +static void setup_fb(int fd, int width, int height, uint32_t format, + uint64_t modifier, struct igt_fb *fb) +{ + int fb_id; + + fb_id = igt_create_fb(fd, width, height, format, modifier, fb); + igt_assert(fb_id); + + paint_image(fb); +} + +static void cleanup(data_t *data) +{ + igt_remove_fb(data->drm_fd, &data->fb); + igt_remove_fb(data->drm_fd, &data->fb_ref); + igt_output_set_pipe(data->output, PIPE_NONE); + igt_output_override_mode(data->output, NULL); + igt_display_commit2(&data->display, COMMIT_ATOMIC); +} + + +static bool test_t(data_t *data, igt_plane_t *primary, + struct chamelium_port *port) +{ + struct chamelium_frame_dump *dump; + drmModeModeInfo *mode; + int height, width; + bool ret = false; + + igt_output_set_pipe(data->output, data->pipe_id); + + mode = igt_output_get_mode(data->output); + height = mode->hdisplay; + width = mode->vdisplay; + + setup_fb(data->drm_fd, height, width, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &data->fb_ref); + setup_fb(data->drm_fd, height, width, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &data->fb); + + igt_plane_set_fb(data->primary, &data->fb); + set_filter_strength_on_pipe(data); + igt_display_commit2(&data->display, COMMIT_ATOMIC); + + igt_debug("Reading frame dumps from Chamelium...\n"); + chamelium_capture(data->chamelium, port, 0, 0, 0, 0, 1); + dump = chamelium_read_captured_frame(data->chamelium, 0); + + ret = chamelium_frame_match_or_dump(data->chamelium, port, + dump, &data->fb_ref, + CHAMELIUM_CHECK_ANALOG); + chamelium_destroy_frame_dump(dump); + cleanup(data); + + return ret; +} + +static int test_setup(data_t *data, enum pipe p) +{ + igt_pipe_t *pipe; + int i = 0; + + igt_display_reset(&data->display); + igt_modeset_disable_all_outputs(&data->display); + chamelium_reset_state(&data->display, data->chamelium, NULL, + data->ports, data->port_count); + + pipe = &data->display.pipes[p]; + igt_require(pipe->n_planes >= 0); + + data->primary = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY); + igt_assert(data->primary); + + /* + * Prefer to run this test on HDMI connector if its connected, since on DP we + * sometimes face DP FSM issue + */ + for_each_valid_output_on_pipe(&data->display, p, data->output) { + data->pipe_id = p; + for (i = 0; i < data->port_count; i++) { + if ((data->output->config.connector->connector_type == DRM_MODE_CONNECTOR_HDMIA || + data->output->config.connector->connector_type == DRM_MODE_CONNECTOR_HDMIB) && + strcmp(data->output->name, chamelium_port_get_name(data->ports[i])) == 0) + return i; + } + } + + for_each_valid_output_on_pipe(&data->display, p, data->output) { + data->pipe_id = p; + for (i = 0; i < data->port_count; i++) { + if (strcmp(data->output->name, + chamelium_port_get_name(data->ports[i])) == 0) + return i; + } + } + + return -1; +} + +static void test_sharpness_filter(data_t *data, enum pipe p) +{ + int port_idx = test_setup(data, p); + + igt_require(port_idx >= 0); + igt_require(igt_pipe_obj_has_prop(&data->display.pipes[p], IGT_CRTC_SHARPNESS_STRENGTH)); + + if (!pipe_output_combo_valid(data, p)) + return; + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(p), data->output->name) + igt_assert_f(!(test_t(data, data->primary, data->ports[port_idx]) == 1), "No sharpness observed.\n"); +} + +static void +run_sharpness_filter_test(data_t *data) +{ + igt_display_t *display = &data->display; + enum pipe pipe; + + igt_describe("Verify basic content adaptive sharpness filter."); + igt_subtest_with_dynamic("filter-basic") { + for_each_pipe(display, pipe) { + data->filter_strength = MID_FILTER_STRENGTH; + test_sharpness_filter(data, pipe); + } + } +} + +igt_main +{ + data_t data = {}; + + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_ANY); + + igt_display_require(&data.display, data.drm_fd); + igt_require(data.display.is_atomic); + + igt_chamelium_allow_fsm_handling = false; + + /* we need to initalize chamelium after igt_display_require */ + data.chamelium = chamelium_init(data.drm_fd, &data.display); + igt_require(data.chamelium); + + data.ports = chamelium_get_ports(data.chamelium, + &data.port_count); + + if (!data.port_count) + igt_skip("No ports connected\n"); + /* + * We don't cause any harm by plugging + * discovered ports, just incase they are not plugged + * we currently skip in test_setup + */ + for(int i = 0; i < data.port_count; i++) + chamelium_plug(data.chamelium, data.ports[i]); + + kmstest_set_vt_graphics_mode(); + } + + run_sharpness_filter_test(&data); + + igt_fixture { + igt_display_fini(&data.display); + drm_close_driver(data.drm_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 84d8bed4b..0a336c2c1 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -340,6 +340,7 @@ chamelium_progs = [ 'kms_chamelium_edid', 'kms_chamelium_frames', 'kms_chamelium_hpd', + 'kms_chamelium_sharpness_filter', ] test_deps = [ igt_deps ] @@ -365,6 +366,7 @@ extra_sources = { 'kms_chamelium_edid': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], 'kms_chamelium_frames': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], 'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], + 'kms_chamelium_sharpness_filter': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ], 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ], 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ], } -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for Add new test to validate adaptive sharpness filter (rev9) 2024-11-22 18:57 [PATCH i-g-t v8 0/4] Add new test to validate adaptive sharpness filter Swati Sharma ` (3 preceding siblings ...) 2024-11-22 18:57 ` [PATCH i-g-t, v2 4/4] tests/chamelium/kms_chamelium_sharpness_filter: Add basic test Swati Sharma @ 2024-11-22 20:18 ` Patchwork 2024-11-22 20:26 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-11-22 20:18 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2064 bytes --] == Series Details == Series: Add new test to validate adaptive sharpness filter (rev9) URL : https://patchwork.freedesktop.org/series/130218/ State : success == Summary == CI Bug Log - changes from XEIGT_8123_BAT -> XEIGTPW_12181_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12181_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@bad-pitch-0: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3429]) +31 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [FAIL][3] ([Intel XE#1861]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#3429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3429 Build changes ------------- * IGT: IGT_8123 -> IGTPW_12181 * Linux: xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a -> xe-2265-2281c1c4cf9827bee2c301c15120bac74f4af4c1 IGTPW_12181: 12181 IGT_8123: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a: a381faddbfc974e7bd57efe953a738415afccd6a xe-2265-2281c1c4cf9827bee2c301c15120bac74f4af4c1: 2281c1c4cf9827bee2c301c15120bac74f4af4c1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/index.html [-- Attachment #2: Type: text/html, Size: 2662 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for Add new test to validate adaptive sharpness filter (rev9) 2024-11-22 18:57 [PATCH i-g-t v8 0/4] Add new test to validate adaptive sharpness filter Swati Sharma ` (4 preceding siblings ...) 2024-11-22 20:18 ` ✓ Xe.CI.BAT: success for Add new test to validate adaptive sharpness filter (rev9) Patchwork @ 2024-11-22 20:26 ` Patchwork 2024-11-24 6:49 ` ✗ Xe.CI.Full: failure " Patchwork 2024-11-24 21:21 ` ✗ i915.CI.Full: " Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-11-22 20:26 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev == Series Details == Series: Add new test to validate adaptive sharpness filter (rev9) URL : https://patchwork.freedesktop.org/series/130218/ State : success == Summary == CI Bug Log - changes from IGT_8123 -> IGTPW_12181 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12181 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][1] -> [ABORT][2] ([i915#12061]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][3] -> [SKIP][4] ([i915#9197]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - bat-dg2-11: [FAIL][5] ([i915#12903]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-dg2-11/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/bat-dg2-11/igt@i915_pm_rpm@module-reload.html - bat-rpls-4: [FAIL][7] ([i915#12903]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/bat-rpls-4/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - bat-mtlp-8: [ABORT][9] ([i915#12061]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/bat-mtlp-8/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/bat-mtlp-8/igt@i915_selftest@live.html * igt@kms_flip@basic-flip-vs-dpms@c-dp1: - fi-kbl-7567u: [DMESG-WARN][11] -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html #### Warnings #### * igt@i915_module_load@reload: - fi-cfl-8109u: [DMESG-WARN][13] ([i915#11621] / [i915#1982]) -> [DMESG-WARN][14] ([i915#11621]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-cfl-8109u/igt@i915_module_load@reload.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/fi-cfl-8109u/igt@i915_module_load@reload.html * igt@kms_busy@basic@flip: - fi-cfl-8109u: [DMESG-WARN][15] ([i915#11621]) -> [DMESG-WARN][16] ([i915#11621] / [i915#1982]) +1 other test dmesg-warn [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8123/fi-cfl-8109u/igt@kms_busy@basic@flip.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/fi-cfl-8109u/igt@kms_busy@basic@flip.html [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8123 -> IGTPW_12181 * Linux: CI_DRM_15731 -> CI_DRM_15733 CI-20190529: 20190529 CI_DRM_15731: a381faddbfc974e7bd57efe953a738415afccd6a @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15733: 2281c1c4cf9827bee2c301c15120bac74f4af4c1 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12181: 12181 IGT_8123: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/index.html ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for Add new test to validate adaptive sharpness filter (rev9) 2024-11-22 18:57 [PATCH i-g-t v8 0/4] Add new test to validate adaptive sharpness filter Swati Sharma ` (5 preceding siblings ...) 2024-11-22 20:26 ` ✓ i915.CI.BAT: " Patchwork @ 2024-11-24 6:49 ` Patchwork 2024-11-24 21:21 ` ✗ i915.CI.Full: " Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-11-24 6:49 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 141193 bytes --] == Series Details == Series: Add new test to validate adaptive sharpness filter (rev9) URL : https://patchwork.freedesktop.org/series/130218/ State : failure == Summary == CI Bug Log - changes from XEIGT_8123_full -> XEIGTPW_12181_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12181_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12181_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_12181_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@2x-flip-vs-rmfb-interruptible@bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_flip@2x-flip-vs-rmfb-interruptible@bd-dp2-hdmi-a3.html * igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256: - shard-bmg: NOTRUN -> [DMESG-FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a: - shard-bmg: [PASS][3] -> [DMESG-WARN][4] +3 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a.html * igt@kms_sharpness_filter@filter-scaler-downscale (NEW): - shard-lnl: NOTRUN -> [SKIP][5] +15 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-8/igt@kms_sharpness_filter@filter-scaler-downscale.html * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode (NEW): - shard-bmg: NOTRUN -> [SKIP][6] +15 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html #### Warnings #### * igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a3: - shard-bmg: [DMESG-WARN][7] ([Intel XE#3468]) -> [DMESG-WARN][8] +2 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a3.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a3.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [DMESG-FAIL][9] ([Intel XE#3467]) -> [DMESG-FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [SKIP][11] ([Intel XE#1130]) -> [ABORT][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_wedged@wedged-at-any-timeout.html New tests --------- New tests have been introduced between XEIGT_8123_full and XEIGTPW_12181_full: ### New IGT tests (16) ### * igt@kms_chamelium_sharpness_filter@filter-basic: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-basic: - Statuses : 2 skip(s) - Exec time: [0.00] s * igt@kms_sharpness_filter@filter-dpms: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_sharpness_filter@filter-formats: - Statuses : 3 skip(s) - Exec time: [0.0, 0.01] s * igt@kms_sharpness_filter@filter-modifiers: - Statuses : 3 skip(s) - Exec time: [0.00, 0.01] s * igt@kms_sharpness_filter@filter-rotations: - Statuses : 2 skip(s) - Exec time: [0.00] s * igt@kms_sharpness_filter@filter-scaler-downscale: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_sharpness_filter@filter-scaler-upscale: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_sharpness_filter@filter-strength: - Statuses : 3 skip(s) - Exec time: [0.00, 0.01] s * igt@kms_sharpness_filter@filter-suspend: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_sharpness_filter@filter-tap: - Statuses : 3 skip(s) - Exec time: [0.00, 0.01] s * igt@kms_sharpness_filter@filter-toggle: - Statuses : 3 skip(s) - Exec time: [0.0, 0.02] s * igt@kms_sharpness_filter@invalid-filter-with-plane: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_sharpness_filter@invalid-filter-with-scaler: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode: - Statuses : 3 skip(s) - Exec time: [0.0, 0.01] s * igt@kms_sharpness_filter@invalid-plane-with-filter: - Statuses : 3 skip(s) - Exec time: [0.00] s Known issues ------------ Here are the changes found in XEIGTPW_12181_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getversion@basic: - shard-dg2-set2: NOTRUN -> [FAIL][13] ([Intel XE#3440]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@core_getversion@basic.html * igt@core_hotunplug@hotrebind-lateclose: - shard-dg2-set2: [PASS][14] -> [DMESG-WARN][15] ([Intel XE#3468]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@core_hotunplug@hotrebind-lateclose.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@core_hotunplug@hotrebind-lateclose.html * igt@core_setmaster@master-drop-set-user: - shard-dg2-set2: [PASS][16] -> [FAIL][17] ([Intel XE#3339]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@core_setmaster@master-drop-set-user.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html * igt@fbdev@unaligned-write: - shard-dg2-set2: [PASS][18] -> [SKIP][19] ([Intel XE#2134]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@fbdev@unaligned-write.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@fbdev@unaligned-write.html * igt@intel_hwmon@hwmon-write: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1125]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-7/igt@intel_hwmon@hwmon-write.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-FAIL][21] ([Intel XE#1727] / [Intel XE#3468]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html * igt@kms_async_flips@async-flip-with-page-flip-events: - shard-bmg: [PASS][22] -> [DMESG-FAIL][23] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_async_flips@async-flip-with-page-flip-events.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [PASS][24] -> [SKIP][25] ([Intel XE#2423] / [i915#2575]) +92 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1407]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2327]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1124]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-5/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1477]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#610]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1512]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2652] / [Intel XE#787]) +16 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#3432]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2887]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#455] / [Intel XE#787]) +16 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#2692] / [Intel XE#3468]) +1 other test incomplete [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#1727]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: - shard-dg2-set2: [PASS][42] -> [DMESG-WARN][43] ([Intel XE#1727] / [Intel XE#3113]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][44] -> [INCOMPLETE][45] ([Intel XE#3124]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#787]) +104 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#373]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-1/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2252]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2341]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][50] ([Intel XE#1178]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-128x128: - shard-bmg: [PASS][51] -> [DMESG-FAIL][52] ([Intel XE#3468]) +19 other tests dmesg-fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x128.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-128x128.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2321]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests incomplete [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_cursor_crc@cursor-suspend.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1: - shard-lnl: [PASS][56] -> [FAIL][57] ([Intel XE#2577]) +1 other test fail [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-4/igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-7/igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2291]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [PASS][59] -> [SKIP][60] ([Intel XE#2291]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-bmg: [PASS][61] -> [DMESG-FAIL][62] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-fail [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_cursor_legacy@torture-bo@all-pipes: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][63] ([Intel XE#2932]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_cursor_legacy@torture-bo@all-pipes.html * igt@kms_dp_aux_dev: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#2423]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_dp_aux_dev.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2372]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2373]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_feature_discovery@display-2x.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1421]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-1/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][69] ([Intel XE#2882]) +1 other test fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4: - shard-dg2-set2: [PASS][70] -> [FAIL][71] ([Intel XE#301]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-panning: - shard-bmg: [PASS][72] -> [SKIP][73] ([Intel XE#2316]) +7 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3: - shard-bmg: [PASS][74] -> [DMESG-WARN][75] ([Intel XE#3468]) +99 other tests dmesg-warn [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning-interruptible@cd-dp2-hdmi-a3.html * igt@kms_flip@busy-flip: - shard-lnl: [PASS][76] -> [DMESG-FAIL][77] ([Intel XE#877]) +1 other test dmesg-fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-6/igt@kms_flip@busy-flip.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-5/igt@kms_flip@busy-flip.html * igt@kms_flip@busy-flip@c-edp1: - shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#2167]) +1 other test fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-6/igt@kms_flip@busy-flip@c-edp1.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-5/igt@kms_flip@busy-flip@c-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: - shard-bmg: NOTRUN -> [DMESG-WARN][80] ([Intel XE#3468]) +56 other tests dmesg-warn [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html * igt@kms_flip@flip-vs-expired-vblank@a-dp4: - shard-dg2-set2: [PASS][81] -> [FAIL][82] ([Intel XE#3321] / [Intel XE#3487]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank@d-dp4: - shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#301] / [Intel XE#3321] / [Intel XE#3487]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][85] ([Intel XE#1727] / [Intel XE#3468]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@a-dp4.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][86] ([Intel XE#3468]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][87] ([Intel XE#3468]) +1 other test dmesg-fail [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][88] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-fail [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: - shard-dg2-set2: [PASS][89] -> [SKIP][90] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1401]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg2-set2: [PASS][93] -> [SKIP][94] ([Intel XE#2136]) +32 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2293]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#651]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2312]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-bmg: NOTRUN -> [FAIL][100] ([Intel XE#2333]) +3 other tests fail [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#651]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2311]) +9 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#653]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2313]) +6 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2136]) +25 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#656]) +8 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-lnl: [PASS][107] -> [DMESG-WARN][108] ([Intel XE#2932]) +2 other tests dmesg-warn [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-suspend.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_getfb@getfb-addfb-different-handles: - shard-bmg: [PASS][109] -> [DMESG-WARN][110] ([Intel XE#1727]) +2 other tests dmesg-warn [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_getfb@getfb-addfb-different-handles.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_getfb@getfb-addfb-different-handles.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1470]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-3/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdr@invalid-hdr: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#1503]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1503]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#3012]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][115] -> [SKIP][116] ([Intel XE#3012]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane_lowres@tiling-4@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-FAIL][117] ([Intel XE#3468]) +6 other tests dmesg-fail [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html * igt@kms_plane_lowres@tiling-y: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#599]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-7/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2393]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#3307]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/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 -> [FAIL][121] ([Intel XE#361]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2763]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-bmg: [PASS][124] -> [DMESG-WARN][125] ([Intel XE#2566] / [Intel XE#3468]) +3 other tests dmesg-warn [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2763]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2763]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75: - shard-bmg: [PASS][128] -> [DMESG-WARN][129] ([Intel XE#2566]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][130] -> [FAIL][131] ([Intel XE#718]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#1439] / [Intel XE#3141]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-dg2-set2: NOTRUN -> [INCOMPLETE][133] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-lnl: [PASS][134] -> [DMESG-WARN][135] ([Intel XE#3184]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1439] / [Intel XE#3141]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2446]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [PASS][138] -> [SKIP][139] ([Intel XE#2446]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_pm_rpm@system-suspend-modeset.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#1489]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#1489]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@pr-cursor-render: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1406]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-4/igt@kms_psr@pr-cursor-render.html * igt@kms_psr@pr-sprite-blt: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_psr@pr-sprite-blt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2330]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2413]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][147] -> [SKIP][148] ([Intel XE#1435]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sharpness_filter@filter-modifiers (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#455]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_sharpness_filter@filter-modifiers.html * igt@kms_sharpness_filter@filter-suspend (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2423] / [i915#2575]) +35 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_sharpness_filter@filter-suspend.html * igt@kms_tv_load_detect@load-detect: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#330]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-4/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][152] -> [FAIL][153] ([Intel XE#2159]) +1 other test fail [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@lobf: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#2168]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][155] ([Intel XE#1727] / [Intel XE#3468]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_vrr@negative-basic@pipe-a-dp-2.html * igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#1280] / [Intel XE#455]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_eudebug@basic-client: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#2905]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@xe_eudebug@basic-client.html * igt@xe_eudebug_online@breakpoint-many-sessions-single-tile: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2905]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#2905]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-7/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][160] -> [TIMEOUT][161] ([Intel XE#1473]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#688]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-1/igt@xe_evict@evict-large-multi-vm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][163] -> [TIMEOUT][164] ([Intel XE#1473] / [Intel XE#2472]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2322]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html * igt@xe_exec_basic@multigpu-no-exec-basic: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#1130]) +40 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-basic.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#1392]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate: - shard-bmg: [PASS][168] -> [DMESG-FAIL][169] ([Intel XE#3371]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-bmg: [PASS][170] -> [DMESG-WARN][171] ([Intel XE#3343]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early: - shard-bmg: [PASS][172] -> [DMESG-WARN][173] ([Intel XE#3467] / [Intel XE#3468]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init: - shard-bmg: [PASS][174] -> [DMESG-WARN][175] ([Intel XE#3343] / [Intel XE#3468]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-dg2-set2: [PASS][176] -> [DMESG-WARN][177] ([Intel XE#3467]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_live_ktest@xe_bo: - shard-bmg: [PASS][178] -> [SKIP][179] ([Intel XE#1192]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_live_ktest@xe_bo.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_live_ktest@xe_bo.html * igt@xe_media_fill@media-fill: - shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#560]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-4/igt@xe_media_fill@media-fill.html * igt@xe_module_load@many-reload: - shard-bmg: [PASS][181] -> [DMESG-WARN][182] ([Intel XE#3467]) +1 other test dmesg-warn [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_module_load@many-reload.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_module_load@many-reload.html * igt@xe_module_load@reload: - shard-dg2-set2: [PASS][183] -> [FAIL][184] ([Intel XE#3546]) +1 other test fail [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_module_load@reload.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@xe_module_load@reload.html * igt@xe_oa@syncs-ufence-wait: - shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#3573]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@xe_oa@syncs-ufence-wait.html * igt@xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#2284]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-multiple-execs: - shard-dg2-set2: NOTRUN -> [SKIP][187] ([Intel XE#2284] / [Intel XE#366]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-bmg: [PASS][188] -> [DMESG-WARN][189] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_pm@s2idle-d3hot-basic-exec.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s3-basic-exec: - shard-bmg: [PASS][190] -> [DMESG-WARN][191] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) +1 other test dmesg-warn [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_pm@s3-basic-exec.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-exec-after: - shard-bmg: [PASS][192] -> [DMESG-WARN][193] ([Intel XE#1727] / [Intel XE#3468]) +7 other tests dmesg-warn [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_pm@s4-exec-after.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@xe_pm@s4-exec-after.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][194] -> [FAIL][195] ([Intel XE#958]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-7/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-oa-units: - shard-lnl: NOTRUN -> [SKIP][196] ([Intel XE#944]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-3/igt@xe_query@multigpu-query-oa-units.html * igt@xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [PASS][197] -> [SKIP][198] ([Intel XE#1130]) +164 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html #### Possible fixes #### * igt@core_getversion@all-cards: - shard-dg2-set2: [FAIL][199] ([Intel XE#3440]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@core_getversion@all-cards.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@core_getversion@all-cards.html * igt@core_hotunplug@hotunbind-rebind: - shard-dg2-set2: [SKIP][201] ([Intel XE#1885]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@core_hotunplug@hotunbind-rebind.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@core_hotunplug@hotunbind-rebind.html * igt@fbdev@read: - shard-dg2-set2: [SKIP][203] ([Intel XE#2134]) -> [PASS][204] +1 other test pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@fbdev@read.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@fbdev@read.html * igt@kms_atomic@plane-invalid-params-fence: - shard-dg2-set2: [SKIP][205] ([Intel XE#2423] / [i915#2575]) -> [PASS][206] +84 other tests pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_atomic@plane-invalid-params-fence.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_atomic@plane-invalid-params-fence.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [DMESG-FAIL][207] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][209] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-bmg: [SKIP][211] ([Intel XE#2291]) -> [PASS][212] +6 other tests pass [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][213] ([Intel XE#2425]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-bmg: [SKIP][215] ([Intel XE#3009]) -> [PASS][216] [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_dp_aux_dev.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_dp_aux_dev.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [SKIP][217] ([Intel XE#2316]) -> [PASS][218] +9 other tests pass [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@blocking-absolute-wf_vblank-interruptible: - shard-bmg: [DMESG-FAIL][219] ([Intel XE#3468]) -> [PASS][220] +6 other tests pass [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@blocking-absolute-wf_vblank-interruptible.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_flip@blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank: - shard-bmg: [FAIL][221] ([Intel XE#2882]) -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank@b-dp2: - shard-bmg: [FAIL][223] ([Intel XE#3321] / [Intel XE#3487]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@b-dp2.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@b-dp2.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][225] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][226] +1 other test pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a6: - shard-dg2-set2: [DMESG-WARN][227] ([Intel XE#1727]) -> [PASS][228] +1 other test pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a6.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a6.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [FAIL][229] ([Intel XE#886]) -> [PASS][230] +9 other tests pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: - shard-dg2-set2: [SKIP][231] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][232] +13 other tests pass [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][233] ([Intel XE#2136]) -> [PASS][234] +32 other tests pass [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_plane_alpha_blend@constant-alpha-min: - shard-bmg: [DMESG-WARN][235] ([Intel XE#3468]) -> [PASS][236] +72 other tests pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_plane_alpha_blend@constant-alpha-min.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_plane_alpha_blend@constant-alpha-min.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][237] ([Intel XE#2571]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][239] ([Intel XE#718]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [SKIP][241] ([Intel XE#2446]) -> [PASS][242] +5 other tests pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][243] ([Intel XE#899]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [SKIP][245] ([Intel XE#1130]) -> [PASS][246] +167 other tests pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@xe_exec_balancer@once-parallel-rebind.html * igt@xe_exec_basic@many-null-rebind: - shard-bmg: [DMESG-WARN][247] ([Intel XE#1727]) -> [PASS][248] +2 other tests pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_exec_basic@many-null-rebind.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_exec_basic@many-null-rebind.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue: - shard-bmg: [DMESG-WARN][249] -> [PASS][250] +2 other tests pass [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue.html * igt@xe_exec_reset@cm-close-execqueues-close-fd: - shard-lnl: [FAIL][251] ([Intel XE#1081]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-lnl-5/igt@xe_exec_reset@cm-close-execqueues-close-fd.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-lnl-7/igt@xe_exec_reset@cm-close-execqueues-close-fd.html - shard-bmg: [FAIL][253] ([Intel XE#1081]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_exec_reset@cm-close-execqueues-close-fd.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@xe_exec_reset@cm-close-execqueues-close-fd.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init: - shard-dg2-set2: [DMESG-WARN][255] ([Intel XE#3343]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-bmg: [DMESG-WARN][257] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][258] +1 other test pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_module_load@unload: - shard-bmg: [DMESG-WARN][259] ([Intel XE#3467]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_module_load@unload.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_module_load@unload.html * igt@xe_pm@d3hot-basic: - shard-bmg: [DMESG-WARN][261] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][262] +3 other tests pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_pm@d3hot-basic.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@xe_pm@d3hot-basic.html - shard-dg2-set2: [DMESG-WARN][263] ([Intel XE#3468]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_pm@d3hot-basic.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@xe_pm@d3hot-basic.html * igt@xe_pm@s2idle-basic-exec: - shard-bmg: [DMESG-WARN][265] ([Intel XE#1616] / [Intel XE#3468]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_pm@s2idle-basic-exec.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-bmg: [DMESG-WARN][267] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_pm@s3-vm-bind-prefetch.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@xe_pm@s3-vm-bind-prefetch.html #### Warnings #### * igt@core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [SKIP][269] ([Intel XE#1885]) -> [DMESG-WARN][270] ([Intel XE#3468]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@core_hotunplug@hotunplug-rescan.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][271] ([Intel XE#623]) -> [SKIP][272] ([Intel XE#2423] / [i915#2575]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@unused-offsets: - shard-dg2-set2: [DMESG-WARN][273] ([Intel XE#1727]) -> [SKIP][274] ([Intel XE#2423] / [i915#2575]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_addfb_basic@unused-offsets.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_addfb_basic@unused-offsets.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][275] ([Intel XE#827]) -> [DMESG-FAIL][276] ([Intel XE#1727] / [Intel XE#3468]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3: - shard-bmg: [FAIL][277] ([Intel XE#827]) -> [DMESG-WARN][278] ([Intel XE#3468]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-dg2-set2: [DMESG-WARN][279] ([Intel XE#3468]) -> [SKIP][280] ([Intel XE#2423] / [i915#2575]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_async_flips@async-flip-suspend-resume.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][281] ([Intel XE#316]) -> [SKIP][282] ([Intel XE#2136] / [Intel XE#2351]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][283] ([Intel XE#316]) -> [SKIP][284] ([Intel XE#2136]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][285] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][286] ([Intel XE#316]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg2-set2: [SKIP][287] ([Intel XE#2136]) -> [SKIP][288] ([Intel XE#316]) +3 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_big_fb@linear-8bpp-rotate-270.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-0: - shard-dg2-set2: [SKIP][289] ([Intel XE#1124]) -> [SKIP][290] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-set2: [SKIP][291] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][292] ([Intel XE#619]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][293] ([Intel XE#610]) -> [SKIP][294] ([Intel XE#2136]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][295] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][296] ([Intel XE#1124]) +2 other tests skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg2-set2: [SKIP][297] ([Intel XE#1124]) -> [SKIP][298] ([Intel XE#2136]) +8 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][299] ([Intel XE#2136]) -> [SKIP][300] ([Intel XE#610]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][301] ([Intel XE#2136]) -> [SKIP][302] ([Intel XE#1124]) +7 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-dg2-set2: [SKIP][303] ([Intel XE#2423] / [i915#2575]) -> [SKIP][304] ([Intel XE#2191]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: [SKIP][305] ([Intel XE#2191]) -> [SKIP][306] ([Intel XE#2423] / [i915#2575]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][307] ([Intel XE#2423] / [i915#2575]) -> [SKIP][308] ([Intel XE#367]) +4 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-dg2-set2: [SKIP][309] ([Intel XE#367]) -> [SKIP][310] ([Intel XE#2423] / [i915#2575]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][311] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][312] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][313] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][314] ([Intel XE#2136]) +8 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][315] ([Intel XE#3442]) -> [SKIP][316] ([Intel XE#2136]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][317] ([Intel XE#2136]) -> [SKIP][318] ([Intel XE#3442]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [FAIL][319] ([Intel XE#616]) -> [SKIP][320] ([Intel XE#2136]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][321] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][322] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][323] ([Intel XE#2907]) -> [SKIP][324] ([Intel XE#2136]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][325] ([Intel XE#2136]) -> [SKIP][326] ([Intel XE#2907]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-dg2-set2: [SKIP][327] ([Intel XE#2136]) -> [SKIP][328] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: [SKIP][329] ([Intel XE#306]) -> [SKIP][330] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_chamelium_color@ctm-green-to-red.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: [SKIP][331] ([Intel XE#2423] / [i915#2575]) -> [SKIP][332] ([Intel XE#306]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_frames@hdmi-cmp-planes-random: - shard-dg2-set2: [SKIP][333] ([Intel XE#373]) -> [SKIP][334] ([Intel XE#2423] / [i915#2575]) +14 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: [SKIP][335] ([Intel XE#2423] / [i915#2575]) -> [SKIP][336] ([Intel XE#373]) +13 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_content_protection@atomic: - shard-dg2-set2: [FAIL][337] ([Intel XE#1178]) -> [INCOMPLETE][338] ([Intel XE#2715] / [Intel XE#3468]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_content_protection@atomic.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2-set2: [FAIL][339] ([Intel XE#1178]) -> [INCOMPLETE][340] ([Intel XE#3468]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_content_protection@atomic@pipe-a-dp-4.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][341] ([Intel XE#307]) -> [SKIP][342] ([Intel XE#2423] / [i915#2575]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-0.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: [SKIP][343] ([Intel XE#2423] / [i915#2575]) -> [SKIP][344] ([Intel XE#307]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_content_protection@dp-mst-type-0.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][345] ([Intel XE#1178]) -> [SKIP][346] ([Intel XE#2341]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_content_protection@lic-type-0.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2-set2: [SKIP][347] ([Intel XE#2423] / [i915#2575]) -> [FAIL][348] ([Intel XE#1178]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_content_protection@srm.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-bmg: [DMESG-FAIL][349] ([Intel XE#3468]) -> [SKIP][350] ([Intel XE#2341]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_content_protection@uevent.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][351] ([Intel XE#308]) -> [SKIP][352] ([Intel XE#2423] / [i915#2575]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][353] ([Intel XE#2423] / [i915#2575]) -> [SKIP][354] ([Intel XE#308]) +2 other tests skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-dg2-set2: [SKIP][355] ([Intel XE#2423] / [i915#2575]) -> [SKIP][356] ([Intel XE#455]) +9 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-max-size.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [DMESG-WARN][357] ([Intel XE#3468]) -> [SKIP][358] ([Intel XE#2291]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [INCOMPLETE][359] ([Intel XE#1727]) -> [SKIP][360] ([Intel XE#2291]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html - shard-dg2-set2: [INCOMPLETE][361] ([Intel XE#1727]) -> [SKIP][362] ([Intel XE#2423] / [i915#2575]) [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][363] ([Intel XE#323]) -> [SKIP][364] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [DMESG-WARN][365] ([Intel XE#877]) -> [DMESG-WARN][366] ([Intel XE#3468]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@torture-bo: - shard-dg2-set2: [SKIP][367] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][368] ([Intel XE#2932]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_cursor_legacy@torture-bo.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_cursor_legacy@torture-bo.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2: - shard-bmg: [DMESG-FAIL][369] ([Intel XE#3468]) -> [FAIL][370] ([Intel XE#2141]) +2 other tests fail [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2-set2: [SKIP][371] ([Intel XE#455]) -> [SKIP][372] ([Intel XE#2136]) +4 other tests skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_dsc@dsc-with-bpc.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][373] ([Intel XE#2136]) -> [SKIP][374] ([Intel XE#776]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][375] ([Intel XE#2423] / [i915#2575]) -> [SKIP][376] ([Intel XE#1138]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_feature_discovery@display-4x.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][377] ([Intel XE#1135]) -> [SKIP][378] ([Intel XE#2423] / [i915#2575]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_feature_discovery@psr1.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][379] ([Intel XE#2423] / [i915#2575]) -> [SKIP][380] ([Intel XE#1135]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_feature_discovery@psr2.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-bmg: [DMESG-WARN][381] ([Intel XE#3468]) -> [SKIP][382] ([Intel XE#2316]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@2x-absolute-wf_vblank.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: [SKIP][383] ([Intel XE#2316]) -> [FAIL][384] ([Intel XE#2882]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][385] ([Intel XE#2882]) -> [SKIP][386] ([Intel XE#2316]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [ABORT][387] ([Intel XE#3468]) -> [SKIP][388] ([Intel XE#2316]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][389] ([Intel XE#2316]) -> [DMESG-WARN][390] ([Intel XE#3468]) +4 other tests dmesg-warn [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [SKIP][391] ([Intel XE#2423] / [i915#2575]) -> [DMESG-FAIL][392] ([Intel XE#1727] / [Intel XE#3468]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2-set2: [SKIP][393] ([Intel XE#2136]) -> [SKIP][394] ([Intel XE#455]) +3 other tests skip [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][395] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][396] ([Intel XE#455]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][397] ([Intel XE#455]) -> [SKIP][398] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][399] ([Intel XE#2311]) -> [SKIP][400] ([Intel XE#2312]) +26 other tests skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][401] ([Intel XE#2312]) -> [SKIP][402] ([Intel XE#2311]) +26 other tests skip [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-bmg: [FAIL][403] ([Intel XE#2333]) -> [DMESG-FAIL][404] ([Intel XE#3468]) +7 other tests dmesg-fail [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-bmg: [DMESG-FAIL][405] ([Intel XE#3468]) -> [FAIL][406] ([Intel XE#2333]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][407] ([Intel XE#2312]) -> [FAIL][408] ([Intel XE#2333]) +6 other tests fail [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][409] ([Intel XE#2312]) -> [DMESG-FAIL][410] ([Intel XE#3468]) +4 other tests dmesg-fail [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [DMESG-FAIL][411] ([Intel XE#3468]) -> [SKIP][412] ([Intel XE#2312]) +3 other tests skip [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [FAIL][413] ([Intel XE#2333]) -> [SKIP][414] ([Intel XE#2312]) +9 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][415] ([Intel XE#658]) -> [SKIP][416] ([Intel XE#2136] / [Intel XE#2351]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-tiling-y.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: [SKIP][417] ([Intel XE#651]) -> [SKIP][418] ([Intel XE#2136]) +21 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][419] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][420] ([Intel XE#651]) +7 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][421] ([Intel XE#651]) -> [SKIP][422] ([Intel XE#2136] / [Intel XE#2351]) +8 other tests skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear: - shard-dg2-set2: [SKIP][423] ([Intel XE#2136]) -> [SKIP][424] ([Intel XE#651]) +27 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][425] ([Intel XE#2136]) -> [SKIP][426] ([Intel XE#653]) +19 other tests skip [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][427] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][428] ([Intel XE#653]) +11 other tests skip [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: [SKIP][429] ([Intel XE#2313]) -> [SKIP][430] ([Intel XE#2312]) +19 other tests skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][431] ([Intel XE#653]) -> [SKIP][432] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-bmg: [INCOMPLETE][433] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468]) -> [FAIL][434] ([Intel XE#2333]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][435] ([Intel XE#2136]) -> [SKIP][436] ([Intel XE#1158]) [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][437] ([Intel XE#2312]) -> [SKIP][438] ([Intel XE#2313]) +21 other tests skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][439] ([Intel XE#653]) -> [SKIP][440] ([Intel XE#2136]) +28 other tests skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-slowdraw.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: [SKIP][441] ([Intel XE#2925]) -> [SKIP][442] ([Intel XE#2136]) [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_joiner@basic-force-ultra-joiner.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][443] ([Intel XE#2136]) -> [SKIP][444] ([Intel XE#346]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: [SKIP][445] ([Intel XE#2136]) -> [SKIP][446] ([Intel XE#2925]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: [SKIP][447] ([Intel XE#2136]) -> [SKIP][448] ([Intel XE#2927]) [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][449] ([Intel XE#356]) -> [SKIP][450] ([Intel XE#2423] / [i915#2575]) [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_multiple@tiling-y: - shard-dg2-set2: [SKIP][451] ([Intel XE#455]) -> [SKIP][452] ([Intel XE#2423] / [i915#2575]) +9 other tests skip [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_plane_multiple@tiling-y.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [SKIP][453] ([Intel XE#2423] / [i915#2575]) -> [FAIL][454] ([Intel XE#361]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2-set2: [SKIP][455] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][456] ([Intel XE#2423] / [i915#2575]) +4 other tests skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][457] ([Intel XE#2423] / [i915#2575]) -> [SKIP][458] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b: - shard-bmg: [DMESG-WARN][459] -> [DMESG-WARN][460] ([Intel XE#3468]) [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][461] ([Intel XE#870]) -> [SKIP][462] ([Intel XE#2136]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][463] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][464] ([Intel XE#1122]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_pm_dc@dc3co-vpb-simulation.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: [SKIP][465] ([Intel XE#2136]) -> [SKIP][466] ([Intel XE#1129]) [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2-set2: [FAIL][467] ([Intel XE#3527]) -> [SKIP][468] ([Intel XE#2136]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@kms_pm_lpsp@kms-lpsp.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@basic-rte: - shard-dg2-set2: [SKIP][469] ([Intel XE#2446]) -> [DMESG-WARN][470] ([Intel XE#1727] / [Intel XE#3468]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_pm_rpm@basic-rte.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_pm_rpm@basic-rte.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2-set2: [SKIP][471] ([Intel XE#2136]) -> [SKIP][472] ([Intel XE#1489]) +8 other tests skip [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][473] ([Intel XE#1489]) -> [SKIP][474] ([Intel XE#2136]) +10 other tests skip [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: [SKIP][475] ([Intel XE#1122]) -> [SKIP][476] ([Intel XE#2136]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_psr2_su@frontbuffer-xrgb8888.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][477] ([Intel XE#2136]) -> [SKIP][478] ([Intel XE#1122]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_psr2_su@page_flip-xrgb8888.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][479] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][480] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_psr@fbc-pr-sprite-plane-onoff.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@kms_psr@fbc-pr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-dg2-set2: [SKIP][481] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][482] ([Intel XE#2136]) +11 other tests skip [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@kms_psr@fbc-psr2-primary-blt.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][483] ([Intel XE#2136]) -> [SKIP][484] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][485] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][486] ([Intel XE#2351]) [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_psr@psr-cursor-plane-move.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-primary-page-flip: - shard-dg2-set2: [SKIP][487] ([Intel XE#2351]) -> [SKIP][488] ([Intel XE#2850] / [Intel XE#929]) [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr-sprite-blt: - shard-dg2-set2: [SKIP][489] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][490] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_psr@psr-sprite-blt.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@kms_psr@psr-sprite-blt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][491] ([Intel XE#3414]) -> [SKIP][492] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][493] ([Intel XE#2423] / [i915#2575]) -> [SKIP][494] ([Intel XE#1127]) [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2-set2: [SKIP][495] ([Intel XE#2423] / [i915#2575]) -> [SKIP][496] ([Intel XE#3414]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [DMESG-FAIL][497] ([Intel XE#1727]) -> [SKIP][498] ([Intel XE#2423] / [i915#2575]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][499] ([Intel XE#2509]) -> [SKIP][500] ([Intel XE#2426]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@wait-forked-hang: - shard-bmg: [DMESG-WARN][501] ([Intel XE#3468]) -> [DMESG-FAIL][502] ([Intel XE#3468]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_vblank@wait-forked-hang.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@kms_vblank@wait-forked-hang.html * igt@kms_vblank@wait-idle: - shard-bmg: [DMESG-FAIL][503] ([Intel XE#3468]) -> [DMESG-WARN][504] ([Intel XE#3468]) [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@kms_vblank@wait-idle.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@kms_vblank@wait-idle.html * igt@kms_vrr@cmrr: - shard-dg2-set2: [SKIP][505] ([Intel XE#2423] / [i915#2575]) -> [SKIP][506] ([Intel XE#2168]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@kms_vrr@cmrr.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@kms_vrr@cmrr.html * igt@kms_vrr@negative-basic: - shard-bmg: [SKIP][507] ([Intel XE#1499]) -> [DMESG-WARN][508] ([Intel XE#1727] / [Intel XE#3468]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@kms_vrr@negative-basic.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2-set2: [SKIP][509] ([Intel XE#756]) -> [SKIP][510] ([Intel XE#2423] / [i915#2575]) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@kms_writeback@writeback-invalid-parameters.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@kms_writeback@writeback-invalid-parameters.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][511] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][512] ([Intel XE#2423] / [i915#2575]) [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][513] ([Intel XE#1130]) -> [SKIP][514] ([Intel XE#1280] / [Intel XE#455]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: [SKIP][515] ([Intel XE#1130]) -> [SKIP][516] ([Intel XE#1123]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][517] ([Intel XE#1126]) -> [SKIP][518] ([Intel XE#1130]) [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x3fff.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][519] ([Intel XE#1130]) -> [SKIP][520] ([Intel XE#1126]) [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: [SKIP][521] ([Intel XE#2905]) -> [SKIP][522] ([Intel XE#1130]) +10 other tests skip [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_eudebug@basic-close.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-vm-bind: - shard-dg2-set2: [SKIP][523] ([Intel XE#1130]) -> [SKIP][524] ([Intel XE#2905]) +11 other tests skip [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_eudebug@basic-vm-bind.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@xe_eudebug@basic-vm-bind.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][525] ([Intel XE#1600]) -> [SKIP][526] ([Intel XE#1130]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_evict@evict-beng-large-multi-vm-cm.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-bmg: [INCOMPLETE][527] ([Intel XE#1473] / [Intel XE#3468]) -> [TIMEOUT][528] ([Intel XE#1473]) [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-large.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [SKIP][529] ([Intel XE#1130]) -> [FAIL][530] ([Intel XE#1600]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][531] ([Intel XE#1473]) -> [INCOMPLETE][532] ([Intel XE#1473]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_fault_mode@once-basic: - shard-dg2-set2: [SKIP][533] ([Intel XE#288]) -> [SKIP][534] ([Intel XE#1130]) +26 other tests skip [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_exec_fault_mode@once-basic.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@xe_exec_fault_mode@once-basic.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][535] ([Intel XE#1130]) -> [SKIP][536] ([Intel XE#288]) +26 other tests skip [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][537] ([Intel XE#1130]) -> [SKIP][538] ([Intel XE#2360]) [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_exec_threads@threads-hang-userptr-rebind: - shard-bmg: [DMESG-WARN][539] ([Intel XE#3468]) -> [DMESG-WARN][540] ([Intel XE#1727]) [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_exec_threads@threads-hang-userptr-rebind.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@xe_exec_threads@threads-hang-userptr-rebind.html * igt@xe_fault_injection@inject-fault-probe-function-xe_device_create: - shard-dg2-set2: [DMESG-WARN][541] ([Intel XE#3467]) -> [SKIP][542] ([Intel XE#1130]) +2 other tests skip [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [DMESG-WARN][543] -> [DMESG-WARN][544] ([Intel XE#3467]) [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-dg2-set2: [DMESG-WARN][545] ([Intel XE#3343]) -> [SKIP][546] ([Intel XE#1130]) [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: - shard-bmg: [DMESG-WARN][547] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][548] ([Intel XE#3343]) [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init: - shard-dg2-set2: [SKIP][549] ([Intel XE#1130]) -> [DMESG-WARN][550] ([Intel XE#3343]) [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-bmg: [DMESG-WARN][551] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][552] ([Intel XE#3467]) [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-bmg: [FAIL][553] ([Intel XE#3499]) -> [DMESG-FAIL][554] ([Intel XE#3467]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run: - shard-dg2-set2: [SKIP][555] ([Intel XE#1130]) -> [DMESG-WARN][556] ([Intel XE#3467]) +1 other test dmesg-warn [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [DMESG-WARN][557] ([Intel XE#3468]) -> [DMESG-WARN][558] ([Intel XE#3467]) [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][559] ([Intel XE#255]) -> [SKIP][560] ([Intel XE#1130]) [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_huc_copy@huc_copy.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][561] ([Intel XE#2833]) -> [SKIP][562] ([Intel XE#1192]) [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-bmg-4/igt@xe_live_ktest@xe_eudebug.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html * igt@xe_live_ktest@xe_mocs: - shard-dg2-set2: [FAIL][563] ([Intel XE#1999]) -> [SKIP][564] ([Intel XE#1192]) [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_live_ktest@xe_mocs.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][565] ([Intel XE#1130]) -> [SKIP][566] ([Intel XE#560]) [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_media_fill@media-fill.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@xe_media_fill@media-fill.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [FAIL][567] ([Intel XE#3546]) -> [DMESG-WARN][568] ([Intel XE#3467]) [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_module_load@reload-no-display.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@xe_module_load@reload-no-display.html * igt@xe_oa@invalid-oa-format-id: - shard-dg2-set2: [SKIP][569] ([Intel XE#3573]) -> [SKIP][570] ([Intel XE#1130]) +9 other tests skip [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_oa@invalid-oa-format-id.html [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@xe_oa@invalid-oa-format-id.html * igt@xe_oa@invalid-remove-userspace-config: - shard-dg2-set2: [SKIP][571] ([Intel XE#1130]) -> [SKIP][572] ([Intel XE#3573]) +5 other tests skip [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_oa@invalid-remove-userspace-config.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@xe_oa@invalid-remove-userspace-config.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][573] ([Intel XE#1130]) -> [SKIP][574] ([Intel XE#977]) [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_pat@pat-index-xe2.html [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][575] ([Intel XE#1130]) -> [SKIP][576] ([Intel XE#979]) [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-basic: - shard-dg2-set2: [SKIP][577] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][578] ([Intel XE#1130]) [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_pm@d3cold-basic.html [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][579] ([Intel XE#1130]) -> [SKIP][580] ([Intel XE#2284]) [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_pm@d3cold-mocs.html [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-436/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-basic-exec: - shard-dg2-set2: [DMESG-WARN][581] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][582] ([Intel XE#1130]) [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-436/igt@xe_pm@s2idle-basic-exec.html [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][583] ([Intel XE#1130]) -> [SKIP][584] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-433/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: [DMESG-WARN][585] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [SKIP][586] ([Intel XE#1130]) [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_pm@s3-vm-bind-prefetch.html [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm_residency@idle-residency-on-exec: - shard-dg2-set2: [DMESG-WARN][587] ([Intel XE#1727]) -> [SKIP][588] ([Intel XE#1130]) [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-463/igt@xe_pm_residency@idle-residency-on-exec.html [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-466/igt@xe_pm_residency@idle-residency-on-exec.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][589] ([Intel XE#944]) -> [SKIP][590] ([Intel XE#1130]) +3 other tests skip [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-433/igt@xe_query@multigpu-query-engines.html [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-dg2-set2: [SKIP][591] ([Intel XE#1130]) -> [SKIP][592] ([Intel XE#944]) +2 other tests skip [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-huc.html [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_wedged@basic-wedged: - shard-dg2-set2: [SKIP][593] ([Intel XE#1130]) -> [DMESG-WARN][594] ([Intel XE#2919]) [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-434/igt@xe_wedged@basic-wedged.html [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-435/igt@xe_wedged@basic-wedged.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][595] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][596] ([Intel XE#1130]) [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8123/shard-dg2-435/igt@xe_wedged@wedged-mode-toggle.html [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html [Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [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#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2167]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2167 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [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#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [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#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371 [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#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3527]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3527 [Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [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#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8123 -> IGTPW_12181 * Linux: xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a -> xe-2265-2281c1c4cf9827bee2c301c15120bac74f4af4c1 IGTPW_12181: 12181 IGT_8123: fb343db7fc59c760ef0a0c19303e7bcec177dbd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2263-a381faddbfc974e7bd57efe953a738415afccd6a: a381faddbfc974e7bd57efe953a738415afccd6a xe-2265-2281c1c4cf9827bee2c301c15120bac74f4af4c1: 2281c1c4cf9827bee2c301c15120bac74f4af4c1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12181/index.html [-- Attachment #2: Type: text/html, Size: 182338 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for Add new test to validate adaptive sharpness filter (rev9) 2024-11-22 18:57 [PATCH i-g-t v8 0/4] Add new test to validate adaptive sharpness filter Swati Sharma ` (6 preceding siblings ...) 2024-11-24 6:49 ` ✗ Xe.CI.Full: failure " Patchwork @ 2024-11-24 21:21 ` Patchwork 7 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-11-24 21:21 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev == Series Details == Series: Add new test to validate adaptive sharpness filter (rev9) URL : https://patchwork.freedesktop.org/series/130218/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15733_full -> IGTPW_12181_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12181_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12181_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_12181/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12181_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_schedule@wide: - shard-tglu-1: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@gem_exec_schedule@wide.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-dg2: [PASS][2] -> [SKIP][3] +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-5/igt@gem_lmem_evict@dontneed-evict-race.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [TIMEOUT][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@i915_module_load@reload: - shard-tglu: NOTRUN -> [ABORT][5] +2 other tests abort [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-6/igt@i915_module_load@reload.html * igt@i915_pm_rpm@gem-mmap-type: - shard-rkl: [PASS][6] -> [SKIP][7] +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-7/igt@i915_pm_rpm@gem-mmap-type.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-2/igt@i915_pm_rpm@gem-mmap-type.html * igt@i915_selftest@live@objects: - shard-dg2: [PASS][8] -> [FAIL][9] +37 other tests fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-10/igt@i915_selftest@live@objects.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@i915_selftest@live@objects.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [PASS][10] -> [DMESG-FAIL][11] +2 other tests dmesg-fail [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-FAIL][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2: - shard-rkl: [PASS][13] -> [DMESG-WARN][14] +60 other tests dmesg-warn [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-b-hdmi-a-2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][15] +15 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_plane@pixel-format-source-clamping: - shard-tglu: [PASS][16] -> [ABORT][17] +4 other tests abort [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-tglu-4/igt@kms_plane@pixel-format-source-clamping.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-2/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_rotation_crc@exhaust-fences: - shard-rkl: NOTRUN -> [DMESG-WARN][18] +14 other tests dmesg-warn [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-5/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_sharpness_filter@filter-rotations (NEW): - {shard-dg2-9}: NOTRUN -> [SKIP][19] +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-9/igt@kms_sharpness_filter@filter-rotations.html * igt@kms_sharpness_filter@filter-scaler-downscale (NEW): - shard-rkl: NOTRUN -> [SKIP][20] +16 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-2/igt@kms_sharpness_filter@filter-scaler-downscale.html - shard-dg1: NOTRUN -> [SKIP][21] +11 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@kms_sharpness_filter@filter-scaler-downscale.html * igt@kms_sharpness_filter@filter-toggle (NEW): - shard-tglu: NOTRUN -> [SKIP][22] +12 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/igt@kms_sharpness_filter@filter-toggle.html * igt@prime_busy@hang-wait@rcs0: - shard-rkl: [PASS][23] -> [INCOMPLETE][24] +1 other test incomplete [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-3/igt@prime_busy@hang-wait@rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-5/igt@prime_busy@hang-wait@rcs0.html #### Warnings #### * igt@i915_pm_rpm@gem-evict-pwrite: - shard-dg2: [SKIP][25] ([i915#4077]) -> [SKIP][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-8/igt@i915_pm_rpm@gem-evict-pwrite.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@i915_pm_rpm@gem-evict-pwrite.html * igt@i915_pm_rpm@gem-execbuf-stress: - shard-rkl: [DMESG-WARN][27] -> [SKIP][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-1/igt@i915_pm_rpm@gem-execbuf-stress.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-5/igt@i915_pm_rpm@gem-execbuf-stress.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: [SKIP][29] ([i915#2575]) -> [SKIP][30] +6 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-4/igt@kms_flip@2x-modeset-vs-vblank-race.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@2x-flip-vs-suspend: - {shard-dg2-9}: NOTRUN -> [SKIP][31] +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-9/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4: - {shard-dg2-9}: NOTRUN -> [FAIL][32] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-9/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html New tests --------- New tests have been introduced between CI_DRM_15733_full and IGTPW_12181_full: ### New IGT tests (17) ### * igt@i915_hangman: - Statuses : - Exec time: [None] s * igt@kms_chamelium_sharpness_filter@filter-basic: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-basic: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt@kms_sharpness_filter@filter-dpms: - Statuses : 4 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_sharpness_filter@filter-formats: - Statuses : 5 skip(s) - Exec time: [0.0, 0.01] s * igt@kms_sharpness_filter@filter-modifiers: - Statuses : 5 skip(s) - Exec time: [0.0, 0.01] s * igt@kms_sharpness_filter@filter-rotations: - Statuses : 5 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_sharpness_filter@filter-scaler-downscale: - Statuses : 4 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_sharpness_filter@filter-scaler-upscale: - Statuses : 5 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_sharpness_filter@filter-strength: - Statuses : 6 skip(s) - Exec time: [0.00, 0.02] s * igt@kms_sharpness_filter@filter-suspend: - Statuses : 5 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_sharpness_filter@filter-tap: - Statuses : 5 skip(s) - Exec time: [0.00, 0.01] s * igt@kms_sharpness_filter@filter-toggle: - Statuses : 4 skip(s) - Exec time: [0.00, 0.03] s * igt@kms_sharpness_filter@invalid-filter-with-plane: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_sharpness_filter@invalid-filter-with-scaler: - Statuses : 3 skip(s) - Exec time: [0.0, 0.00] s * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode: - Statuses : 5 skip(s) - Exec time: [0.0, 0.01] s * igt@kms_sharpness_filter@invalid-plane-with-filter: - Statuses : 5 skip(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in IGTPW_12181_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#8411]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-5/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-rkl: NOTRUN -> [SKIP][34] ([i915#8411]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][35] ([i915#6230]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-2/igt@api_intel_bb@crc32.html * igt@core_setmaster@master-drop-set-root: - shard-dg2: [PASS][36] -> [FAIL][37] ([i915#12909]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-4/igt@core_setmaster@master-drop-set-root.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@core_setmaster@master-drop-set-root.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#11078]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-9/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#8414]) +16 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-8/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#8414]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@fbdev@pan: - shard-dg2: [PASS][41] -> [SKIP][42] ([i915#2582]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-10/igt@fbdev@pan.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@fbdev@pan.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +11 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][44] ([i915#7697]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-5/igt@gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][45] ([i915#7697]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][46] ([i915#7297]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-clear: - shard-rkl: [PASS][47] -> [DMESG-WARN][48] ([i915#12964]) +6 other tests dmesg-warn [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-4/igt@gem_create@create-clear.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-5/igt@gem_create@create-clear.html * igt@gem_create@create-ext-set-pat: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#8562]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-14/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_isolation@preservation-s3: - shard-dg2: [PASS][50] -> [INCOMPLETE][51] ([i915#12353]) +1 other test incomplete [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-6/igt@gem_ctx_isolation@preservation-s3.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-4/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#8555]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@hostile: - shard-rkl: NOTRUN -> [FAIL][53] ([i915#11980] / [i915#12580]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-4/igt@gem_ctx_persistence@hostile.html - shard-tglu-1: NOTRUN -> [FAIL][54] ([i915#11980] / [i915#12580]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@gem_ctx_persistence@hostile.html - shard-dg1: NOTRUN -> [FAIL][55] ([i915#11980] / [i915#12580]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@gem_ctx_persistence@hostile.html - shard-snb: NOTRUN -> [SKIP][56] ([i915#1099]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-snb4/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#280]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#280]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4812]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-6/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4036]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_big@single: - shard-tglu: NOTRUN -> [ABORT][61] ([i915#11713]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-5/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][62] ([i915#6334]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][63] ([i915#11965] / [i915#12558]) +2 other tests fail [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-5/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_capture@capture@vecs1-smem: - shard-dg2: NOTRUN -> [FAIL][64] ([i915#11965]) +1 other test fail [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-5/igt@gem_exec_capture@capture@vecs1-smem.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#3539]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@gem_exec_flush@basic-uc-prw-default.html - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3539]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3539] / [i915#4852]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-4/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3539] / [i915#4852]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3281]) +11 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-5/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-write-gtt: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#3281]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-5/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4537] / [i915#4812]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4812]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][73] ([i915#11441]) +1 other test incomplete [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4860]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4860]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-2/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@heavy-random: - shard-dg2: [PASS][76] -> [SKIP][77] ([i915#12936]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-7/igt@gem_lmem_swapping@heavy-random.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#4613]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-7/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@random-engines: - shard-tglu-1: NOTRUN -> [SKIP][79] ([i915#4613]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][80] ([i915#4613]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-8/igt@gem_lmem_swapping@smem-oom.html - shard-glk: NOTRUN -> [SKIP][81] ([i915#4613]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-glk3/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][82] ([i915#5493]) +1 other test timeout [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: NOTRUN -> [TIMEOUT][83] ([i915#5493]) +1 other test timeout [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4077]) +12 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-5/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4077]) +6 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4083]) +6 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-7/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4083]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-14/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3282]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@gem_partial_pwrite_pread@write-uncached.html - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3282]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-1/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3282]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][91] ([i915#2658]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#4270]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-7/igt@gem_pxp@create-regular-context-1.html - shard-tglu: NOTRUN -> [SKIP][93] ([i915#4270]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-3/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#12975]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-4/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4270]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-3/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4270]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-tglu: [PASS][97] -> [SKIP][98] ([i915#4270]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-tglu-3/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-9/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#5190] / [i915#8428]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4079]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@gem_set_tiling_vs_pwrite.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4079]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-6/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@coherency-sync: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#3297]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#3297]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#3282] / [i915#3297]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html - shard-dg2: NOTRUN -> [SKIP][105] ([i915#3282] / [i915#3297]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#3297]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#3297] / [i915#4958]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-4/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#3297]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@gem_userptr_blits@unsync-unmap.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#2527] / [i915#2856]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#2527]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-3/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-out: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#2527]) +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@unaligned-jump: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#2856]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#2527] / [i915#2856]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [ABORT][114] ([i915#9820]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#8399]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-10/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-dg1: [PASS][116] -> [FAIL][117] ([i915#12548] / [i915#3591]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [PASS][118] -> [FAIL][119] ([i915#12739] / [i915#3591]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#11681] / [i915#6621]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/igt@i915_pm_rps@min-max-config-idle.html - shard-dg1: NOTRUN -> [SKIP][121] ([i915#11681] / [i915#6621]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4387]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@i915_pm_sseu@full-enable.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: [PASS][123] -> [ABORT][124] ([i915#12450]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-snb1/igt@i915_suspend@basic-s2idle-without-i915.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-snb7/igt@i915_suspend@basic-s2idle-without-i915.html - shard-dg1: [PASS][125] -> [DMESG-WARN][126] ([i915#4391] / [i915#4423]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg1-14/igt@i915_suspend@basic-s2idle-without-i915.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4212]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-4/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4212]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#8709]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#8709]) +11 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#5286]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5286]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#5286]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#3638]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4538] / [i915#5190]) +9 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#3638]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][139] +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#5190]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#6095]) +163 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/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-gen12-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#6095]) +84 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#6095]) +102 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-1/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#12313]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][145] ([i915#12313]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +121 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#12313]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#12805]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/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][149] ([i915#6095]) +11 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#12313]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#6095]) +19 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#10307] / [i915#10434] / [i915#6095]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#4087]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#7828]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#7828]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#7828]) +7 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-4/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#7828]) +5 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-rkl: NOTRUN -> [SKIP][158] ([i915#7828]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-snb: NOTRUN -> [SKIP][159] +89 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-snb2/igt@kms_content_protection@atomic-dpms.html - shard-tglu: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-8/igt@kms_content_protection@atomic-dpms.html - shard-rkl: NOTRUN -> [SKIP][161] ([i915#7118] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-3/igt@kms_content_protection@atomic-dpms.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#7116] / [i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#3299]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-3/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#9424]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-8/igt@kms_content_protection@mei-interface.html - shard-rkl: NOTRUN -> [SKIP][166] ([i915#9424]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-2/igt@kms_content_protection@mei-interface.html - shard-dg1: NOTRUN -> [SKIP][167] ([i915#9424]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#7118]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#6944] / [i915#7116] / [i915#7118]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-5/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-dpms@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][170] ([i915#12964]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-5/igt@kms_cursor_crc@cursor-dpms@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#3555]) +7 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#12976]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#12976]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#12976]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#12976]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#12976]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#3555]) +5 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_edge_walk@256x256-top-bottom: - shard-dg1: NOTRUN -> [DMESG-WARN][178] ([i915#4423]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@kms_cursor_edge_walk@256x256-top-bottom.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#4103] / [i915#4213]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#5354]) +33 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#9067]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-14/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#4103]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#4103]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1: - shard-snb: NOTRUN -> [FAIL][184] ([i915#12638]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#8588]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555]) +4 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#1257]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-8/igt@kms_dp_aux_dev.html - shard-rkl: NOTRUN -> [SKIP][188] ([i915#1257]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-4/igt@kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][189] ([i915#1257]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-10/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#12402]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-5/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#8812]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3840] / [i915#9688]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3840]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][195] ([i915#3840]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#3840]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#3840] / [i915#9053]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3840] / [i915#9053]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][199] ([i915#3840] / [i915#9053]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#3955]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][201] ([i915#3469]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#4854]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-5/igt@kms_feature_discovery@chamelium.html - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#2065] / [i915#4854]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#1839]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-3/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#1839]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#9337]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#658]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-6/igt@kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][208] ([i915#658]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-2/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3637]) +9 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-10/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#8381]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][211] ([i915#8381]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#9934]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#9934]) +10 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#3637]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-snb: [PASS][215] -> [FAIL][216] ([i915#2122]) +1 other test fail [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-snb1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][217] ([i915#2122]) +1 other test fail [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-2/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672]) +5 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/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][220] ([i915#2672] / [i915#3555]) +4 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-3/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-tglu: NOTRUN -> [SKIP][221] ([i915#2587] / [i915#2672] / [i915#3555]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/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-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#2672]) +8 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#2587] / [i915#2672] / [i915#3555]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#2587] / [i915#2672] / [i915#3555]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/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-dg1: NOTRUN -> [SKIP][226] ([i915#2587] / [i915#2672]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/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][227] ([i915#2672] / [i915#3555]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/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][228] ([i915#2587] / [i915#2672]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/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-4tile-downscaling: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#3555]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-dg2: [PASS][230] -> [SKIP][231] +22 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: [PASS][232] -> [DMESG-WARN][233] ([i915#12917]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-snb: [PASS][234] -> [SKIP][235] +6 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#1825]) +13 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][237] +39 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#8708]) +12 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][239] +22 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#8708]) +17 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#9766]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#3458]) +14 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][243] +93 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#3458]) +11 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#3023]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-14/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-9/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8228]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-3/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-big-joiner: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#10656]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#10656]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#12394]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-9/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#1839]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#6301]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-6/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][255] ([i915#6301]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][256] ([i915#12178]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-glk3/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][257] ([i915#7862]) +1 other test fail [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-glk3/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][258] ([i915#12177]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-glk4/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][259] ([i915#10647]) +1 other test fail [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-glk4/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#12247] / [i915#9423]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#12247]) +4 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#12247]) +8 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-dg2: [PASS][263] -> [SKIP][264] ([i915#2575] / [i915#9423]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#12247] / [i915#6953]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#12247]) +32 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#12247]) +3 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#2575] / [i915#9423]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#12247] / [i915#6953]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#12247] / [i915#3555]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][271] ([i915#12247] / [i915#3555]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][272] ([i915#12247] / [i915#3555]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#12247] / [i915#6953] / [i915#9423]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-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-d: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#12247]) +7 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#12343]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#9812]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#5354]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-4/igt@kms_pm_backlight@fade-with-suspend.html - shard-dg1: NOTRUN -> [SKIP][278] ([i915#5354]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [PASS][279] -> [FAIL][280] ([i915#9295]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][281] -> [SKIP][282] ([i915#4281]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#8430]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@drm-resources-equal: - shard-dg2: [PASS][284] -> [SKIP][285] ([i915#12937]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-6/igt@kms_pm_rpm@drm-resources-equal.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][286] -> [SKIP][287] ([i915#9519]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#9519]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#9519]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][290] -> [SKIP][291] ([i915#12916]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-dg2: NOTRUN -> [SKIP][292] ([i915#12937]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#6524]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-4/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][294] ([Intel XE#3529]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#11520]) +2 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][296] ([i915#11520]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-snb6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html - shard-rkl: NOTRUN -> [SKIP][297] ([i915#11520]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#11520]) +10 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#11520]) +6 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][300] ([i915#11520]) +8 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-glk3/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#11520]) +7 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-4/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#9683]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-14/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#1072] / [i915#9732]) +8 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-4/igt@kms_psr@fbc-pr-cursor-mmap-cpu.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#1072] / [i915#9732]) +22 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-2/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#9732]) +27 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-5/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt@kms_psr@pr-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#9732]) +6 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_psr@pr-sprite-render.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#1072] / [i915#9732]) +23 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-14/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][308] +49 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][309] +301 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-glk4/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#9685]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#9685]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#4235]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-2/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#2575] / [i915#5190]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#5289]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#12755]) +3 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#3555]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sharpness_filter@filter-modifiers (NEW): - shard-dg2: NOTRUN -> [SKIP][317] ([i915#2575]) +90 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@kms_sharpness_filter@filter-modifiers.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][318] ([IGT#2]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-6/igt@kms_sysfs_edid_timing.html - shard-dg1: NOTRUN -> [FAIL][319] ([IGT#2] / [i915#6493]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#8623]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#8623]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#11920]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-5/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][323] ([i915#11920]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-9/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#3555] / [i915#9906]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-10/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#9906]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-dg1: NOTRUN -> [SKIP][326] ([i915#9906]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][327] ([i915#9906]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-9/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#9906]) +2 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#9906]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#2437] / [i915#9412]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#2437] / [i915#9412]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][332] ([i915#2437] / [i915#9412]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][333] ([i915#2437]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-glk4/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#2437]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-12/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#7387]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-5/igt@perf@global-sseu-config.html * igt@perf@stress-open-close: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#12506]) +4 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@perf@stress-open-close.html * igt@perf_pmu@all-busy-check-all: - shard-dg2: [PASS][337] -> [SKIP][338] ([i915#12506]) +3 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-1/igt@perf_pmu@all-busy-check-all.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@perf_pmu@all-busy-check-all.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][339] ([i915#4349]) +3 other tests fail [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][340] ([i915#11823]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-7/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][341] ([i915#8516]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-6/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@render-node-busy-idle@vcs0: - shard-dg2: [PASS][342] -> [FAIL][343] ([i915#4349]) +5 other tests fail [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-4/igt@perf_pmu@render-node-busy-idle@vcs0.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-3/igt@perf_pmu@render-node-busy-idle@vcs0.html - shard-dg1: [PASS][344] -> [FAIL][345] ([i915#4349]) +3 other tests fail [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg1-18/igt@perf_pmu@render-node-busy-idle@vcs0.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@perf_pmu@render-node-busy-idle@vcs0.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#3291] / [i915#3708]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-5/igt@prime_vgem@basic-read.html * igt@sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#9917]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-18/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1: - shard-tglu: NOTRUN -> [FAIL][348] ([i915#12910]) +20 other tests fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#9917]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@syncobj_timeline@wait-all-for-submit-delayed-submit: - shard-dg2: [PASS][350] -> [SKIP][351] ([i915#2575]) +138 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-1/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-dg2: [SKIP][352] ([i915#2575]) -> [PASS][353] +125 other tests pass [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@gem_ctx_exec@basic-nohangcheck.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][354] ([i915#12714] / [i915#5784]) -> [PASS][355] [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg1-13/igt@gem_eio@unwedge-stress.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_suspend@basic-s4-devices: - shard-tglu: [ABORT][356] ([i915#7975] / [i915#8213]) -> [PASS][357] +1 other test pass [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-3/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_lmem_swapping@verify-ccs: - shard-dg2: [SKIP][358] ([i915#12936]) -> [PASS][359] [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@gem_lmem_swapping@verify-ccs.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_tiled_swapping@non-threaded: - shard-rkl: [FAIL][360] -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-1/igt@gem_tiled_swapping@non-threaded.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-1/igt@gem_tiled_swapping@non-threaded.html * igt@gem_workarounds@suspend-resume-context: - shard-tglu: [ABORT][362] -> [PASS][363] [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-tglu-2/igt@gem_workarounds@suspend-resume-context.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-6/igt@gem_workarounds@suspend-resume-context.html * igt@i915_module_load@reload: - shard-dg2: [FAIL][364] ([i915#12870]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@i915_module_load@reload.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/igt@i915_module_load@reload.html * igt@i915_pm_rpm@reg-read-ioctl: - shard-rkl: [SKIP][366] ([i915#12964]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-2/igt@i915_pm_rpm@reg-read-ioctl.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-7/igt@i915_pm_rpm@reg-read-ioctl.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-glk: [FAIL][368] ([i915#12238]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-glk3/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs: - shard-glk: [FAIL][370] ([i915#11859]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-glk3/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg2: [SKIP][372] -> [PASS][373] +15 other tests pass [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-dg1: [DMESG-WARN][374] ([i915#4423]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-256x85.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_flip@blocking-wf_vblank@a-hdmi-a1: - shard-tglu: [FAIL][376] ([i915#2122]) -> [PASS][377] +1 other test pass [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-tglu-4/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-tglu-4/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html * igt@kms_flip@dpms-vs-vblank-race-interruptible: - shard-dg2: [FAIL][378] ([i915#10826]) -> [PASS][379] +1 other test pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-1/igt@kms_flip@dpms-vs-vblank-race-interruptible.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-7/igt@kms_flip@dpms-vs-vblank-race-interruptible.html * igt@kms_flip@plain-flip-fb-recreate@a-vga1: - shard-snb: [FAIL][380] ([i915#2122]) -> [PASS][381] +9 other tests pass [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-snb7/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-snb7/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-dg2: [FAIL][382] ([i915#6880]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [SKIP][384] -> [PASS][385] +6 other tests pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [DMESG-FAIL][386] -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2: [INCOMPLETE][388] ([i915#12756]) -> [PASS][389] +1 other test pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-2/igt@kms_pipe_crc_basic@suspend-read-crc.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-3/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0: - shard-rkl: [DMESG-WARN][390] ([i915#12964]) -> [PASS][391] +11 other tests pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-1/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2: [SKIP][392] ([i915#2575] / [i915#9423]) -> [PASS][393] +3 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_pm_rpm@cursor: - shard-dg2: [SKIP][394] ([i915#12937]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@kms_pm_rpm@cursor.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-2/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][396] ([i915#9519]) -> [PASS][397] +1 other test pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][398] ([i915#9519]) -> [PASS][399] +3 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-vgem: - shard-rkl: [DMESG-WARN][400] ([i915#12917]) -> [PASS][401] +1 other test pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-3/igt@kms_prime@basic-crc-vgem.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-4/igt@kms_prime@basic-crc-vgem.html * igt@kms_sysfs_edid_timing: - shard-snb: [FAIL][402] ([IGT#2] / [i915#6493]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-snb7/igt@kms_sysfs_edid_timing.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-snb1/igt@kms_sysfs_edid_timing.html * igt@perf_pmu@busy-accuracy-50: - shard-rkl: [DMESG-WARN][404] -> [PASS][405] +59 other tests pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-4/igt@perf_pmu@busy-accuracy-50.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-7/igt@perf_pmu@busy-accuracy-50.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg2: [SKIP][406] ([i915#12506]) -> [PASS][407] +4 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@perf_pmu@most-busy-idle-check-all.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-5/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-rkl: [FAIL][408] ([i915#4349]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-rkl-5/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-rkl-5/igt@perf_pmu@most-busy-idle-check-all@rcs0.html #### Warnings #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: [SKIP][410] ([i915#8411]) -> [SKIP][411] ([i915#2575]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-10/igt@api_intel_bb@blit-reloc-purge-cache.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@drm_fdinfo@all-busy-idle-check-all: - shard-dg2: [SKIP][412] ([i915#8414]) -> [SKIP][413] ([i915#12506]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-3/igt@drm_fdinfo@all-busy-idle-check-all.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@drm_fdinfo@all-busy-idle-check-all.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg2: [SKIP][414] ([i915#12506]) -> [SKIP][415] ([i915#8414]) +1 other test skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@drm_fdinfo@virtual-busy-idle.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-10/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_ccs@suspend-resume: - shard-dg2: [SKIP][416] ([i915#2575]) -> [INCOMPLETE][417] ([i915#7297]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@gem_ccs@suspend-resume.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-2/igt@gem_ccs@suspend-resume.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: [SKIP][418] ([i915#2575]) -> [SKIP][419] ([i915#8555]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-close.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_eio@reset-stress: - shard-dg2: [FAIL][420] ([i915#12543] / [i915#5784]) -> [SKIP][421] ([i915#2575]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-7/igt@gem_eio@reset-stress.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: [SKIP][422] ([i915#2575]) -> [SKIP][423] ([i915#4771]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@gem_exec_balancer@bonded-pair.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-4/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: [SKIP][424] ([i915#2575]) -> [SKIP][425] ([i915#4812]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-7/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: [SKIP][426] ([i915#8555]) -> [SKIP][427] ([i915#2575]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-6/igt@gem_exec_balancer@noheartbeat.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_fence@submit: - shard-dg2: [SKIP][428] ([i915#4812]) -> [SKIP][429] ([i915#2575]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-1/igt@gem_exec_fence@submit.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: [SKIP][430] ([i915#2575]) -> [SKIP][431] ([i915#3539]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-4/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: [SKIP][432] ([i915#3539] / [i915#4852]) -> [SKIP][433] ([i915#2575]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-3/igt@gem_exec_flush@basic-wb-pro-default.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: [SKIP][434] ([i915#3281]) -> [SKIP][435] ([i915#2575]) +8 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-read.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: [SKIP][436] ([i915#2575]) -> [SKIP][437] ([i915#3281]) +6 other tests skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15733/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-cpu-active.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/shard-dg2-4/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg2: [SKIP][438] ([i915 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12181/index.html ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-12-03 5:28 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-22 18:57 [PATCH i-g-t v8 0/4] Add new test to validate adaptive sharpness filter Swati Sharma 2024-11-22 18:57 ` [PATCH i-g-t, v7 1/4] lib/igt_kms: Add "sharpness strength" as crtc property Swati Sharma 2024-11-22 18:57 ` [PATCH i-g-t, v2 2/4] lib/igt_kms: Add func() to return scaling mode name string Swati Sharma 2024-11-22 18:57 ` [PATCH i-g-t, v8 3/4] tests/kms_sharpness_filter: Add adaptive sharpness filter test Swati Sharma 2024-12-03 5:27 ` Nautiyal, Ankit K 2024-11-22 18:57 ` [PATCH i-g-t, v2 4/4] tests/chamelium/kms_chamelium_sharpness_filter: Add basic test Swati Sharma 2024-11-22 20:18 ` ✓ Xe.CI.BAT: success for Add new test to validate adaptive sharpness filter (rev9) Patchwork 2024-11-22 20:26 ` ✓ i915.CI.BAT: " Patchwork 2024-11-24 6:49 ` ✗ Xe.CI.Full: failure " Patchwork 2024-11-24 21:21 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox