* [PATCH i-g-t v8 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test
@ 2025-02-08 6:21 Santhosh Reddy Guddati
2025-02-08 6:21 ` [PATCH i-g-t v8 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc Santhosh Reddy Guddati
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Santhosh Reddy Guddati @ 2025-02-08 6:21 UTC (permalink / raw)
To: igt-dev
Cc: vinod.govindapillai, jeevan.b, kunal1.joshi, ramanaidu.naladala,
swati2.sharma, Santhosh Reddy Guddati
Use the FP_DAMAGE_CLIPS property of the plane for non psr modes
and fill the damaged rectangles on the plane with framebuffer
coordinates and verify that fbc dirty ctl is enabled
Santhosh Reddy Guddati (1):
tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl
with fbc
tests/intel/kms_fbc_dirty_rect.c | 645 +++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 646 insertions(+)
create mode 100644 tests/intel/kms_fbc_dirty_rect.c
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH i-g-t v8 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc 2025-02-08 6:21 [PATCH i-g-t v8 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test Santhosh Reddy Guddati @ 2025-02-08 6:21 ` Santhosh Reddy Guddati 2025-02-12 13:47 ` Govindapillai, Vinod 2025-02-08 10:32 ` ✓ Xe.CI.BAT: success for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev8) Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Santhosh Reddy Guddati @ 2025-02-08 6:21 UTC (permalink / raw) To: igt-dev Cc: vinod.govindapillai, jeevan.b, kunal1.joshi, ramanaidu.naladala, swati2.sharma, Santhosh Reddy Guddati [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #1: Type: text/plain; charset=a, Size: 23543 bytes --] Introduce new test file kms_fbc_dirty_rect.c to verify DIRTYFB ioctl functionality with FBC enabled. The subtests perform full-screen updates and capture their CRCs as reference values. Subsequent screen updates utilize the FBC dirty rectangle feature, using the FP_DAMAGE_CLIPS property, and the resulting CRCs are compared against the reference values. v2: Fix typo , add version check for feature support, extend support for all pipes (Rama Naidu). v3: Add new subtest to scatter dirty rectangles at differnt places in a frame and commit all rectangles at once (Rama Naidu). Add a negative case with invalid coordinates (Vinod) v4: Add subtest `fbc-dirty-rectangle-basic` to perform sanity checks by sending multiple damaged areas with non-PSR modes.(Vinod) Update `meson.build` to include the new test. v5: Include checks to ensure FBC is enabled during tests.(Vinod) Add dynamic subtests for fbc-dirty-rectangle-different-formats and fbc-dirty-rectangle-dirtyfb-ioctl. (Vinod) v6: Update meson.build to include kms_fbc_dirty_rect. v7: Add commit description, remove i915 check and remove redundant checks (Swathi) Reformat code by removing redundant usage. Add new test to verify dirty rect outside-visible-region. v8: Include test description and documentation for subtests. Updated framebuffer to target the specific area, avoiding a full screen update and making the damage area check effective (Vinod). Add new subtest fbc-dirty-rectangle-dirtyfb-tests (Vinod) Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> --- tests/intel/kms_fbc_dirty_rect.c | 645 +++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 646 insertions(+) create mode 100644 tests/intel/kms_fbc_dirty_rect.c diff --git a/tests/intel/kms_fbc_dirty_rect.c b/tests/intel/kms_fbc_dirty_rect.c new file mode 100644 index 000000000..13e330ccd --- /dev/null +++ b/tests/intel/kms_fbc_dirty_rect.c @@ -0,0 +1,645 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2025 Intel Corporation + */ + +/** + * TEST: kms dirty fbc + * Category: Display + * Description: Test DIRTYFB ioctl functionality with FBC enabled. + * Driver requirement: i915, xe + * Functionality: dirtyfb, fbc + * Mega feature: General Display Features + * Test category: functionality test + */ + +#include <sys/types.h> + +#include "igt.h" + +#include "igt_sysfs.h" +#include "i915/gem.h" +#include "i915/gem_create.h" +#include "i915/intel_drrs.h" +#include "igt_psr.h" + +#include "i915/intel_fbc.h" +#include "intel_mocs.h" +#include "intel_pat.h" + +#include "xe/xe_query.h" + +/** + * SUBTEST: fbc-dirty-rectangle-basic + * Description: Sanity test to verify FBC DR by sending multiple damaged areas with non psr modes + * Functionality: fbc + * + * SUBTEST: fbc-dirty-rectangle-out-visible-area + * Description: Sanity test to verify FBC DR by sending multiple damaged areas with non psr modes + * Functionality: fbc + * + * SUBTEST: fbc-dirty-rectangle-dirtyfb-tests + * Description: Sanity test to verify FBC DR by sending multiple damaged areas with non psr modes + * Functionality: fbc + * + * SUBTEST: fbc-dirty-rectangle-different-formats + * Description: Sanity test to verify FBC DR by sending multiple + * damaged areas with different formats. + * Functionality: fbc + * + */ + +#ifndef PAGE_SIZE +#define PAGE_SIZE 4096 +#endif + +#define SQUARE_SIZE 100 +#define SQUARE_OFFSET 100 +#define SQUARE_OFFSET_2 600 +#define SQUARE_OFFSET_OUTSIDE_Y 1850 + +typedef struct { + int drm_fd; + int debugfs_fd; + igt_display_t display; + drmModeModeInfo *mode; + igt_output_t *output; + igt_pipe_crc_t *pipe_crc; + enum pipe pipe; + u32 format; + + igt_crc_t ref_crc; + + enum { + FEATURE_NONE = 0, + FEATURE_PSR = 1, + FEATURE_FBC = 2, + FEATURE_DRRS = 4, + FEATURE_COUNT = 8, + FEATURE_DEFAULT = 8, + } feature; +} data_t; + +enum color { + BLACK, + RED, + GREEN, + BLUE, + WHITE, +}; + +static void set_damage_clip(struct drm_mode_rect *damage, int x1, int y1, int x2, int y2) +{ + damage->x1 = x1; + damage->y1 = y1; + damage->x2 = x2; + damage->y2 = y2; +} + +static void set_damage_clip_w(struct drm_mode_rect *damage, int x1, int y1, int width, int height) +{ + set_damage_clip(damage, x1, y1, x1 + width, y1 + height); +} + +static void dirty_rect_draw_white_rects(data_t *data, struct igt_fb *fb, + int nrects, struct drm_mode_rect *rect) +{ + cairo_t *cr; + + if (!nrects || !rect) + return; + + cr = igt_get_cairo_ctx(data->drm_fd, fb); + + for (int i = 0; i < nrects; i++) { + igt_paint_color_alpha(cr, rect[i].x1, rect[i].y1, + rect[i].x2 - rect[i].x1, + rect[i].y2 - rect[i].y1, + 1.0, 1.0, 1.0, 1.0); + } + + igt_put_cairo_ctx(cr); +} + +static void dirty_rect_create_fb(data_t *data, struct igt_fb *fb, int fb_width, + int fb_height, enum color bg_color) +{ + switch (bg_color) { + case RED: + igt_create_color_fb(data->drm_fd, fb_width, fb_height, + data->format, DRM_FORMAT_MOD_LINEAR, + 1.0, 0.0, 0.0, fb); + break; + case GREEN: + igt_create_color_fb(data->drm_fd, fb_width, fb_height, + data->format, DRM_FORMAT_MOD_LINEAR, + 0.0, 1.0, 0.0, fb); + break; + case BLUE: + igt_create_color_fb(data->drm_fd, fb_width, fb_height, + data->format, DRM_FORMAT_MOD_LINEAR, + 0.0, 0.0, 1.0, fb); + break; + case WHITE: + igt_create_color_fb(data->drm_fd, fb_width, fb_height, + data->format, DRM_FORMAT_MOD_LINEAR, + 1.0, 1.0, 1.0, fb); + break; + default: + case BLACK: + igt_create_color_fb(data->drm_fd, fb_width, fb_height, + data->format, DRM_FORMAT_MOD_LINEAR, + 0.0, 0.0, 0.0, fb); + break; + } +} + +static void +set_damage_area(igt_plane_t *plane, struct drm_mode_rect *rects, + size_t length) +{ + igt_plane_replace_prop_blob(plane, IGT_PLANE_FB_DAMAGE_CLIPS, rects, length); +} + +static void +set_fb_and_collect_crc(data_t *data, igt_plane_t *plane, struct igt_fb *fb, + igt_pipe_crc_t *pipe_crc, igt_crc_t *crc) +{ + igt_plane_set_fb(plane, fb); + igt_display_commit2(&data->display, COMMIT_ATOMIC); + igt_pipe_crc_collect_crc(pipe_crc, crc); + igt_assert_f(intel_fbc_is_enabled(data->drm_fd, data->pipe, + IGT_LOG_WARN), + "FBC is not enabled\n"); +} + +static void +update_rect_with_dirtyfb(data_t *data, struct igt_fb *fb1, struct igt_fb *fb2, + struct drm_mode_rect *rect) +{ + struct intel_buf *src, *dst; + struct intel_bb *ibb; + igt_spin_t *spin; + int r; + struct buf_ops *bops; + igt_render_copyfunc_t rendercopy; + + bops = buf_ops_create(data->drm_fd); + rendercopy = igt_get_render_copyfunc(intel_get_drm_devid(data->drm_fd)); + + src = intel_buf_create_full(bops, fb1->gem_handle, fb1->width, + fb1->height, + igt_drm_format_to_bpp(fb1->drm_format), + 0, + igt_fb_mod_to_tiling(fb1->modifier), + 0, fb1->size, 0, system_memory(data->drm_fd), + intel_get_pat_idx_uc(data->drm_fd), + DEFAULT_MOCS_INDEX); + dst = intel_buf_create_full(bops, fb2->gem_handle, + fb2->width, fb2->height, + igt_drm_format_to_bpp(fb2->drm_format), + 0, igt_fb_mod_to_tiling(fb2->modifier), + 0, fb2->size, 0, system_memory(data->drm_fd), + intel_get_pat_idx_uc(data->drm_fd), + DEFAULT_MOCS_INDEX); + ibb = intel_bb_create(data->drm_fd, PAGE_SIZE); + + spin = igt_spin_new(data->drm_fd, .ahnd = ibb->allocator_handle); + igt_spin_set_timeout(spin, NSEC_PER_SEC); + + rendercopy(ibb, src, rect->x1, rect->y1, rect->x2 - rect->x1, + rect->y2 - rect->y1, dst, rect->x1, rect->y1); + + /* Perfom dirtyfb right after initiating rendercopy/blitter */ + r = drmModeDirtyFB(data->drm_fd, fb2->fb_id, NULL, 0); + igt_assert(r == 0 || r == -ENOSYS); + + /* Ensure rendercopy/blitter is complete */ + intel_bb_sync(ibb); + + igt_spin_free(data->drm_fd, spin); + intel_bb_destroy(ibb); + intel_buf_destroy(src); + intel_buf_destroy(dst); +} + +static void fbc_dirty_rectangle_dirtyfb(data_t *data) +{ + igt_pipe_crc_t *pipe_crc = data->pipe_crc; + igt_display_t *display = &data->display; + igt_output_t *output = data->output; + igt_plane_t *primary; + drmModeModeInfo *mode; + struct igt_fb main_fb, fb2, fb3, fb4; + struct drm_mode_rect full_rect, rect1, rect2; + igt_crc_t main_crc, fb2_crc, fb3_crc, fb4_crc, crc; + + mode = igt_output_get_mode(output); + igt_output_set_pipe(output, data->pipe); + if (!pipe_crc) { + pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe, + IGT_PIPE_CRC_SOURCE_AUTO); + igt_assert(pipe_crc); + } + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + + set_damage_clip_w(&full_rect, 0, 0, mode->hdisplay, mode->vdisplay); + set_damage_clip_w(&rect1, SQUARE_OFFSET, SQUARE_OFFSET, SQUARE_SIZE, + SQUARE_SIZE); + set_damage_clip_w(&rect2, SQUARE_OFFSET_2, SQUARE_OFFSET_2, + SQUARE_SIZE, SQUARE_SIZE); + + dirty_rect_create_fb(data, &main_fb, data->mode->hdisplay, + data->mode->vdisplay, BLUE); + + dirty_rect_create_fb(data, &fb2, data->mode->hdisplay, + data->mode->vdisplay, BLUE); + dirty_rect_draw_white_rects(data, &fb2, 1, &rect1); + + dirty_rect_create_fb(data, &fb3, data->mode->hdisplay, + data->mode->vdisplay, BLUE); + dirty_rect_draw_white_rects(data, &fb3, 1, &rect2); + + dirty_rect_create_fb(data, &fb4, data->mode->hdisplay, + data->mode->vdisplay, BLUE); + dirty_rect_draw_white_rects(data, &fb4, 1, &rect2); + + + /* 1st screen - Empty blue screen*/ + set_damage_area(primary, &full_rect, sizeof(full_rect)); + set_fb_and_collect_crc(data, primary, &main_fb, pipe_crc, &main_crc); + + /* 2nd screen - 1st white rect at 100, 100 - using damage area */ + set_damage_area(primary, &rect1, sizeof(rect1)); + set_fb_and_collect_crc(data, primary, &fb2, pipe_crc, &fb2_crc); + + /* 3rd screen - 2nd white rect at 600, 600 - using damage area. + * Now two white rects on screen + */ + set_damage_area(primary, &rect2, sizeof(rect2)); + set_fb_and_collect_crc(data, primary, &fb3, pipe_crc, &fb3_crc); + + /* 4th screen - clear the 2nd white rect at 600,600 with dirtyfb. + * Copy rect2 area from main_fb to fb3. Then fb3 becomes whole blue + */ + update_rect_with_dirtyfb(data, &main_fb, &fb3, &rect2); + /* Now the screen must match 3rd screen - with both rects */ + igt_pipe_crc_collect_crc(pipe_crc, &crc); + igt_assert_crc_equal(&crc, &main_crc); + + /* 5th screen - Copy the first rect at 100,100 with dirtyfb. + * Copy rect1 area from fb2 to fb3. Then fb3 becomes one rect at 100,100 + */ + update_rect_with_dirtyfb(data, &fb2, &fb3, &rect1); + /* Now the screen must match 2nd screen - with one rect 1t 100,100 */ + igt_pipe_crc_collect_crc(pipe_crc, &crc); + igt_assert_crc_equal(&crc, &fb2_crc); + + /* 6th screen - 2nd white rect at 600, 600 - using damage area. + * Now two white rects on screen + */ + set_damage_area(primary, &rect2, sizeof(rect2)); + set_fb_and_collect_crc(data, primary, &fb4, pipe_crc, &fb4_crc); + /* Now the screen must match 3rd screen - with both rects */ + igt_pipe_crc_collect_crc(pipe_crc, &crc); + igt_assert_crc_equal(&crc, &fb3_crc); + + igt_plane_set_fb(primary, NULL); + igt_remove_fb(data->drm_fd, &main_fb); + igt_remove_fb(data->drm_fd, &fb2); + igt_remove_fb(data->drm_fd, &fb3); + igt_remove_fb(data->drm_fd, &fb4); + igt_display_commit2(display, COMMIT_ATOMIC); +} + +/** + * fbc_dirty_rectangle_outside_visible_region - Test dirty rectangle outside visible region + * @data: Pointer to the test data structure + * + * This test verifies the behavior of the Frame Buffer Compression (FBC) when + * dirty rectangles are set outside the visible region of the display. It creates + * a main framebuffer and three additional framebuffers with dirty rectangles + * positioned horizontally, vertically, and both horizontally and vertically + * outside the visible region. The test then sets the damage area to these + * rectangles and collects CRCs to ensure that the content outside the visible + * region does not affect the main framebuffer's CRC. + */ +static void fbc_dirty_rectangle_outside_visible_region(data_t *data) +{ + igt_pipe_crc_t *pipe_crc = data->pipe_crc; + igt_display_t *display = &data->display; + igt_output_t *output = data->output; + igt_plane_t *primary; + drmModeModeInfo *mode; + struct igt_fb main_fb, rect_fb[3]; + struct drm_mode_rect rect[3], full_rect; + igt_crc_t main_crc, rect_crc[3]; + + mode = igt_output_get_mode(output); + igt_output_set_pipe(output, data->pipe); + if (!pipe_crc) { + pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe, + IGT_PIPE_CRC_SOURCE_AUTO); + igt_assert(pipe_crc); + } + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + + set_damage_clip(&full_rect, 0, 0, mode->hdisplay + 200, + mode->vdisplay + 200); + /* Rect Horizontally outside visible region */ + set_damage_clip_w(&rect[0], data->mode->hdisplay + 10, 100, + SQUARE_SIZE, SQUARE_SIZE); + /* Rect vertically outside visible region */ + set_damage_clip_w(&rect[1], 10, data->mode->vdisplay + 50, + SQUARE_SIZE, SQUARE_SIZE); + /* Rect Horizontally and vertically outside visible region */ + set_damage_clip_w(&rect[2], data->mode->hdisplay + 10, + data->mode->vdisplay + 50, SQUARE_SIZE, SQUARE_SIZE); + + dirty_rect_create_fb(data, &main_fb, data->mode->hdisplay + 200, + data->mode->vdisplay + 200, GREEN); + + for (int i = 0; i < 3; i++) { + dirty_rect_create_fb(data, &rect_fb[i], data->mode->hdisplay + 200, + data->mode->vdisplay + 200, GREEN); + dirty_rect_draw_white_rects(data, &rect_fb[i], 1, &rect[i]); + } + + /* Main rect */ + set_damage_area(primary, &full_rect, sizeof(full_rect)); + set_fb_and_collect_crc(data, primary, &main_fb, pipe_crc, &main_crc); + + for (int i = 0; i < 3; i++) { + set_damage_area(primary, &rect[i], sizeof(rect[i])); + set_fb_and_collect_crc(data, primary, &rect_fb[i], pipe_crc, &rect_crc[i]); + igt_assert_crc_equal(&rect_crc[i], &main_crc); + } + + igt_plane_set_fb(primary, NULL); + igt_remove_fb(data->drm_fd, &main_fb); + for (int i = 0; i < 3; i++) + igt_remove_fb(data->drm_fd, &rect_fb[i]); + igt_display_commit2(display, COMMIT_ATOMIC); +} + +/* + * fbc_dirty_rectangle_basic + * @data: data_t + * + * This test draws screens as full-screen updates and collects their CRCs + * as reference values. Screens are then updated using the FBC + * dirty rect feature and compared with the reference CRCs. + * Matching CRCs indicate success. + * + * Steps to Collect Reference CRCs: + * 1. Full Blue Screen + * - Frame Buffer: main_fb + * - CRC: main_fb_crc + * 2. White Square on Upper Left + * - Frame Buffer: rect1_fb + * - CRC: rect1_fb_crc + * 3. Second White Square Below First + * - Frame Buffer: rect2_fb + * - CRC: rect2_fb_crc + * 4. Both Rectangles + * - Frame Buffer: rect_combined_fb + * - CRC: rect_combined_fb_crc + * + * Steps to Update Screen with FBC Dirty Rect: + * 1. Full Blue Screen + * - Set rect_combined_fb with Damage Area Update + * - CRC should match rect_combined_fb_crc + * 2. Clear First Rectangle Area + * - Use main_fb and damage area as rect1 coordinates + * - CRC should match rect2_fb_crc + * 3. Clear Second Rectangle Area + * - Use main_fb and damage area as rect2 coordinates + * - CRC should match main_fb_crc + */ +static void fbc_dirty_rectangle_basic(data_t *data) +{ + igt_pipe_crc_t *pipe_crc = data->pipe_crc; + igt_display_t *display = &data->display; + igt_output_t *output = data->output; + igt_plane_t *primary; + drmModeModeInfo *mode; + struct igt_fb main_fb; + struct igt_fb rect_1_fb; + struct igt_fb rect_2_fb; + struct igt_fb rect_combined_fb; + struct drm_mode_rect rect1; + struct drm_mode_rect rect2; + struct drm_mode_rect rect_combined[2]; + struct drm_mode_rect full_rect; + igt_crc_t main_fb_crc, rect_1_fb_crc, rect_2_fb_crc, rect_combined_fb_crc, crc; + + mode = igt_output_get_mode(output); + igt_output_set_pipe(output, data->pipe); + if (!pipe_crc) { + pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe, + IGT_PIPE_CRC_SOURCE_AUTO); + igt_assert(pipe_crc); + } + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + + set_damage_clip(&full_rect, 0, 0, mode->hdisplay-1, mode->vdisplay-1); + set_damage_clip(&rect1, SQUARE_OFFSET, SQUARE_OFFSET, + SQUARE_OFFSET + SQUARE_SIZE, SQUARE_OFFSET + SQUARE_SIZE); + set_damage_clip(&rect2, SQUARE_OFFSET_2, SQUARE_OFFSET_2, + SQUARE_OFFSET_2 + SQUARE_SIZE, SQUARE_OFFSET_2 + SQUARE_SIZE); + set_damage_clip(&rect_combined[0], rect1.x1, rect1.y1, rect1.x2, rect1.y2); + set_damage_clip(&rect_combined[1], rect2.x1, rect2.y1, rect2.x2, rect2.y2); + + dirty_rect_create_fb(data, &main_fb, data->mode->hdisplay, + data->mode->vdisplay, BLUE); + + dirty_rect_create_fb(data, &rect_1_fb, data->mode->hdisplay, + data->mode->vdisplay, BLUE); + dirty_rect_draw_white_rects(data, &rect_1_fb, 1, &rect1); + + dirty_rect_create_fb(data, &rect_2_fb, data->mode->hdisplay, + data->mode->vdisplay, BLUE); + dirty_rect_draw_white_rects(data, &rect_2_fb, 1, &rect2); + + dirty_rect_create_fb(data, &rect_combined_fb, data->mode->hdisplay, + data->mode->vdisplay, BLUE); + dirty_rect_draw_white_rects(data, &rect_combined_fb, + ARRAY_SIZE(rect_combined), rect_combined); + + /* main_fb blank blue screen - get and store crc*/ + set_fb_and_collect_crc(data, primary, &main_fb, pipe_crc, &main_fb_crc); + + /* Whole blue screen with one white rect and collect crc */ + set_damage_area(primary, &full_rect, sizeof(full_rect)); + set_fb_and_collect_crc(data, primary, &rect_1_fb, pipe_crc, + &rect_1_fb_crc); + + /* Second white rect and collect crc */ + set_damage_area(primary, &full_rect, sizeof(full_rect)); + set_fb_and_collect_crc(data, primary, &rect_2_fb, pipe_crc, + &rect_2_fb_crc); + + /* Both rects and collect crc */ + set_damage_area(primary, &full_rect, sizeof(full_rect)); + set_fb_and_collect_crc(data, primary, &rect_combined_fb, pipe_crc, + &rect_combined_fb_crc); + + /* Put full blank screen back */ + set_damage_area(primary, &full_rect, sizeof(full_rect)); + set_fb_and_collect_crc(data, primary, &main_fb, pipe_crc, &crc); + igt_assert_crc_equal(&crc, &main_fb_crc); + + /* Set combined rect - draw two white rects using damage area*/ + set_damage_area(primary, rect_combined, sizeof(rect_combined)); + set_fb_and_collect_crc(data, primary, &rect_combined_fb, pipe_crc, &crc); + igt_assert_crc_equal(&crc, &rect_combined_fb_crc); + + /* Clear first rect using damage area. Only the second rect should be visible here! */ + set_damage_area(primary, &rect1, sizeof(rect1)); + set_fb_and_collect_crc(data, primary, &main_fb, pipe_crc, &crc); + igt_assert_crc_equal(&crc, &rect_2_fb_crc); + + /* Clear the second rect as well. Now back to original blank screen */ + set_damage_area(primary, &rect2, sizeof(rect2)); + set_fb_and_collect_crc(data, primary, &main_fb, pipe_crc, &crc); + igt_assert_crc_equal(&crc, &main_fb_crc); + + igt_plane_set_fb(primary, NULL); + igt_remove_fb(data->drm_fd, &main_fb); + igt_remove_fb(data->drm_fd, &rect_1_fb); + igt_remove_fb(data->drm_fd, &rect_2_fb); + igt_remove_fb(data->drm_fd, &rect_combined_fb); + igt_display_commit2(display, COMMIT_ATOMIC); +} + +static void prepare_test(data_t *data, igt_output_t *output) +{ + bool is_fbc_supported = false; + + is_fbc_supported = intel_fbc_supported_on_chipset(data->drm_fd, data->pipe); + + igt_require_f(is_fbc_supported, "FBC not supported on this platform\n"); + + if (data->feature & FEATURE_FBC) + intel_fbc_enable(data->drm_fd); +} + +static void fbc_dirty_rectangle_basic_test(data_t *data) +{ + prepare_test(data, NULL); + return fbc_dirty_rectangle_basic(data); +} + +static void fbc_dirty_rectangle_out_visible(data_t *data) +{ + prepare_test(data, NULL); + return fbc_dirty_rectangle_outside_visible_region(data); +} + +static void fbc_dirty_rectangle_dirtyfb_tests(data_t *data) +{ + prepare_test(data, NULL); + return fbc_dirty_rectangle_dirtyfb(data); +} + +igt_main +{ + data_t data = {0}; + int display_ver; + + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_XE); + data.debugfs_fd = igt_debugfs_dir(data.drm_fd); + kmstest_set_vt_graphics_mode(); + igt_require_pipe_crc(data.drm_fd); + igt_display_require(&data.display, data.drm_fd); + igt_display_require_output(&data.display); + display_ver = intel_display_ver(intel_get_drm_devid(data.drm_fd)); + igt_require_f(display_ver >= 30, "FBC with dirty region is not supported\n"); + } + + igt_subtest_with_dynamic("fbc-dirty-rectangle-basic") { + data.feature = FEATURE_FBC; + + for_each_pipe(&data.display, data.pipe) { + for_each_valid_output_on_pipe(&data.display, data.pipe, data.output) { + data.mode = igt_output_get_mode(data.output); + data.format = DRM_FORMAT_XRGB8888; + igt_display_reset(&data.display); + igt_output_set_pipe(data.output, data.pipe); + igt_dynamic_f("pipe-%s-%s", + kmstest_pipe_name(data.pipe), + igt_output_name(data.output)) { + fbc_dirty_rectangle_basic_test(&data); + } + } + } + } + + igt_subtest_with_dynamic("fbc-dirty-rectangle-out-visible-area") { + data.feature = FEATURE_FBC; + + for_each_pipe(&data.display, data.pipe) { + for_each_valid_output_on_pipe(&data.display, data.pipe, data.output) { + data.mode = igt_output_get_mode(data.output); + data.format = DRM_FORMAT_XRGB8888; + igt_display_reset(&data.display); + igt_output_set_pipe(data.output, data.pipe); + igt_dynamic_f("pipe-%s-%s", + kmstest_pipe_name(data.pipe), + igt_output_name(data.output)) { + fbc_dirty_rectangle_out_visible(&data); + } + } + } + } + + igt_subtest_with_dynamic("fbc-dirty-rectangle-dirtyfb-tests") { + data.feature = FEATURE_FBC; + + for_each_pipe(&data.display, data.pipe) { + for_each_valid_output_on_pipe(&data.display, data.pipe, data.output) { + data.mode = igt_output_get_mode(data.output); + data.format = DRM_FORMAT_XRGB8888; + igt_display_reset(&data.display); + igt_output_set_pipe(data.output, data.pipe); + igt_dynamic_f("pipe-%s-%s", + kmstest_pipe_name(data.pipe), + igt_output_name(data.output)) { + fbc_dirty_rectangle_dirtyfb_tests(&data); + } + } + } + } + + igt_subtest_with_dynamic("fbc-dirty-rectangle-different-formats") { + uint32_t formats[] = {DRM_FORMAT_XRGB8888, + DRM_FORMAT_ARGB8888, + DRM_FORMAT_RGB565}; + int num_formats = ARRAY_SIZE(formats); + data.feature = FEATURE_FBC; + + for_each_pipe(&data.display, data.pipe) { + for_each_valid_output_on_pipe(&data.display, data.pipe, data.output) { + data.mode = igt_output_get_mode(data.output); + igt_display_reset(&data.display); + igt_output_set_pipe(data.output, data.pipe); + + for (int i = 0; i < num_formats; i++) { + igt_dynamic_f("pipe-%s-%s-format-%s", + kmstest_pipe_name(data.pipe), + igt_output_name(data.output), + igt_format_str(formats[i])) { + data.format = formats[i]; + fbc_dirty_rectangle_basic_test(&data); + } + } + } + } + } + + igt_fixture { + igt_display_fini(&data.display); + close(data.drm_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 33dffad31..2ac5ce309 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -268,6 +268,7 @@ intel_kms_progs = [ 'kms_psr2_su', 'kms_psr_stress_test', 'kms_pwrite_crc', + 'kms_fbc_dirty_rect', ] intel_xe_progs = [ -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t v8 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc 2025-02-08 6:21 ` [PATCH i-g-t v8 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc Santhosh Reddy Guddati @ 2025-02-12 13:47 ` Govindapillai, Vinod 0 siblings, 0 replies; 7+ messages in thread From: Govindapillai, Vinod @ 2025-02-12 13:47 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Reddy Guddati, Santhosh Cc: Joshi, Kunal1, Naladala, Ramanaidu, Sharma, Swati2, B, Jeevan Hi Santhosh, The patch subject and descriptions are wrong. These do FBC dirty rect related tests. We use dirtyfb ioctl in just one case to verify the functionality is not broken. Otherwise rest of the tests are related to verifying the dirty rect feature with FBC. So please update. Also we need to ensure that PSR is disabled if the sink is PSR capable (psr_disable()) when we execute these tests as part of the prepare_test. Please check how these features enable/disable are done from other tests. On Sat, 2025-02-08 at 11:51 +0530, Santhosh Reddy Guddati wrote: > Introduce new test file kms_fbc_dirty_rect.c to verify > DIRTYFB ioctl functionality with FBC enabled. > > The subtests perform full-screen updates and capture their CRCs as reference values. > Subsequent screen updates utilize the FBC dirty rectangle feature, > using the FP_DAMAGE_CLIPS property, and the resulting CRCs are compared > against the reference values. > > v2: Fix typo , add version check for feature support, > extend support for all pipes (Rama Naidu). > > v3: Add new subtest to scatter dirty rectangles at differnt places in a > frame and commit all rectangles at once (Rama Naidu). > Add a negative case with invalid coordinates (Vinod) > > v4: Add subtest `fbc-dirty-rectangle-basic` to perform sanity checks > by sending multiple damaged areas with non-PSR modes.(Vinod) > Update `meson.build` to include the new test. > > v5: Include checks to ensure FBC is enabled during tests.(Vinod) > Add dynamic subtests for fbc-dirty-rectangle-different-formats > and fbc-dirty-rectangle-dirtyfb-ioctl. (Vinod) > > v6: Update meson.build to include kms_fbc_dirty_rect. > > v7: Add commit description, remove i915 check and remove > redundant checks (Swathi) > Reformat code by removing redundant usage. > Add new test to verify dirty rect outside-visible-region. > > v8: Include test description and documentation for subtests. > Updated framebuffer to target the specific area, > avoiding a full screen update and making the damage area > check effective (Vinod). > Add new subtest fbc-dirty-rectangle-dirtyfb-tests (Vinod) > > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > --- > tests/intel/kms_fbc_dirty_rect.c | 645 +++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 646 insertions(+) > create mode 100644 tests/intel/kms_fbc_dirty_rect.c > > diff --git a/tests/intel/kms_fbc_dirty_rect.c b/tests/intel/kms_fbc_dirty_rect.c > new file mode 100644 > index 000000000..13e330ccd > --- /dev/null > +++ b/tests/intel/kms_fbc_dirty_rect.c > @@ -0,0 +1,645 @@ > +/* SPDX-License-Identifier: MIT */ > +/* > + * Copyright © 2025 Intel Corporation > + */ > + > +/** > + * TEST: kms dirty fbc > + * Category: Display > + * Description: Test DIRTYFB ioctl functionality with FBC enabled. > + * Driver requirement: i915, xe > + * Functionality: dirtyfb, fbc > + * Mega feature: General Display Features > + * Test category: functionality test > + */ > + > +#include <sys/types.h> > + > +#include "igt.h" > + > +#include "igt_sysfs.h" > +#include "i915/gem.h" > +#include "i915/gem_create.h" > +#include "i915/intel_drrs.h" > +#include "igt_psr.h" > + > +#include "i915/intel_fbc.h" > +#include "intel_mocs.h" > +#include "intel_pat.h" > + > +#include "xe/xe_query.h" > + > +/** > + * SUBTEST: fbc-dirty-rectangle-basic > + * Description: Sanity test to verify FBC DR by sending multiple damaged areas with non psr modes > + * Functionality: fbc > + * > + * SUBTEST: fbc-dirty-rectangle-out-visible-area > + * Description: Sanity test to verify FBC DR by sending multiple damaged areas with non psr modes > + * Functionality: fbc > + * > + * SUBTEST: fbc-dirty-rectangle-dirtyfb-tests > + * Description: Sanity test to verify FBC DR by sending multiple damaged areas with non psr modes > + * Functionality: fbc > + * > + * SUBTEST: fbc-dirty-rectangle-different-formats > + * Description: Sanity test to verify FBC DR by sending multiple > + * damaged areas with different formats. > + * Functionality: fbc > + * > + */ May be you need to update the above descriptions as well as per what those tests do > + > +#ifndef PAGE_SIZE > +#define PAGE_SIZE 4096 > +#endif > + > +#define SQUARE_SIZE 100 > +#define SQUARE_OFFSET 100 > +#define SQUARE_OFFSET_2 600 > +#define SQUARE_OFFSET_OUTSIDE_Y 1850 > + > +typedef struct { > + int drm_fd; > + int debugfs_fd; > + igt_display_t display; > + drmModeModeInfo *mode; > + igt_output_t *output; > + igt_pipe_crc_t *pipe_crc; > + enum pipe pipe; > + u32 format; > + > + igt_crc_t ref_crc; > + > + enum { > + FEATURE_NONE = 0, > + FEATURE_PSR = 1, > + FEATURE_FBC = 2, > + FEATURE_DRRS = 4, > + FEATURE_COUNT = 8, > + FEATURE_DEFAULT = 8, > + } feature; > +} data_t; > + > +enum color { > + BLACK, > + RED, > + GREEN, > + BLUE, > + WHITE, > +}; > + > +static void set_damage_clip(struct drm_mode_rect *damage, int x1, int y1, int x2, int y2) > +{ > + damage->x1 = x1; > + damage->y1 = y1; > + damage->x2 = x2; > + damage->y2 = y2; > +} > + > +static void set_damage_clip_w(struct drm_mode_rect *damage, int x1, int y1, int width, int > height) > +{ > + set_damage_clip(damage, x1, y1, x1 + width, y1 + height); > +} > + > +static void dirty_rect_draw_white_rects(data_t *data, struct igt_fb *fb, > + int nrects, struct drm_mode_rect *rect) > +{ > + cairo_t *cr; > + > + if (!nrects || !rect) > + return; > + > + cr = igt_get_cairo_ctx(data->drm_fd, fb); > + > + for (int i = 0; i < nrects; i++) { > + igt_paint_color_alpha(cr, rect[i].x1, rect[i].y1, > + rect[i].x2 - rect[i].x1, > + rect[i].y2 - rect[i].y1, > + 1.0, 1.0, 1.0, 1.0); > + } > + > + igt_put_cairo_ctx(cr); > +} > + > +static void dirty_rect_create_fb(data_t *data, struct igt_fb *fb, int fb_width, > + int fb_height, enum color bg_color) > +{ > + switch (bg_color) { > + case RED: > + igt_create_color_fb(data->drm_fd, fb_width, fb_height, > + data->format, DRM_FORMAT_MOD_LINEAR, > + 1.0, 0.0, 0.0, fb); > + break; > + case GREEN: > + igt_create_color_fb(data->drm_fd, fb_width, fb_height, > + data->format, DRM_FORMAT_MOD_LINEAR, > + 0.0, 1.0, 0.0, fb); > + break; > + case BLUE: > + igt_create_color_fb(data->drm_fd, fb_width, fb_height, > + data->format, DRM_FORMAT_MOD_LINEAR, > + 0.0, 0.0, 1.0, fb); > + break; > + case WHITE: > + igt_create_color_fb(data->drm_fd, fb_width, fb_height, > + data->format, DRM_FORMAT_MOD_LINEAR, > + 1.0, 1.0, 1.0, fb); > + break; > + default: > + case BLACK: > + igt_create_color_fb(data->drm_fd, fb_width, fb_height, > + data->format, DRM_FORMAT_MOD_LINEAR, > + 0.0, 0.0, 0.0, fb); > + break; > + } > +} > + > +static void > +set_damage_area(igt_plane_t *plane, struct drm_mode_rect *rects, > + size_t length) > +{ > + igt_plane_replace_prop_blob(plane, IGT_PLANE_FB_DAMAGE_CLIPS, rects, length); > +} > + > +static void > +set_fb_and_collect_crc(data_t *data, igt_plane_t *plane, struct igt_fb *fb, > + igt_pipe_crc_t *pipe_crc, igt_crc_t *crc) > +{ > + igt_plane_set_fb(plane, fb); > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > + igt_pipe_crc_collect_crc(pipe_crc, crc); > + igt_assert_f(intel_fbc_is_enabled(data->drm_fd, data->pipe, > + IGT_LOG_WARN), > + "FBC is not enabled\n"); > +} > + > +static void > +update_rect_with_dirtyfb(data_t *data, struct igt_fb *fb1, struct igt_fb *fb2, > + struct drm_mode_rect *rect) > +{ > + struct intel_buf *src, *dst; > + struct intel_bb *ibb; > + igt_spin_t *spin; > + int r; > + struct buf_ops *bops; > + igt_render_copyfunc_t rendercopy; > + > + bops = buf_ops_create(data->drm_fd); > + rendercopy = igt_get_render_copyfunc(intel_get_drm_devid(data->drm_fd)); > + > + src = intel_buf_create_full(bops, fb1->gem_handle, fb1->width, > + fb1->height, > + igt_drm_format_to_bpp(fb1->drm_format), > + 0, > + igt_fb_mod_to_tiling(fb1->modifier), > + 0, fb1->size, 0, system_memory(data->drm_fd), > + intel_get_pat_idx_uc(data->drm_fd), > + DEFAULT_MOCS_INDEX); > + dst = intel_buf_create_full(bops, fb2->gem_handle, > + fb2->width, fb2->height, > + igt_drm_format_to_bpp(fb2->drm_format), > + 0, igt_fb_mod_to_tiling(fb2->modifier), > + 0, fb2->size, 0, system_memory(data->drm_fd), > + intel_get_pat_idx_uc(data->drm_fd), > + DEFAULT_MOCS_INDEX); > + ibb = intel_bb_create(data->drm_fd, PAGE_SIZE); > + > + spin = igt_spin_new(data->drm_fd, .ahnd = ibb->allocator_handle); > + igt_spin_set_timeout(spin, NSEC_PER_SEC); > + > + rendercopy(ibb, src, rect->x1, rect->y1, rect->x2 - rect->x1, > + rect->y2 - rect->y1, dst, rect->x1, rect->y1); > + > + /* Perfom dirtyfb right after initiating rendercopy/blitter */ > + r = drmModeDirtyFB(data->drm_fd, fb2->fb_id, NULL, 0); > + igt_assert(r == 0 || r == -ENOSYS); > + > + /* Ensure rendercopy/blitter is complete */ > + intel_bb_sync(ibb); > + > + igt_spin_free(data->drm_fd, spin); > + intel_bb_destroy(ibb); > + intel_buf_destroy(src); > + intel_buf_destroy(dst); > +} > + > +static void fbc_dirty_rectangle_dirtyfb(data_t *data) Som explanation of what this test do could be useful. > +{ > + igt_pipe_crc_t *pipe_crc = data->pipe_crc; > + igt_display_t *display = &data->display; > + igt_output_t *output = data->output; > + igt_plane_t *primary; > + drmModeModeInfo *mode; > + struct igt_fb main_fb, fb2, fb3, fb4; > + struct drm_mode_rect full_rect, rect1, rect2; > + igt_crc_t main_crc, fb2_crc, fb3_crc, fb4_crc, crc; > + > + mode = igt_output_get_mode(output); > + igt_output_set_pipe(output, data->pipe); > + if (!pipe_crc) { > + pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe, > + IGT_PIPE_CRC_SOURCE_AUTO); > + igt_assert(pipe_crc); > + } > + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > + > + set_damage_clip_w(&full_rect, 0, 0, mode->hdisplay, mode->vdisplay); > + set_damage_clip_w(&rect1, SQUARE_OFFSET, SQUARE_OFFSET, SQUARE_SIZE, > + SQUARE_SIZE); > + set_damage_clip_w(&rect2, SQUARE_OFFSET_2, SQUARE_OFFSET_2, > + SQUARE_SIZE, SQUARE_SIZE); > + > + dirty_rect_create_fb(data, &main_fb, data->mode->hdisplay, > + data->mode->vdisplay, BLUE); > + > + dirty_rect_create_fb(data, &fb2, data->mode->hdisplay, > + data->mode->vdisplay, BLUE); > + dirty_rect_draw_white_rects(data, &fb2, 1, &rect1); > + > + dirty_rect_create_fb(data, &fb3, data->mode->hdisplay, > + data->mode->vdisplay, BLUE); > + dirty_rect_draw_white_rects(data, &fb3, 1, &rect2); > + > + dirty_rect_create_fb(data, &fb4, data->mode->hdisplay, > + data->mode->vdisplay, BLUE); > + dirty_rect_draw_white_rects(data, &fb4, 1, &rect2); As we call this dirty_rect_create_fb() many times from all these tests, may be you could consolidate them into the "data" like other tests are done > + > + > + /* 1st screen - Empty blue screen*/ > + set_damage_area(primary, &full_rect, sizeof(full_rect)); > + set_fb_and_collect_crc(data, primary, &main_fb, pipe_crc, &main_crc); > + > + /* 2nd screen - 1st white rect at 100, 100 - using damage area */ > + set_damage_area(primary, &rect1, sizeof(rect1)); > + set_fb_and_collect_crc(data, primary, &fb2, pipe_crc, &fb2_crc); > + > + /* 3rd screen - 2nd white rect at 600, 600 - using damage area. > + * Now two white rects on screen > + */ > + set_damage_area(primary, &rect2, sizeof(rect2)); > + set_fb_and_collect_crc(data, primary, &fb3, pipe_crc, &fb3_crc); > + > + /* 4th screen - clear the 2nd white rect at 600,600 with dirtyfb. > + * Copy rect2 area from main_fb to fb3. Then fb3 becomes whole blue > + */ > + update_rect_with_dirtyfb(data, &main_fb, &fb3, &rect2); > + /* Now the screen must match 3rd screen - with both rects */ > + igt_pipe_crc_collect_crc(pipe_crc, &crc); > + igt_assert_crc_equal(&crc, &main_crc); > + > + /* 5th screen - Copy the first rect at 100,100 with dirtyfb. > + * Copy rect1 area from fb2 to fb3. Then fb3 becomes one rect at 100,100 > + */ > + update_rect_with_dirtyfb(data, &fb2, &fb3, &rect1); > + /* Now the screen must match 2nd screen - with one rect 1t 100,100 */ > + igt_pipe_crc_collect_crc(pipe_crc, &crc); > + igt_assert_crc_equal(&crc, &fb2_crc); > + > + /* 6th screen - 2nd white rect at 600, 600 - using damage area. > + * Now two white rects on screen > + */ > + set_damage_area(primary, &rect2, sizeof(rect2)); > + set_fb_and_collect_crc(data, primary, &fb4, pipe_crc, &fb4_crc); > + /* Now the screen must match 3rd screen - with both rects */ > + igt_pipe_crc_collect_crc(pipe_crc, &crc); > + igt_assert_crc_equal(&crc, &fb3_crc); > + > + igt_plane_set_fb(primary, NULL); > + igt_remove_fb(data->drm_fd, &main_fb); > + igt_remove_fb(data->drm_fd, &fb2); > + igt_remove_fb(data->drm_fd, &fb3); > + igt_remove_fb(data->drm_fd, &fb4); > + igt_display_commit2(display, COMMIT_ATOMIC); > +} > + > +/** > + * fbc_dirty_rectangle_outside_visible_region - Test dirty rectangle outside visible region > + * @data: Pointer to the test data structure > + * > + * This test verifies the behavior of the Frame Buffer Compression (FBC) when > + * dirty rectangles are set outside the visible region of the display. It creates > + * a main framebuffer and three additional framebuffers with dirty rectangles > + * positioned horizontally, vertically, and both horizontally and vertically > + * outside the visible region. The test then sets the damage area to these > + * rectangles and collects CRCs to ensure that the content outside the visible > + * region does not affect the main framebuffer's CRC. > + */ > +static void fbc_dirty_rectangle_outside_visible_region(data_t *data) > +{ > + igt_pipe_crc_t *pipe_crc = data->pipe_crc; > + igt_display_t *display = &data->display; > + igt_output_t *output = data->output; > + igt_plane_t *primary; > + drmModeModeInfo *mode; > + struct igt_fb main_fb, rect_fb[3]; > + struct drm_mode_rect rect[3], full_rect; > + igt_crc_t main_crc, rect_crc[3]; > + > + mode = igt_output_get_mode(output); > + igt_output_set_pipe(output, data->pipe); > + if (!pipe_crc) { > + pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe, > + IGT_PIPE_CRC_SOURCE_AUTO); > + igt_assert(pipe_crc); > + } > + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > + > + set_damage_clip(&full_rect, 0, 0, mode->hdisplay + 200, > + mode->vdisplay + 200); > + /* Rect Horizontally outside visible region */ > + set_damage_clip_w(&rect[0], data->mode->hdisplay + 10, 100, > + SQUARE_SIZE, SQUARE_SIZE); > + /* Rect vertically outside visible region */ > + set_damage_clip_w(&rect[1], 10, data->mode->vdisplay + 50, > + SQUARE_SIZE, SQUARE_SIZE); > + /* Rect Horizontally and vertically outside visible region */ > + set_damage_clip_w(&rect[2], data->mode->hdisplay + 10, > + data->mode->vdisplay + 50, SQUARE_SIZE, SQUARE_SIZE); > + > + dirty_rect_create_fb(data, &main_fb, data->mode->hdisplay + 200, > + data->mode->vdisplay + 200, GREEN); > + > + for (int i = 0; i < 3; i++) { > + dirty_rect_create_fb(data, &rect_fb[i], data->mode->hdisplay + 200, > + data->mode->vdisplay + 200, GREEN); > + dirty_rect_draw_white_rects(data, &rect_fb[i], 1, &rect[i]); > + } > + > + /* Main rect */ > + set_damage_area(primary, &full_rect, sizeof(full_rect)); > + set_fb_and_collect_crc(data, primary, &main_fb, pipe_crc, &main_crc); > + > + for (int i = 0; i < 3; i++) { > + set_damage_area(primary, &rect[i], sizeof(rect[i])); > + set_fb_and_collect_crc(data, primary, &rect_fb[i], pipe_crc, &rect_crc[i]); > + igt_assert_crc_equal(&rect_crc[i], &main_crc); > + } > + > + igt_plane_set_fb(primary, NULL); > + igt_remove_fb(data->drm_fd, &main_fb); > + for (int i = 0; i < 3; i++) > + igt_remove_fb(data->drm_fd, &rect_fb[i]); > + igt_display_commit2(display, COMMIT_ATOMIC); > +} > + > +/* > + * fbc_dirty_rectangle_basic > + * @data: data_t > + * > + * This test draws screens as full-screen updates and collects their CRCs > + * as reference values. Screens are then updated using the FBC > + * dirty rect feature and compared with the reference CRCs. > + * Matching CRCs indicate success. > + * > + * Steps to Collect Reference CRCs: > + * 1. Full Blue Screen > + * - Frame Buffer: main_fb > + * - CRC: main_fb_crc > + * 2. White Square on Upper Left > + * - Frame Buffer: rect1_fb > + * - CRC: rect1_fb_crc > + * 3. Second White Square Below First > + * - Frame Buffer: rect2_fb > + * - CRC: rect2_fb_crc > + * 4. Both Rectangles > + * - Frame Buffer: rect_combined_fb > + * - CRC: rect_combined_fb_crc > + * > + * Steps to Update Screen with FBC Dirty Rect: > + * 1. Full Blue Screen > + * - Set rect_combined_fb with Damage Area Update > + * - CRC should match rect_combined_fb_crc > + * 2. Clear First Rectangle Area > + * - Use main_fb and damage area as rect1 coordinates > + * - CRC should match rect2_fb_crc > + * 3. Clear Second Rectangle Area > + * - Use main_fb and damage area as rect2 coordinates > + * - CRC should match main_fb_crc > + */ > +static void fbc_dirty_rectangle_basic(data_t *data) > +{ > + igt_pipe_crc_t *pipe_crc = data->pipe_crc; > + igt_display_t *display = &data->display; > + igt_output_t *output = data->output; > + igt_plane_t *primary; > + drmModeModeInfo *mode; > + struct igt_fb main_fb; > + struct igt_fb rect_1_fb; > + struct igt_fb rect_2_fb; > + struct igt_fb rect_combined_fb; > + struct drm_mode_rect rect1; > + struct drm_mode_rect rect2; > + struct drm_mode_rect rect_combined[2]; > + struct drm_mode_rect full_rect; > + igt_crc_t main_fb_crc, rect_1_fb_crc, rect_2_fb_crc, rect_combined_fb_crc, crc; > + > + mode = igt_output_get_mode(output); > + igt_output_set_pipe(output, data->pipe); > + if (!pipe_crc) { > + pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe, > + IGT_PIPE_CRC_SOURCE_AUTO); > + igt_assert(pipe_crc); > + } > + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > + > + set_damage_clip(&full_rect, 0, 0, mode->hdisplay-1, mode->vdisplay-1); > + set_damage_clip(&rect1, SQUARE_OFFSET, SQUARE_OFFSET, > + SQUARE_OFFSET + SQUARE_SIZE, SQUARE_OFFSET + SQUARE_SIZE); > + set_damage_clip(&rect2, SQUARE_OFFSET_2, SQUARE_OFFSET_2, > + SQUARE_OFFSET_2 + SQUARE_SIZE, SQUARE_OFFSET_2 + SQUARE_SIZE); > + set_damage_clip(&rect_combined[0], rect1.x1, rect1.y1, rect1.x2, rect1.y2); > + set_damage_clip(&rect_combined[1], rect2.x1, rect2.y1, rect2.x2, rect2.y2); > + > + dirty_rect_create_fb(data, &main_fb, data->mode->hdisplay, > + data->mode->vdisplay, BLUE); > + > + dirty_rect_create_fb(data, &rect_1_fb, data->mode->hdisplay, > + data->mode->vdisplay, BLUE); > + dirty_rect_draw_white_rects(data, &rect_1_fb, 1, &rect1); > + > + dirty_rect_create_fb(data, &rect_2_fb, data->mode->hdisplay, > + data->mode->vdisplay, BLUE); > + dirty_rect_draw_white_rects(data, &rect_2_fb, 1, &rect2); > + > + dirty_rect_create_fb(data, &rect_combined_fb, data->mode->hdisplay, > + data->mode->vdisplay, BLUE); > + dirty_rect_draw_white_rects(data, &rect_combined_fb, > + ARRAY_SIZE(rect_combined), rect_combined); > + > + /* main_fb blank blue screen - get and store crc*/ > + set_fb_and_collect_crc(data, primary, &main_fb, pipe_crc, &main_fb_crc); > + > + /* Whole blue screen with one white rect and collect crc */ > + set_damage_area(primary, &full_rect, sizeof(full_rect)); > + set_fb_and_collect_crc(data, primary, &rect_1_fb, pipe_crc, > + &rect_1_fb_crc); > + > + /* Second white rect and collect crc */ > + set_damage_area(primary, &full_rect, sizeof(full_rect)); > + set_fb_and_collect_crc(data, primary, &rect_2_fb, pipe_crc, > + &rect_2_fb_crc); > + > + /* Both rects and collect crc */ > + set_damage_area(primary, &full_rect, sizeof(full_rect)); > + set_fb_and_collect_crc(data, primary, &rect_combined_fb, pipe_crc, > + &rect_combined_fb_crc); > + > + /* Put full blank screen back */ > + set_damage_area(primary, &full_rect, sizeof(full_rect)); > + set_fb_and_collect_crc(data, primary, &main_fb, pipe_crc, &crc); > + igt_assert_crc_equal(&crc, &main_fb_crc); > + > + /* Set combined rect - draw two white rects using damage area*/ > + set_damage_area(primary, rect_combined, sizeof(rect_combined)); > + set_fb_and_collect_crc(data, primary, &rect_combined_fb, pipe_crc, &crc); > + igt_assert_crc_equal(&crc, &rect_combined_fb_crc); > + > + /* Clear first rect using damage area. Only the second rect should be visible here! */ > + set_damage_area(primary, &rect1, sizeof(rect1)); > + set_fb_and_collect_crc(data, primary, &main_fb, pipe_crc, &crc); > + igt_assert_crc_equal(&crc, &rect_2_fb_crc); > + > + /* Clear the second rect as well. Now back to original blank screen */ > + set_damage_area(primary, &rect2, sizeof(rect2)); > + set_fb_and_collect_crc(data, primary, &main_fb, pipe_crc, &crc); > + igt_assert_crc_equal(&crc, &main_fb_crc); > + > + igt_plane_set_fb(primary, NULL); > + igt_remove_fb(data->drm_fd, &main_fb); > + igt_remove_fb(data->drm_fd, &rect_1_fb); > + igt_remove_fb(data->drm_fd, &rect_2_fb); > + igt_remove_fb(data->drm_fd, &rect_combined_fb); > + igt_display_commit2(display, COMMIT_ATOMIC); > +} > + > +static void prepare_test(data_t *data, igt_output_t *output) > +{ > + bool is_fbc_supported = false; > + > + is_fbc_supported = intel_fbc_supported_on_chipset(data->drm_fd, data->pipe); > + > + igt_require_f(is_fbc_supported, "FBC not supported on this platform\n"); > + > + if (data->feature & FEATURE_FBC) > + intel_fbc_enable(data->drm_fd); > +} > + > +static void fbc_dirty_rectangle_basic_test(data_t *data) > +{ > + prepare_test(data, NULL); > + return fbc_dirty_rectangle_basic(data); > +} > + > +static void fbc_dirty_rectangle_out_visible(data_t *data) > +{ > + prepare_test(data, NULL); > + return fbc_dirty_rectangle_outside_visible_region(data); > +} > + > +static void fbc_dirty_rectangle_dirtyfb_tests(data_t *data) > +{ > + prepare_test(data, NULL); > + return fbc_dirty_rectangle_dirtyfb(data); > +} > + > +igt_main > +{ > + data_t data = {0}; > + int display_ver; > + > + igt_fixture { > + data.drm_fd = drm_open_driver_master(DRIVER_XE); > + data.debugfs_fd = igt_debugfs_dir(data.drm_fd); > + kmstest_set_vt_graphics_mode(); > + igt_require_pipe_crc(data.drm_fd); > + igt_display_require(&data.display, data.drm_fd); > + igt_display_require_output(&data.display); > + display_ver = intel_display_ver(intel_get_drm_devid(data.drm_fd)); > + igt_require_f(display_ver >= 30, "FBC with dirty region is not supported\n"); > + } > + > + igt_subtest_with_dynamic("fbc-dirty-rectangle-basic") { > + data.feature = FEATURE_FBC; > + > + for_each_pipe(&data.display, data.pipe) { > + for_each_valid_output_on_pipe(&data.display, data.pipe, data.output) { > + data.mode = igt_output_get_mode(data.output); > + data.format = DRM_FORMAT_XRGB8888; > + igt_display_reset(&data.display); > + igt_output_set_pipe(data.output, data.pipe); > + igt_dynamic_f("pipe-%s-%s", > + kmstest_pipe_name(data.pipe), > + igt_output_name(data.output)) { > + fbc_dirty_rectangle_basic_test(&data); > + } > + } > + } > + } > + > + igt_subtest_with_dynamic("fbc-dirty-rectangle-out-visible-area") { > + data.feature = FEATURE_FBC; > + > + for_each_pipe(&data.display, data.pipe) { > + for_each_valid_output_on_pipe(&data.display, data.pipe, data.output) { > + data.mode = igt_output_get_mode(data.output); > + data.format = DRM_FORMAT_XRGB8888; > + igt_display_reset(&data.display); > + igt_output_set_pipe(data.output, data.pipe); > + igt_dynamic_f("pipe-%s-%s", > + kmstest_pipe_name(data.pipe), > + igt_output_name(data.output)) { > + fbc_dirty_rectangle_out_visible(&data); > + } > + } > + } > + } > + > + igt_subtest_with_dynamic("fbc-dirty-rectangle-dirtyfb-tests") { > + data.feature = FEATURE_FBC; > + > + for_each_pipe(&data.display, data.pipe) { > + for_each_valid_output_on_pipe(&data.display, data.pipe, data.output) { > + data.mode = igt_output_get_mode(data.output); > + data.format = DRM_FORMAT_XRGB8888; > + igt_display_reset(&data.display); > + igt_output_set_pipe(data.output, data.pipe); > + igt_dynamic_f("pipe-%s-%s", > + kmstest_pipe_name(data.pipe), > + igt_output_name(data.output)) { > + fbc_dirty_rectangle_dirtyfb_tests(&data); > + } > + } > + } > + } > + > + igt_subtest_with_dynamic("fbc-dirty-rectangle-different-formats") { > + uint32_t formats[] = {DRM_FORMAT_XRGB8888, > + DRM_FORMAT_ARGB8888, > + DRM_FORMAT_RGB565}; > + int num_formats = ARRAY_SIZE(formats); > + data.feature = FEATURE_FBC; > + > + for_each_pipe(&data.display, data.pipe) { > + for_each_valid_output_on_pipe(&data.display, data.pipe, data.output) { > + data.mode = igt_output_get_mode(data.output); > + igt_display_reset(&data.display); > + igt_output_set_pipe(data.output, data.pipe); > + > + for (int i = 0; i < num_formats; i++) { > + igt_dynamic_f("pipe-%s-%s-format-%s", > + kmstest_pipe_name(data.pipe), > + igt_output_name(data.output), > + igt_format_str(formats[i])) { > + data.format = formats[i]; > + fbc_dirty_rectangle_basic_test(&data); > + } > + } > + } > + } > + } > + > + igt_fixture { > + igt_display_fini(&data.display); > + close(data.drm_fd); > + } > +} > diff --git a/tests/meson.build b/tests/meson.build > index 33dffad31..2ac5ce309 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -268,6 +268,7 @@ intel_kms_progs = [ > 'kms_psr2_su', > 'kms_psr_stress_test', > 'kms_pwrite_crc', > + 'kms_fbc_dirty_rect', > ] > > intel_xe_progs = [ ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev8) 2025-02-08 6:21 [PATCH i-g-t v8 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test Santhosh Reddy Guddati 2025-02-08 6:21 ` [PATCH i-g-t v8 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc Santhosh Reddy Guddati @ 2025-02-08 10:32 ` Patchwork 2025-02-08 10:43 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-02-08 10:32 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1002 bytes --] == Series Details == Series: RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev8) URL : https://patchwork.freedesktop.org/series/138218/ State : success == Summary == CI Bug Log - changes from XEIGT_8227_BAT -> XEIGTPW_12565_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 7) ------------------------------ Missing (1): bat-bmg-2 Changes ------- No changes found Build changes ------------- * IGT: IGT_8227 -> IGTPW_12565 * Linux: xe-2620-e886a5edb53ade13f69b5809cbe03d7aa73885a7 -> xe-2621-4f934139887fd60bd4ac9027b7eec3e86ade8085 IGTPW_12565: 12565 IGT_8227: 8227 xe-2620-e886a5edb53ade13f69b5809cbe03d7aa73885a7: e886a5edb53ade13f69b5809cbe03d7aa73885a7 xe-2621-4f934139887fd60bd4ac9027b7eec3e86ade8085: 4f934139887fd60bd4ac9027b7eec3e86ade8085 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/index.html [-- Attachment #2: Type: text/html, Size: 1561 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev8) 2025-02-08 6:21 [PATCH i-g-t v8 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test Santhosh Reddy Guddati 2025-02-08 6:21 ` [PATCH i-g-t v8 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc Santhosh Reddy Guddati 2025-02-08 10:32 ` ✓ Xe.CI.BAT: success for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev8) Patchwork @ 2025-02-08 10:43 ` Patchwork 2025-02-08 20:42 ` ✗ i915.CI.Full: failure " Patchwork 2025-02-08 22:18 ` ✗ Xe.CI.Full: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-02-08 10:43 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5855 bytes --] == Series Details == Series: RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev8) URL : https://patchwork.freedesktop.org/series/138218/ State : success == Summary == CI Bug Log - changes from IGT_8227 -> IGTPW_12565 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/index.html Participating hosts (41 -> 40) ------------------------------ Additional (2): fi-rkl-11600 fi-bsw-n3050 Missing (3): fi-blb-e6850 fi-glk-j4005 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12565 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - fi-rkl-11600: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/fi-rkl-11600/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - fi-rkl-11600: NOTRUN -> [SKIP][2] ([i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-rkl-11600: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/fi-rkl-11600/igt@gem_lmem_swapping@basic.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][4] ([i915#3282]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/fi-rkl-11600/igt@gem_tiled_pread_basic.html * igt@i915_module_load@load: - bat-mtlp-9: [PASS][5] -> [DMESG-WARN][6] ([i915#13494]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/bat-mtlp-9/igt@i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/bat-mtlp-9/igt@i915_module_load@load.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-rkl-11600: NOTRUN -> [SKIP][7] ([i915#4103]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - fi-rkl-11600: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#3840]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/fi-rkl-11600/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - fi-rkl-11600: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - fi-rkl-11600: NOTRUN -> [SKIP][10] ([i915#5354]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/fi-rkl-11600/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-mmap-gtt: - fi-bsw-n3050: NOTRUN -> [SKIP][11] +20 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/fi-bsw-n3050/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_psr@psr-primary-page-flip: - fi-rkl-11600: NOTRUN -> [SKIP][12] ([i915#1072] / [i915#9732]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/fi-rkl-11600/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - fi-rkl-11600: NOTRUN -> [SKIP][13] ([i915#3555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][14] ([i915#3291] / [i915#3708]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/fi-rkl-11600/igt@prime_vgem@basic-read.html #### Possible fixes #### * igt@i915_selftest@live: - bat-rplp-1: [DMESG-WARN][15] -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/bat-rplp-1/igt@i915_selftest@live.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/bat-rplp-1/igt@i915_selftest@live.html * igt@i915_selftest@live@late_gt_pm: - fi-cfl-8109u: [DMESG-WARN][17] ([i915#11621]) -> [PASS][18] +132 other tests pass [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8227 -> IGTPW_12565 CI-20190529: 20190529 CI_DRM_16090: 4f934139887fd60bd4ac9027b7eec3e86ade8085 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12565: 12565 IGT_8227: 8227 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/index.html [-- Attachment #2: Type: text/html, Size: 6913 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev8) 2025-02-08 6:21 [PATCH i-g-t v8 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test Santhosh Reddy Guddati ` (2 preceding siblings ...) 2025-02-08 10:43 ` ✓ i915.CI.BAT: " Patchwork @ 2025-02-08 20:42 ` Patchwork 2025-02-08 22:18 ` ✗ Xe.CI.Full: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-02-08 20:42 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100296 bytes --] == Series Details == Series: RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev8) URL : https://patchwork.freedesktop.org/series/138218/ State : failure == Summary == CI Bug Log - changes from IGT_8227_full -> IGTPW_12565_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12565_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12565_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_12565/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): shard-snb-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12565_full: ### IGT changes ### #### Possible regressions #### * igt@gem_tiled_swapping@non-threaded: - shard-snb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-snb1/igt@gem_tiled_swapping@non-threaded.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-snb1/igt@gem_tiled_swapping@non-threaded.html * igt@kms_atomic@plane-overlay-legacy: - shard-rkl: NOTRUN -> [SKIP][3] +25 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_atomic@plane-overlay-legacy.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: [PASS][4] -> [SKIP][5] +36 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic (NEW): - shard-mtlp: NOTRUN -> [SKIP][6] +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic.html - shard-dg2: NOTRUN -> [SKIP][7] +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-10/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic.html * {igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests} (NEW): - shard-dg1: NOTRUN -> [SKIP][8] +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html - shard-dg2-9: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_sequence@get-forked-busy: - shard-snb: [PASS][10] -> [INCOMPLETE][11] +1 other test incomplete [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-snb6/igt@kms_sequence@get-forked-busy.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-snb6/igt@kms_sequence@get-forked-busy.html #### Warnings #### * igt@gem_exec_big@single: - shard-tglu: [ABORT][12] ([i915#11713]) -> [ABORT][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-tglu-3/igt@gem_exec_big@single.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-5/igt@gem_exec_big@single.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: [SKIP][14] ([i915#1769] / [i915#3555]) -> [SKIP][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-rkl: [SKIP][16] ([i915#5286]) -> [SKIP][17] +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][18] ([i915#3638]) -> [SKIP][19] +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][20] ([i915#6095]) -> [SKIP][21] +8 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_content_protection@content-type-change: - shard-rkl: [SKIP][22] ([i915#9424]) -> [SKIP][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-5/igt@kms_content_protection@content-type-change.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@legacy: - shard-rkl: [SKIP][24] ([i915#7118] / [i915#9424]) -> [SKIP][25] +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-3/igt@kms_content_protection@legacy.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][26] ([i915#13566]) -> [SKIP][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: [SKIP][28] ([i915#3555]) -> [SKIP][29] +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: [SKIP][30] ([i915#8588]) -> [SKIP][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: [SKIP][32] ([i915#3555] / [i915#3840]) -> [SKIP][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: [SKIP][34] ([i915#3840] / [i915#9053]) -> [SKIP][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_hdr@invalid-hdr: - shard-rkl: [SKIP][36] ([i915#3555] / [i915#8228]) -> [SKIP][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-7/igt@kms_hdr@invalid-hdr.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_hdr@invalid-hdr.html * igt@kms_vblank@query-idle-hang: - shard-rkl: [DMESG-WARN][38] ([i915#12964]) -> [SKIP][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_vblank@query-idle-hang.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_vblank@query-idle-hang.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: [SKIP][40] ([i915#9906]) -> [SKIP][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-1/igt@kms_vrr@seamless-rr-switch-drrs.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-drrs.html New tests --------- New tests have been introduced between IGT_8227_full and IGTPW_12565_full: ### New IGT tests (6) ### * igt@kms_cursor_crc@cursor-random-256x256@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [4.51] s * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic: - Statuses : 7 skip(s) - Exec time: [0.0] s * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_plane_alpha_blend@alpha-7efc@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.52] s Known issues ------------ Here are the changes found in IGTPW_12565_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#8411]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#8411]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][44] ([i915#8411]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-8/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#11078]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@device_reset@cold-reset-bound.html - shard-dg1: NOTRUN -> [SKIP][46] ([i915#11078]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-17/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#11078]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-8/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][48] ([i915#11078]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2-9: NOTRUN -> [SKIP][49] ([i915#8414]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#8414]) +12 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@drm_fdinfo@most-busy-check-all.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#8414]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-1/igt@drm_fdinfo@virtual-busy-hang.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#8414]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-7/igt@drm_fdinfo@virtual-busy-hang.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3281]) +6 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-1/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3936]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#3555] / [i915#9323]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][56] -> [INCOMPLETE][57] ([i915#13356]) +1 other test incomplete [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg2-8/igt@gem_ccs@suspend-resume.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-6/igt@gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][58] ([i915#9323]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-2/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#9323]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-17/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#7697]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-3/igt@gem_close_race@multigpu-basic-process.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#7697]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@gem_close_race@multigpu-basic-process.html - shard-dg2: NOTRUN -> [SKIP][62] ([i915#7697]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-7/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#7697]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-3/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#6335]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][65] ([i915#12353]) +1 other test incomplete [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-glk9/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@hang: - shard-snb: NOTRUN -> [SKIP][66] ([i915#1099]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-snb4/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#8555]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#280]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#280]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#280]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-9/igt@gem_ctx_sseu@mmap-args.html - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#280]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-6/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@reset-stress: - shard-mtlp: [PASS][72] -> [ABORT][73] ([i915#13193]) +1 other test abort [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-mtlp-8/igt@gem_eio@reset-stress.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-7/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2-9: NOTRUN -> [SKIP][74] ([i915#4771]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4771]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4036]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#4525]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#4525]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-submit-fence.html - shard-tglu: NOTRUN -> [SKIP][79] ([i915#4525]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-2/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@capture-invisible: - shard-dg2-9: NOTRUN -> [SKIP][80] ([i915#6334]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#6344]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-5/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4812]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4812]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-11/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2-9: NOTRUN -> [SKIP][84] ([i915#3539] / [i915#4852]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-rkl: [PASS][85] -> [DMESG-WARN][86] ([i915#12964]) +18 other tests dmesg-warn [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-1/igt@gem_exec_flush@basic-batch-kernel-default-wb.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-2/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3539] / [i915#4852]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-7/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3539]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3539] / [i915#4852]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3281]) +8 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#3281]) +6 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3281]) +9 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-7/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-wc-read: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3281]) +10 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-17/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#7276]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_schedule@thriceslice: - shard-snb: NOTRUN -> [SKIP][95] +128 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-snb7/igt@gem_exec_schedule@thriceslice.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: NOTRUN -> [INCOMPLETE][96] ([i915#11441] / [i915#13304]) +1 other test incomplete [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-4/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_suspend@basic-s4-devices: - shard-rkl: NOTRUN -> [ABORT][97] ([i915#7975]) +1 other test abort [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4860]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#4860]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4860]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-8/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#2190]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#4613] / [i915#7582]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-5/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-glk: NOTRUN -> [SKIP][103] ([i915#4613]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#12193]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4565]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random: - shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#4613]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#4613]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-random: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#4613]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-2/igt@gem_lmem_swapping@verify-random.html - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#4613]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-8/igt@gem_lmem_swapping@verify-random.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3282]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-4/igt@gem_madvise@dontneed-before-exec.html * igt@gem_mmap_gtt@basic-small-bo-tiledy: - shard-dg2-9: NOTRUN -> [SKIP][111] ([i915#4077]) +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@gem_mmap_gtt@basic-small-bo-tiledy.html * igt@gem_mmap_gtt@isolation: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4077]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-1/igt@gem_mmap_gtt@isolation.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4083]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-7/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4083]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-4/igt@gem_mmap_wc@read-write.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg2-9: NOTRUN -> [SKIP][115] ([i915#4083]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4083]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2-9: NOTRUN -> [SKIP][117] ([i915#3282]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#3282]) +6 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][119] ([i915#2658]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-snb5/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3282]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@gem_pwrite@basic-exhaustion.html - shard-tglu-1: NOTRUN -> [WARN][121] ([i915#2658]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][122] ([i915#2658]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-glk3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: [PASS][123] -> [SKIP][124] ([i915#4270]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-4/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4270]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-3/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][126] ([i915#12917] / [i915#12964]) +3 other tests timeout [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4270]) +4 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#3282]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-6/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-dg2-9: NOTRUN -> [SKIP][129] ([i915#5190] / [i915#8428]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#5190] / [i915#8428]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-4/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#8428]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-2/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4079]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-17/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-dg2-9: NOTRUN -> [SKIP][133] ([i915#4885]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@gem_softpin@evict-snoop.html - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4885]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#4077]) +16 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_tiling_max_stride: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#4077]) +4 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-1/igt@gem_tiling_max_stride.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#3297]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#3297] / [i915#4880]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3297]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3297] / [i915#4958]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-8/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#3297]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-2/igt@gem_userptr_blits@unsync-unmap.html - shard-tglu: NOTRUN -> [SKIP][142] ([i915#3297]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg2-9: NOTRUN -> [SKIP][143] ([i915#3297]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][144] ([i915#13356]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-glk1/igt@gem_workarounds@suspend-resume.html * igt@gen7_exec_parse@chained-batch: - shard-rkl: NOTRUN -> [SKIP][145] +29 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#2856]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-1/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#2527]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-2/igt@gen9_exec_parse@bb-chained.html - shard-tglu: NOTRUN -> [SKIP][148] ([i915#2527] / [i915#2856]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-2/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#2527]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-out: - shard-dg2-9: NOTRUN -> [SKIP][150] ([i915#2856]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#2856]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-5/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#2527] / [i915#2856]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#4881]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-8/igt@i915_fb_tiling.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [PASS][154] -> [ABORT][155] ([i915#9820]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][156] -> [FAIL][157] ([i915#3591]) +1 other test fail [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [PASS][158] -> [FAIL][159] ([i915#12739] / [i915#3591]) +1 other test fail [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][160] ([i915#12797]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-glk2/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@thresholds-park: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#11681]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@i915_pm_rps@thresholds-park.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#6245]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2-9: NOTRUN -> [SKIP][163] ([i915#6188]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live: - shard-rkl: [PASS][164] -> [DMESG-FAIL][165] ([i915#13550]) +1 other test dmesg-fail [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-1/igt@i915_selftest@live.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-4/igt@i915_selftest@live.html * igt@i915_selftest@mock@memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][166] ([i915#9311]) +1 other test dmesg-warn [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][167] ([i915#7443]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-10/igt@i915_suspend@basic-s3-without-i915.html - shard-glk: NOTRUN -> [INCOMPLETE][168] ([i915#4817]) +1 other test incomplete [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-glk7/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@sysfs-reader: - shard-glk: [PASS][169] -> [INCOMPLETE][170] ([i915#4817]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-glk3/igt@i915_suspend@sysfs-reader.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-glk9/igt@i915_suspend@sysfs-reader.html * igt@intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#7707]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#7707]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-5/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#5190]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-10/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#5190]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#4215]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#4212]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#4212]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-7/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-dg2: NOTRUN -> [SKIP][178] ([i915#4212]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-1/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][179] ([i915#12761] / [i915#1982]) +1 other test incomplete [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#8709]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-6/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#8709]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#8709]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-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][183] ([i915#8709]) +15 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/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-dg1: NOTRUN -> [SKIP][184] ([i915#1769] / [i915#3555]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#1769] / [i915#3555]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4: - shard-dg1: [PASS][186] -> [FAIL][187] ([i915#5956]) +1 other test fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-4.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#5286]) +5 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#5286]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#4538] / [i915#5286]) +6 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html - shard-tglu: NOTRUN -> [SKIP][191] ([i915#5286]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#5286]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][193] +16 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3638]) +5 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-17/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3638]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][196] ([i915#4538] / [i915#5190]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#4538] / [i915#5190]) +7 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#6187]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-3/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][199] +63 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-9: NOTRUN -> [SKIP][200] ([i915#5190]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#4538]) +7 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-9: NOTRUN -> [SKIP][202] ([i915#12313]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#12313]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#12313]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][205] ([i915#12313]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#10307] / [i915#6095]) +157 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][207] ([i915#10307] / [i915#6095]) +19 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#12313]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#6095]) +200 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg2: [PASS][210] -> [INCOMPLETE][211] ([i915#12796]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - shard-dg2: NOTRUN -> [INCOMPLETE][212] ([i915#12796]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#6095]) +70 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#6095]) +39 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#12805]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][216] ([i915#12805]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][217] ([i915#6095]) +4 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#6095]) +15 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#12313]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][220] ([i915#12313]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#6095]) +39 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#6095]) +54 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#10307] / [i915#10434] / [i915#6095]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-8/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3742]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-9: NOTRUN -> [SKIP][225] ([i915#11151] / [i915#7828]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#11151] / [i915#7828]) +5 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#11151] / [i915#7828]) +12 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#11151] / [i915#7828]) +5 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-7/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#11151] / [i915#7828]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#11151] / [i915#7828]) +9 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-1/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#11151] / [i915#7828]) +4 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-dg2: [PASS][232] -> [SKIP][233] ([i915#3555]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg2-10/igt@kms_color@deep-color.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-2/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#7116] / [i915#9424]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#3116]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html - shard-dg1: NOTRUN -> [SKIP][236] ([i915#3299]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#6944] / [i915#9424]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][239] ([i915#7173]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-11/igt@kms_content_protection@lic-type-0@pipe-a-dp-3.html * igt@kms_content_protection@lic-type-1: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#9424]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-10/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#9424]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#6944] / [i915#7116] / [i915#7118]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][243] ([i915#7116]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-17/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#7118] / [i915#9424]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-2/igt@kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][245] ([i915#7118] / [i915#9424]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-3/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#13049]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][247] ([i915#13049] / [i915#4423]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#13049]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#13049]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu-1: NOTRUN -> [FAIL][250] ([i915#13566]) +1 other test fail [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][251] ([i915#13566]) +5 other tests fail [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#13049]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu: NOTRUN -> [SKIP][253] ([i915#13049]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [PASS][254] -> [FAIL][255] ([i915#13566]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-tglu: [PASS][256] -> [FAIL][257] ([i915#13566]) +7 other tests fail [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-tglu-2/igt@kms_cursor_crc@cursor-random-128x42.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2-9: NOTRUN -> [SKIP][258] ([i915#13049]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#8814]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#3555]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: NOTRUN -> [FAIL][261] ([i915#13566]) +1 other test fail [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2-9: NOTRUN -> [SKIP][262] ([i915#3555]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#9809]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#13046] / [i915#5354]) +3 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#4103] / [i915#4213]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#4103] / [i915#4213]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2-9: NOTRUN -> [SKIP][267] ([i915#13046] / [i915#5354]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#9067]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#4213]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/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][270] ([i915#4103]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#9723]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#9723]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#8588]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#12402]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-17/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#3840]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-6/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2-9: NOTRUN -> [SKIP][276] ([i915#3840]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#3840]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-4/igt@kms_dsc@dsc-with-bpc.html - shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#3840]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#3840]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-7/igt@kms_dsc@dsc-with-bpc-formats.html - shard-dg2: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#3840]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#3840]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats (NEW): - shard-tglu: NOTRUN -> [SKIP][282] ([i915#2575]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#3469]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#1839]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#1839]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-6/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#658]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-1/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][287] ([i915#658]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-1/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][288] ([i915#4881]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@kms_fence_pin_leak.html - shard-dg2-9: NOTRUN -> [SKIP][289] ([i915#4881]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#8381]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg2-9: NOTRUN -> [SKIP][291] ([i915#8381]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#3637]) +3 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#3637]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#9934]) +4 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2-9: NOTRUN -> [SKIP][295] ([i915#9934]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#9934]) +6 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#3637]) +2 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#9934]) +5 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][299] ([i915#12745] / [i915#4839]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][300] ([i915#12745]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a3: - shard-dg1: NOTRUN -> [DMESG-WARN][301] ([i915#4423]) +1 other test dmesg-warn [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#2672] / [i915#3555]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#2587] / [i915#2672]) +2 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#2672] / [i915#3555] / [i915#8813]) +5 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][305] ([i915#2672] / [i915#3555]) +2 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#2672] / [i915#8813]) +3 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#2587] / [i915#2672]) +4 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#2672]) +5 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][309] ([i915#2672] / [i915#3555]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2-9: NOTRUN -> [SKIP][310] ([i915#2672] / [i915#3555] / [i915#5190]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][311] ([i915#2672]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#2587] / [i915#2672] / [i915#3555]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-dg2: NOTRUN -> [SKIP][313] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#2672]) +4 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#2672] / [i915#3555]) +4 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-2/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-dg1: NOTRUN -> [SKIP][316] ([i915#2587] / [i915#2672]) +5 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#3555] / [i915#8810] / [i915#8813]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#3555] / [i915#8810]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#2672] / [i915#3555]) +5 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#3555]) +10 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][321] ([i915#2672] / [i915#3555]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-rkl: [PASS][322] -> [SKIP][323] ([i915#3555]) +4 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#8708]) +6 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2-9: NOTRUN -> [FAIL][325] ([i915#6880]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-snb: [PASS][326] -> [SKIP][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][328] +72 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][329] ([i915#8708]) +6 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#8708]) +14 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-rkl: [PASS][331] -> [SKIP][332] ([i915#1849] / [i915#5354]) +5 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: [PASS][333] -> [FAIL][334] ([i915#6880]) +2 other tests fail [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][335] ([i915#8708]) +23 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#3023]) +26 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#5354]) +21 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#9766]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][339] ([i915#9766]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][340] ([i915#3458]) +30 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][341] +38 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#3458]) +12 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#1849] / [i915#5354]) +25 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][344] ([i915#5354]) +13 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#1825]) +32 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#1825]) +20 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2-9: NOTRUN -> [SKIP][347] ([i915#3458]) +5 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#3555] / [i915#8228]) +2 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-2/igt@kms_hdr@bpc-switch-suspend.html - shard-dg2: NOTRUN -> [SKIP][349] ([i915#3555] / [i915#8228]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#1187] / [i915#12713]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#3555] / [i915#8228]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-3/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#3555] / [i915#8228]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2-9: NOTRUN -> [SKIP][353] ([i915#3555] / [i915#8228]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][354] ([i915#3555] / [i915#8228]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@clock-too-high: - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#3555] / [i915#6403] / [i915#8826]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#9457]) +3 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#12388]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-3/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][358] ([i915#12394]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu: NOTRUN -> [SKIP][359] ([i915#10656]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-6/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: [PASS][360] -> [SKIP][361] ([i915#12388]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#13522]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-dg2-9: NOTRUN -> [SKIP][363] ([i915#13522]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][364] ([i915#6301]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-8/igt@kms_panel_fitting@atomic-fastset.html - shard-dg2: NOTRUN -> [SKIP][365] ([i915#6301]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][366] ([i915#6301]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][367] ([i915#6301]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-4/igt@kms_panel_fitting@legacy.html - shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#6301]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2-9: NOTRUN -> [SKIP][369] +3 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-9/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][370] +10 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane@pixel-format-source-clamping: - shard-rkl: [PASS][371] -> [SKIP][372] ([i915#8825]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_plane@pixel-format-source-clamping.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_scaling@invalid-parameters: - shard-rkl: [PASS][373] -> [SKIP][374] ([i915#8152]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_plane_scaling@invalid-parameters.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#12247]) +8 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#12247] / [i915#9423]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers: - shard-rkl: NOTRUN -> [SKIP][377] ([i915#8152]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][378] ([i915#3555] / [i915#8152]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][379] ([i915#12247]) +10 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html - shard-dg1: NOTRUN -> [SKIP][380] ([i915#12247]) +11 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a: - shard-rkl: [PASS][381] -> [SKIP][382] ([i915#12247]) +11 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][383] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][384] ([i915#12247] / [i915#6953]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][385] ([i915#12247] / [i915#6953]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][386] ([i915#12247] / [i915#6953]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-rkl: [PASS][387] -> [SKIP][388] ([i915#12247] / [i915#8152]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][389] ([i915#12247]) +27 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-rkl: [PASS][390] -> [SKIP][391] ([i915#6953] / [i915#8152]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c: - shard-rkl: NOTRUN -> [SKIP][392] ([i915#12247] / [i915#8152]) +8 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-mtlp: NOTRUN -> [SKIP][393] ([i915#12247] / [i915#6953]) +1 other test skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-dg2: NOTRUN -> [SKIP][394] ([i915#12247]) +11 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-tglu: NOTRUN -> [SKIP][395] ([i915#12247]) +7 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][396] ([i915#12247] / [i915#3555]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-18/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-rkl: NOTRUN -> [SKIP][397] ([i915#12247] / [i915#6953] / [i915#8152]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#12247] / [i915#6953]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-rkl: [PASS][399] -> [SKIP][400] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152]) +1 other test skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][401] ([i915#9812]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-10/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][402] ([i915#5354]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][403] ([i915#5354]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-17/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][404] ([i915#9685]) +1 other test skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-tglu-1: NOTRUN -> [SKIP][405] ([i915#9685]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][406] ([i915#3828]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-2/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [FAIL][407] ([i915#12913]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-5/igt@kms_pm_dc@dc6-dpms.html - shard-dg2: NOTRUN -> [SKIP][408] ([i915#5978]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-7/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][409] ([i915#3361]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: NOTRUN -> [FAIL][410] ([i915#9295]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-mtlp: NOTRUN -> [FAIL][411] ([i915#12912]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-2/igt@kms_pm_dc@dc6-psr.html - shard-dg2: NOTRUN -> [SKIP][412] ([i915#9685]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg2-5/igt@kms_pm_dc@dc6-psr.html - shard-tglu: NOTRUN -> [SKIP][413] ([i915#9685]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-tglu-8/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][414] ([i915#9340]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-dg1-12/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][415] ([i915#9519]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-mtlp-2/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@drm-resources-equal: - shard-rkl: [PASS][416] -> [SKIP][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/shard-rkl-5/igt@kms_pm_rpm@drm-resources-equal.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@fences-dpms: - shard-rkl: NOTRUN -> [SKIP][418] ([i915#1849]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/shard-rkl-8/igt@kms_pm_rpm@fences-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][419] -> [SKIP][420] ([i915#9519]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8227/sh == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12565/index.html [-- Attachment #2: Type: text/html, Size: 109856 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.Full: failure for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev8) 2025-02-08 6:21 [PATCH i-g-t v8 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test Santhosh Reddy Guddati ` (3 preceding siblings ...) 2025-02-08 20:42 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-02-08 22:18 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-02-08 22:18 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 78490 bytes --] == Series Details == Series: RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev8) URL : https://patchwork.freedesktop.org/series/138218/ State : failure == Summary == CI Bug Log - changes from XEIGT_8227_full -> XEIGTPW_12565_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12565_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12565_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_12565_full: ### IGT changes ### #### Possible regressions #### * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][1] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic.html - shard-lnl: NOTRUN -> [SKIP][2] +2 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: NOTRUN -> [SKIP][4] +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html #### Warnings #### * igt@xe_pm@s4-basic: - shard-bmg: [ABORT][5] ([Intel XE#4172]) -> [ABORT][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@xe_pm@s4-basic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-1/igt@xe_pm@s4-basic.html New tests --------- New tests have been introduced between XEIGT_8227_full and XEIGTPW_12565_full: ### New IGT tests (4) ### * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - Statuses : - Exec time: [None] s * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - Statuses : 2 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12565_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2233]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#623]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1466]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [PASS][10] -> [FAIL][11] ([Intel XE#911]) +3 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1407]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3658]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2327]) +4 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#316]) +4 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +8 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +10 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +8 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2191]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#2191]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1512]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2314] / [Intel XE#2894]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#367]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#367]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +18 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +17 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-8/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +52 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#3432]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#3432]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#787]) +146 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][33] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010]) +1 other test incomplete [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#306]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_chamelium_color@ctm-0-50.html - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#306]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-2/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2325]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-7/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#373]) +7 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#373]) +11 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-1/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252]) +7 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-1/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2390]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#307]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#307]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#1178]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@kms_content_protection@lic-type-0.html - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#3278]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-7/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#1178]) +3 other tests fail [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#3304]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][47] ([Intel XE#1033]) +11 other tests dmesg-warn [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-d-hdmi-a-6.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2320]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@kms_cursor_crc@cursor-random-32x32.html - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#308]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2321]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2321]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: [PASS][53] -> [DMESG-WARN][54] ([Intel XE#4172]) +30 other tests dmesg-warn [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-4/igt@kms_cursor_crc@cursor-suspend.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-dg2-set2: [PASS][55] -> [SKIP][56] ([Intel XE#309]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2291]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-2/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#309]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-2/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2286]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#323]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#323]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#1508]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][64] -> [DMESG-WARN][65] ([Intel XE#4172] / [Intel XE#877]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-8/igt@kms_display_modes@extended-mode-basic.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@extended-mode-basic@pipe-b-hdmi-a-3-pipe-d-dp-2: - shard-bmg: [PASS][66] -> [DMESG-WARN][67] ([Intel XE#877]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-8/igt@kms_display_modes@extended-mode-basic@pipe-b-hdmi-a-3-pipe-d-dp-2.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@kms_display_modes@extended-mode-basic@pipe-b-hdmi-a-3-pipe-d-dp-2.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2-set2: [PASS][68] -> [SKIP][69] ([Intel XE#455]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_aux_dev: - shard-dg2-set2: [PASS][70] -> [SKIP][71] ([Intel XE#3009]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@kms_dp_aux_dev.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#3070]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4156]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][74] ([Intel XE#1033]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#776]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-7/igt@kms_fbcon_fbt@psr.html - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#776]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#1138]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-8/igt@kms_feature_discovery@display-4x.html - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#1138]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_feature_discovery@display-4x.html - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1138]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-3/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2374]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@kms_feature_discovery@psr1.html - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#1135]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#310]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-bmg: [PASS][83] -> [SKIP][84] ([Intel XE#2316]) +6 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-8/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [PASS][85] -> [FAIL][86] ([Intel XE#3321]) +2 other tests fail [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1421]) +6 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-3/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2316]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-nonexisting-fb: - shard-dg2-set2: [PASS][89] -> [SKIP][90] ([Intel XE#310]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_flip@2x-nonexisting-fb.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-lnl: [PASS][91] -> [FAIL][92] ([Intel XE#886]) +1 other test fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-lnl-7/igt@kms_flip@basic-flip-vs-wf_vblank.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank@a-dp4: - shard-dg2-set2: [PASS][93] -> [FAIL][94] ([Intel XE#301] / [Intel XE#3321]) +3 other tests fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6: - shard-dg2-set2: [PASS][95] -> [FAIL][96] ([Intel XE#301]) +4 other tests fail [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [PASS][97] -> [INCOMPLETE][98] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [FAIL][99] ([Intel XE#886]) +1 other test fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-7/igt@kms_flip@flip-vs-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2293]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1401]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1397] / [Intel XE#1745]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1397]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#651]) +25 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#651]) +15 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2311]) +24 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#656]) +51 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#4141]) +12 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#656]) +16 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2312]) +11 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [PASS][113] -> [SKIP][114] ([Intel XE#656]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#653]) +23 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2313]) +19 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2502]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@kms_getfb@getfb-reject-ccs.html - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#605]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#605]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-7/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2927]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2927]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@kms_joiner@basic-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2927]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-6/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#346]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#346]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#346]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2501]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#356]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#356]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#599]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-1/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#455]) +19 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_plane_lowres@tiling-y.html - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2393]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2493]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@kms_plane_multiple@tiling-y.html - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2493]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-7/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-bmg: [PASS][134] -> [SKIP][135] ([Intel XE#2685] / [Intel XE#3307]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-1/igt@kms_plane_scaling@intel-max-src-size.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#2763]) +19 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2763]) +14 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2763]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2938]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-8/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2938]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2391]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#1122]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#736]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][145] -> [FAIL][146] ([Intel XE#718]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#3309]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#3309]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-8/igt@kms_pm_dc@dc5-retention-flops.html - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#3309]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-1/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2-set2: [PASS][150] -> [SKIP][151] ([Intel XE#836]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1439] / [Intel XE#3141]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#1489]) +7 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1489]) +7 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#2893]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-4/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2387]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-8/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1128]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1406]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-8/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@psr2-sprite-blt: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@kms_psr@psr2-sprite-blt.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1127]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#3414]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [PASS][165] -> [DMESG-WARN][166] ([Intel XE#1033]) +38 other tests dmesg-warn [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-180.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-180.html * igt@kms_tiled_display@basic-test-pattern: - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#362]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-8/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic: - shard-lnl: NOTRUN -> [FAIL][168] ([Intel XE#1522]) +3 other tests fail [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-3/igt@kms_vrr@flip-basic.html * igt@kms_vrr@max-min: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#1499]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#1499]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#1091] / [Intel XE#2849]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#1091] / [Intel XE#2849]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-435/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#1091] / [Intel XE#2849]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@testdisplay: - shard-dg2-set2: [PASS][174] -> [DMESG-WARN][175] ([Intel XE#2705] / [Intel XE#4212]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@testdisplay.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@testdisplay.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#1447]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-5/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2504]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@basic-read-event: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#2905]) +10 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-8/igt@xe_eudebug@basic-read-event.html * igt@xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#3889]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-2/igt@xe_eudebug@basic-vm-access-parameters-userptr.html - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#3889]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@xe_eudebug@basic-vm-access-parameters-userptr.html - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#3889]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-2/igt@xe_eudebug@basic-vm-access-parameters-userptr.html * igt@xe_evict@evict-small-external-cm: - shard-dg2-set2: [PASS][182] -> [DMESG-WARN][183] ([Intel XE#1033] / [Intel XE#1473]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@xe_evict@evict-small-external-cm.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@xe_evict@evict-small-external-cm.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#688]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#2322]) +4 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#1392]) +6 other tests skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-2/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html * igt@xe_exec_compute_mode@many-execqueues-bindexecqueue: - shard-bmg: NOTRUN -> [DMESG-WARN][187] ([Intel XE#4172]) +8 other tests dmesg-warn [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-1/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue.html * igt@xe_exec_fault_mode@once-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#288]) +17 other tests skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@xe_exec_fault_mode@once-rebind-prefetch.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#2905]) +10 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-writesip.html - shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#2905]) +9 other tests skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-4/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#2229]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][192] -> [SKIP][193] ([Intel XE#1192]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: NOTRUN -> [SKIP][194] ([Intel XE#1192]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html - shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#1192] / [Intel XE#3026]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-2/igt@xe_live_ktest@xe_eudebug.html * igt@xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][196] ([Intel XE#1192]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-7/igt@xe_live_ktest@xe_mocs.html * igt@xe_oa@non-privileged-map-oa-buffer: - shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@xe_oa@non-privileged-map-oa-buffer.html * igt@xe_oa@unprivileged-single-ctx-counters: - shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#2248]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@xe_oa@unprivileged-single-ctx-counters.html - shard-lnl: NOTRUN -> [SKIP][199] ([Intel XE#2248]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-8/igt@xe_oa@unprivileged-single-ctx-counters.html * igt@xe_pm@d3cold-basic: - shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-7/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][201] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#2284]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-1/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#584]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-2/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [PASS][204] -> [DMESG-WARN][205] ([Intel XE#4172] / [Intel XE#569]) +2 other tests dmesg-warn [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-5/igt@xe_pm@s3-multiple-execs.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@xe_pm@s3-multiple-execs.html - shard-dg2-set2: [PASS][206] -> [DMESG-WARN][207] ([Intel XE#1033] / [Intel XE#569]) +2 other tests dmesg-warn [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@xe_pm@s3-multiple-execs.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-bmg: [PASS][208] -> [INCOMPLETE][209] ([Intel XE#569]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-8/igt@xe_pm@s3-vm-bind-unbind-all.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][210] ([Intel XE#944]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@xe_query@multigpu-query-engines.html - shard-lnl: NOTRUN -> [SKIP][211] ([Intel XE#944]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-3/igt@xe_query@multigpu-query-engines.html - shard-bmg: NOTRUN -> [SKIP][212] ([Intel XE#944]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-2/igt@xe_query@multigpu-query-engines.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#3342]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@kms_big_fb@x-tiled-16bpp-rotate-180: - shard-dg2-set2: [DMESG-WARN][214] -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - shard-bmg: [DMESG-WARN][216] ([Intel XE#4172]) -> [PASS][217] +20 other tests pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-4/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][218] ([Intel XE#2291]) -> [PASS][219] +3 other tests pass [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2-set2: [SKIP][220] ([Intel XE#309]) -> [PASS][221] +5 other tests pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-435/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][222] ([Intel XE#1340]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [SKIP][224] ([Intel XE#2373]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_feature_discovery@display-2x.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [SKIP][226] ([Intel XE#2316]) -> [PASS][227] +6 other tests pass [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-dg2-set2: [SKIP][228] ([Intel XE#310]) -> [PASS][229] +5 other tests pass [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-435/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank: - shard-bmg: [FAIL][230] ([Intel XE#3321]) -> [PASS][231] +2 other tests pass [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [FAIL][232] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-lnl-5/igt@kms_flip@plain-flip-ts-check-interruptible.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-1/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1: - shard-lnl: [FAIL][234] ([Intel XE#886]) -> [PASS][235] +2 other tests pass [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-lnl-5/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-1/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][236] ([Intel XE#656]) -> [PASS][237] +8 other tests pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt: - shard-lnl: [INCOMPLETE][238] ([Intel XE#2050]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2-set2: [SKIP][240] -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-big-joiner.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-435/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_lease@lease-unleased-connector@pipe-c-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][242] ([Intel XE#1033]) -> [PASS][243] +32 other tests pass [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_lease@lease-unleased-connector@pipe-c-hdmi-a-6.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_lease@lease-unleased-connector@pipe-c-hdmi-a-6.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: [SKIP][244] ([Intel XE#836]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [DMESG-WARN][246] ([Intel XE#1033] / [Intel XE#2042]) -> [PASS][247] +1 other test pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@kms_pm_rpm@system-suspend-modeset.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-435/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][248] ([Intel XE#1435]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@xe_exec_threads@threads-hang-rebind: - shard-dg2-set2: [DMESG-WARN][250] ([Intel XE#3876]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@xe_exec_threads@threads-hang-rebind.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@xe_exec_threads@threads-hang-rebind.html * igt@xe_live_ktest@xe_bo: - shard-bmg: [SKIP][252] ([Intel XE#1192]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@xe_live_ktest@xe_bo.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@xe_live_ktest@xe_bo.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-bmg: [DMESG-WARN][254] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-4/igt@xe_pm@s3-vm-bind-prefetch.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@xe_pm@s3-vm-bind-prefetch.html #### Warnings #### * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][256] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][257] ([Intel XE#787]) +12 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][258] ([Intel XE#787]) -> [SKIP][259] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_content_protection@legacy: - shard-bmg: [FAIL][260] ([Intel XE#1178]) -> [SKIP][261] ([Intel XE#2341]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-7/igt@kms_content_protection@legacy.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@kms_content_protection@legacy.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2-set2: [SKIP][262] ([Intel XE#455]) -> [DMESG-WARN][263] ([Intel XE#1033]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_display_modes@extended-mode-basic.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-436/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][264] ([i915#3804]) -> [SKIP][265] ([Intel XE#455] / [i915#3804]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: [SKIP][266] ([Intel XE#2316]) -> [DMESG-WARN][267] ([Intel XE#4172]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-4/igt@kms_flip@2x-blocking-wf_vblank.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-dg2-set2: [DMESG-WARN][268] ([Intel XE#1033]) -> [SKIP][269] ([Intel XE#310]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-435/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][270] ([Intel XE#656]) -> [SKIP][271] ([Intel XE#651]) +11 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][272] ([Intel XE#2311]) -> [SKIP][273] ([Intel XE#2312]) +14 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][274] ([Intel XE#651]) -> [SKIP][275] ([Intel XE#656]) +11 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][276] ([Intel XE#4141]) -> [SKIP][277] ([Intel XE#2312]) +6 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][278] ([Intel XE#2312]) -> [SKIP][279] ([Intel XE#4141]) +8 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][280] ([Intel XE#2312]) -> [SKIP][281] ([Intel XE#2311]) +12 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][282] ([Intel XE#653]) -> [SKIP][283] ([Intel XE#656]) +15 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][284] ([Intel XE#2312]) -> [SKIP][285] ([Intel XE#2313]) +10 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][286] ([Intel XE#656]) -> [SKIP][287] ([Intel XE#653]) +19 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][288] ([Intel XE#2313]) -> [SKIP][289] ([Intel XE#2312]) +12 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [DMESG-WARN][290] ([Intel XE#4212]) -> [SKIP][291] ([Intel XE#455]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_dc@dc6-dpms: - shard-bmg: [DMESG-FAIL][292] ([Intel XE#4172]) -> [FAIL][293] ([Intel XE#1430]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][294] ([Intel XE#2426]) -> [FAIL][295] ([Intel XE#1729]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8227/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [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#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [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#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [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#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [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#3026]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3026 [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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#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#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [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#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [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#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8227 -> IGTPW_12565 * Linux: xe-2620-e886a5edb53ade13f69b5809cbe03d7aa73885a7 -> xe-2621-4f934139887fd60bd4ac9027b7eec3e86ade8085 IGTPW_12565: 12565 IGT_8227: 8227 xe-2620-e886a5edb53ade13f69b5809cbe03d7aa73885a7: e886a5edb53ade13f69b5809cbe03d7aa73885a7 xe-2621-4f934139887fd60bd4ac9027b7eec3e86ade8085: 4f934139887fd60bd4ac9027b7eec3e86ade8085 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12565/index.html [-- Attachment #2: Type: text/html, Size: 92324 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-02-12 13:47 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-08 6:21 [PATCH i-g-t v8 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test Santhosh Reddy Guddati 2025-02-08 6:21 ` [PATCH i-g-t v8 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc Santhosh Reddy Guddati 2025-02-12 13:47 ` Govindapillai, Vinod 2025-02-08 10:32 ` ✓ Xe.CI.BAT: success for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev8) Patchwork 2025-02-08 10:43 ` ✓ i915.CI.BAT: " Patchwork 2025-02-08 20:42 ` ✗ i915.CI.Full: failure " Patchwork 2025-02-08 22:18 ` ✗ Xe.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