* [PATCH i-g-t v7 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test
@ 2025-02-03 2:46 Santhosh Reddy Guddati
2025-02-03 2:46 ` [PATCH i-g-t v7 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; 8+ messages in thread
From: Santhosh Reddy Guddati @ 2025-02-03 2:46 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 | 324 +++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 325 insertions(+)
create mode 100644 tests/intel/kms_fbc_dirty_rect.c
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH i-g-t v7 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc 2025-02-03 2:46 [PATCH i-g-t v7 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test Santhosh Reddy Guddati @ 2025-02-03 2:46 ` Santhosh Reddy Guddati 2025-02-03 12:12 ` Govindapillai, Vinod 2025-02-03 3:36 ` ✓ Xe.CI.BAT: success for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev7) Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Santhosh Reddy Guddati @ 2025-02-03 2:46 UTC (permalink / raw) To: igt-dev Cc: vinod.govindapillai, jeevan.b, kunal1.joshi, ramanaidu.naladala, swati2.sharma, Santhosh Reddy Guddati - Introduce new test file kms_fbc_dirty_rect.c to verify DIRTYFB ioctl functionality with FBC enabled. - Added subtests for basic FBC dirty rectangle, different formats, and dirtyfb ioctl. - Update meson.build to include the new test. 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. Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> --- tests/intel/kms_fbc_dirty_rect.c | 324 +++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 325 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..b72c98ed3 --- /dev/null +++ b/tests/intel/kms_fbc_dirty_rect.c @@ -0,0 +1,324 @@ +/* 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 "igt.h" +#include "i915/intel_fbc.h" + +/** + * SUBTEST: fbc-dirty-rectangle-basic + * Description: Sanity test to verify FBC DR by sending multiple damaged areas with non psr modes + * + * SUBTEST: fbc-dirty-rectangle-different-formats + * Description: Sanity test to verify FBC DR by sending multiple + * damaged areas with different formats. + * + * SUBTEST: fbc-dirty-rectangle-outside-visible-region + * Description: Test that FBC DR works with damage area outside the visible region + */ + +#define SQUARE_SIZE 100 +#define SQUARE_OFFSET 100 +#define SQUARE_OFFSET_2 600 +#define SQUARE_OFFSET_OUT 1000 + +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; + + +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_and_check_crc(data_t *data, igt_plane_t *primary, + igt_pipe_crc_t *pipe_crc, struct igt_fb *fb, + struct drm_mode_rect *rect, int rect_size, + igt_crc_t *expected_crc) +{ + igt_plane_replace_prop_blob(primary, IGT_PLANE_FB_DAMAGE_CLIPS, rect, rect_size); + igt_plane_set_fb(primary, fb); + igt_display_commit2(&data->display, COMMIT_ATOMIC); + igt_assert_f(intel_fbc_is_enabled(data->drm_fd, data->pipe, + IGT_LOG_WARN), "FBC is not enabled\n"); + igt_pipe_crc_collect_crc(pipe_crc, expected_crc); +} + +static void dirty_rect_create_fb(data_t *data, struct igt_fb *fb, int nrects, + struct drm_mode_rect *rect) +{ + cairo_t *cr; + + igt_info("Creating framebuffer with %d damaged areas format %s\n", + nrects, igt_format_str(data->format)); + igt_create_color_fb(data->drm_fd, data->mode->hdisplay, data->mode->vdisplay, + data->format, DRM_FORMAT_MOD_LINEAR, + 0.0, 0.0, 1.0, fb); + + 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 fbc_dirty_rectangle_complete_set(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_1_fb, rect_2_fb, rect_combined_fb; + struct drm_mode_rect rect1, rect2, rect_combined[2], 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); + rect_combined[0] = rect1; + rect_combined[1] = rect2; + + dirty_rect_create_fb(data, &main_fb, 0, NULL); + dirty_rect_create_fb(data, &rect_1_fb, 1, &rect1); + dirty_rect_create_fb(data, &rect_2_fb, 1, &rect2); + dirty_rect_create_fb(data, &rect_combined_fb, 2, rect_combined); + + /* main_fb blank blue screen - get and store crc */ + set_and_check_crc(data, primary, pipe_crc, &main_fb, &full_rect, + sizeof(full_rect), &main_fb_crc); + + /* Whole blue screen with one white rect and collect crc */ + set_and_check_crc(data, primary, pipe_crc, &rect_1_fb, &full_rect, + sizeof(full_rect), &rect_1_fb_crc); + + /* Second white rect and collect crc */ + set_and_check_crc(data, primary, pipe_crc, &rect_2_fb, &full_rect, + sizeof(full_rect), &rect_2_fb_crc); + + /* Both rects and collect crc */ + set_and_check_crc(data, primary, pipe_crc, &rect_combined_fb, &full_rect, + sizeof(full_rect), &rect_combined_fb_crc); + + /* Put full blank screen back */ + set_and_check_crc(data, primary, pipe_crc, &main_fb, &full_rect, + sizeof(full_rect), &crc); + igt_assert_crc_equal(&crc, &main_fb_crc); + + /* Set combined rect - draw two white rects using damage area */ + set_and_check_crc(data, primary, pipe_crc, &rect_combined_fb, rect_combined, + sizeof(rect_combined), &crc); + igt_assert_crc_equal(&crc, &rect_combined_fb_crc); + + /* Clear first rect. Only the second rect should be visible here! */ + igt_plane_set_fb(primary, &rect_2_fb); + igt_display_commit2(display, COMMIT_ATOMIC); + set_and_check_crc(data, primary, pipe_crc, &rect_2_fb, &rect1, + sizeof(rect1), &crc); + igt_assert_crc_equal(&crc, &rect_2_fb_crc); + + /* Clear the second rect as well. Only the first rect should be visible here */ + igt_plane_set_fb(primary, &rect_1_fb); + igt_display_commit2(display, COMMIT_ATOMIC); + set_and_check_crc(data, primary, pipe_crc, &rect_1_fb, &rect2, + sizeof(rect2), &crc); + igt_assert_crc_equal(&crc, &rect_1_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_test_outside_region(data_t *data) +{ + struct igt_fb main_fb, rect_outside_fb; + igt_pipe_crc_t *crc = data->pipe_crc; + igt_plane_t *primary; + igt_crc_t main_fb_crc, rect_outside_fb_crc; + struct drm_mode_rect main_rect, rect_outside; + + prepare_test(data, data->output); + + igt_output_get_mode(data->output); + igt_output_set_pipe(data->output, data->pipe); + + crc = igt_pipe_crc_new(data->drm_fd, data->pipe, IGT_PIPE_CRC_SOURCE_AUTO); + primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY); + + // Set damage area outside the visible region + set_damage_clip(&main_rect, 0, 0, data->mode->hdisplay - 1, + data->mode->vdisplay - 1); + set_damage_clip(&rect_outside, data->mode->hdisplay, data->mode->vdisplay, + data->mode->hdisplay + SQUARE_OFFSET_OUT, + data->mode->vdisplay + SQUARE_OFFSET_OUT); + + dirty_rect_create_fb(data, &main_fb, 0, NULL); + dirty_rect_create_fb(data, &rect_outside_fb, 1, &rect_outside); + + set_and_check_crc(data, primary, crc, &main_fb, &main_rect, + sizeof(main_rect), &main_fb_crc); + set_and_check_crc(data, primary, crc, &rect_outside_fb, &rect_outside, + sizeof(rect_outside), &rect_outside_fb_crc); + + // Verify that the CRC remains unchanged + igt_assert_crc_equal(&main_fb_crc, &rect_outside_fb_crc); + + igt_plane_set_fb(primary, NULL); + igt_remove_fb(data->drm_fd, &main_fb); + igt_remove_fb(data->drm_fd, &rect_outside_fb); + igt_display_commit2(&data->display, COMMIT_ATOMIC); +} + +static void fbc_dirty_rectangle_basic(data_t *data) +{ + prepare_test(data, NULL); + return fbc_dirty_rectangle_complete_set(data); +} + +igt_main +{ + data_t data = {0}; + int display_ver; + + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); + data.debugfs_fd = igt_debugfs_dir(data.drm_fd); + data.feature = FEATURE_FBC; + 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.format = DRM_FORMAT_XRGB8888; + 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); + igt_dynamic_f("%s-%s", + kmstest_pipe_name(data.pipe), + igt_output_name(data.output)) { + fbc_dirty_rectangle_basic(&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); + + 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("%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(&data); + } + } + } + } + } + + igt_subtest_with_dynamic("fbc-dirty-rectangle-outside-visible-region") { + data.feature = FEATURE_FBC; + data.format = DRM_FORMAT_XRGB8888; + igt_require_f(display_ver >= 30, "FBC with dirty region is not supported\n"); + + 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); + + igt_dynamic_f("%s-%s-outside-visible-region", + kmstest_pipe_name(data.pipe), + igt_output_name(data.output)) { + fbc_test_outside_region(&data); + } + } + } + } + + igt_fixture { + igt_display_fini(&data.display); + close(data.drm_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 33dffad31..fde1078e3 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -251,6 +251,7 @@ intel_kms_progs = [ 'kms_dsc', 'kms_fb_coherency', 'kms_fbcon_fbt', + 'kms_fbc_dirty_rect', 'kms_fence_pin_leak', 'kms_flip_scaled_crc', 'kms_flip_tiling', -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v7 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc 2025-02-03 2:46 ` [PATCH i-g-t v7 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc Santhosh Reddy Guddati @ 2025-02-03 12:12 ` Govindapillai, Vinod 2025-02-03 20:48 ` Govindapillai, Vinod 0 siblings, 1 reply; 8+ messages in thread From: Govindapillai, Vinod @ 2025-02-03 12:12 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Reddy Guddati, Santhosh Cc: Joshi, Kunal1, Naladala, Ramanaidu, Sharma, Swati2, B, Jeevan Hi Santhosh, Thanks for the update! But some part of the tests are not accurate now! Please have a look at the comments inline. On Mon, 2025-02-03 at 08:16 +0530, Santhosh Reddy Guddati wrote: > - Introduce new test file kms_fbc_dirty_rect.c to verify > DIRTYFB ioctl functionality with FBC enabled. > - Added subtests for basic FBC dirty rectangle, different formats, > and dirtyfb ioctl. > - Update meson.build to include the new test. > > 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. > > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > --- > tests/intel/kms_fbc_dirty_rect.c | 324 +++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 325 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..b72c98ed3 > --- /dev/null > +++ b/tests/intel/kms_fbc_dirty_rect.c > @@ -0,0 +1,324 @@ > +/* 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 "igt.h" > +#include "i915/intel_fbc.h" > + > +/** > + * SUBTEST: fbc-dirty-rectangle-basic > + * Description: Sanity test to verify FBC DR by sending multiple damaged areas with non psr modes > + * > + * SUBTEST: fbc-dirty-rectangle-different-formats > + * Description: Sanity test to verify FBC DR by sending multiple > + * damaged areas with different formats. > + * > + * SUBTEST: fbc-dirty-rectangle-outside-visible-region > + * Description: Test that FBC DR works with damage area outside the visible region > + */ > + > +#define SQUARE_SIZE 100 > +#define SQUARE_OFFSET 100 > +#define SQUARE_OFFSET_2 600 > +#define SQUARE_OFFSET_OUT 1000 > + > +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; > + > + > +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_and_check_crc(data_t *data, igt_plane_t *primary, > + igt_pipe_crc_t *pipe_crc, struct igt_fb *fb, > + struct drm_mode_rect *rect, int rect_size, > + igt_crc_t *expected_crc) May be the name of this function should be set_fb_and_collect_crc()? > +{ > + igt_plane_replace_prop_blob(primary, IGT_PLANE_FB_DAMAGE_CLIPS, rect, rect_size); Also I think it is better to get this damage clip as a separate function. something like set_damage_area(plane, rects) and call it from out of this function. > + igt_plane_set_fb(primary, fb); > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > + igt_assert_f(intel_fbc_is_enabled(data->drm_fd, data->pipe, > + IGT_LOG_WARN), "FBC is not enabled\n"); > + igt_pipe_crc_collect_crc(pipe_crc, expected_crc); > +} > + > +static void dirty_rect_create_fb(data_t *data, struct igt_fb *fb, int nrects, > + struct drm_mode_rect *rect) > +{ > + cairo_t *cr; > + > + igt_info("Creating framebuffer with %d damaged areas format %s\n", > + nrects, igt_format_str(data->format)); > + igt_create_color_fb(data->drm_fd, data->mode->hdisplay, data->mode->vdisplay, > + data->format, DRM_FORMAT_MOD_LINEAR, > + 0.0, 0.0, 1.0, fb); Wonder if you can pass color as a parameter and create the fb with color passed and not always blue. This would be handy in the case where we check the damage area outside the visible rect wont cause any crc mismatches. more details as part of that test. Also we need to a create a big FB. So need to pass FB width and height as parameter. > + > + 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); > +} > + Some explanation of what this test does should be good. First a series of screens are drawn as full screen updates and crc's are collected. These crc's act as reference crcs. Then screens are updated using the FBC dirty rect feature and compared with these reference crcs. If the crcs match, the test is successful. 1. Full blue screen - main_fb, main_fb_crc 2. A white square on upper left on blue screen as full screen update - rect1_fb, rect_fb_rect1_fb_crc 3. A second white square at bit lower of the first rect on blue screen as a full screen update - rect2_fb, rect2_fb_crc 4. Both the rects are drawn on the blue screen as full screen update - rect_combined_fb, rect_combined_fb_crc These above are all full screen updates to collect reference crcs. Now we attempt updating the screen with FBC dirty rect. 1. Full blue screen 2. Set rect_combine_fb with damage area update - damage area are provided as rects. After this the crc should match with crc collected before rect_combined_fb-crc. 3. Now clear the area of the first rect as a dirty rect update. Use the main_fb and damage area as the rect1 coordinates. After this the crc should match rect2_fb_crc 4. Now clear the area of the second rect as a dirty rect update. Use main_fb and damage area as the rect2 coordinates. After this crc should match main_fb_crc This is just a basic explanation of what this does. So some better explanation would be useful . > +static void fbc_dirty_rectangle_complete_set(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_1_fb, rect_2_fb, rect_combined_fb; > + struct drm_mode_rect rect1, rect2, rect_combined[2], 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); > + rect_combined[0] = rect1; > + rect_combined[1] = rect2; > + > + dirty_rect_create_fb(data, &main_fb, 0, NULL); > + dirty_rect_create_fb(data, &rect_1_fb, 1, &rect1); > + dirty_rect_create_fb(data, &rect_2_fb, 1, &rect2); > + dirty_rect_create_fb(data, &rect_combined_fb, 2, rect_combined); > + > + /* main_fb blank blue screen - get and store crc */ > + set_and_check_crc(data, primary, pipe_crc, &main_fb, &full_rect, > + sizeof(full_rect), &main_fb_crc); set_damage_area(primary, full_rect) set_fb_collect_crc(...) > + > + /* Whole blue screen with one white rect and collect crc */ > + set_and_check_crc(data, primary, pipe_crc, &rect_1_fb, &full_rect, > + sizeof(full_rect), &rect_1_fb_crc); > + > + /* Second white rect and collect crc */ > + set_and_check_crc(data, primary, pipe_crc, &rect_2_fb, &full_rect, > + sizeof(full_rect), &rect_2_fb_crc); > + > + /* Both rects and collect crc */ > + set_and_check_crc(data, primary, pipe_crc, &rect_combined_fb, &full_rect, > + sizeof(full_rect), &rect_combined_fb_crc); > + > + /* Put full blank screen back */ > + set_and_check_crc(data, primary, pipe_crc, &main_fb, &full_rect, > + sizeof(full_rect), &crc); > + igt_assert_crc_equal(&crc, &main_fb_crc); > + > + /* Set combined rect - draw two white rects using damage area */ > + set_and_check_crc(data, primary, pipe_crc, &rect_combined_fb, rect_combined, > + sizeof(rect_combined), &crc); > + igt_assert_crc_equal(&crc, &rect_combined_fb_crc); set_damage_area(primary, combined_rect) set_fb_and_collect_crc(.. rect_combine_fb) > + > + /* Clear first rect. Only the second rect should be visible here! */ > + igt_plane_set_fb(primary, &rect_2_fb); > + igt_display_commit2(display, COMMIT_ATOMIC); This is not correct. This basically becomes a full screen update for rect2_fb and make this damage area check useless. > + set_and_check_crc(data, primary, pipe_crc, &rect_2_fb, &rect1, > + sizeof(rect1), &crc); > + igt_assert_crc_equal(&crc, &rect_2_fb_crc); Better to clear using the main fb. This should be something like this... set_damage_area(primary, rect1) set_fb_collect_crc(... main_fb, crc) igt_assert_crc_equal(&crc, &rect_2_fb_crc); > + > + /* Clear the second rect as well. Only the first rect should be visible here */ Not correct. The first rect is already gone as part of the previous case. No rects after this. > + igt_plane_set_fb(primary, &rect_1_fb); > + igt_display_commit2(display, COMMIT_ATOMIC); same as before.. not correct. This basically becomes a full screen update for rect_1_fb and make this damage area check useless. > + set_and_check_crc(data, primary, pipe_crc, &rect_1_fb, &rect2, > + sizeof(rect2), &crc); > + igt_assert_crc_equal(&crc, &rect_1_fb_crc); both rects are gone. same comments are before! set_damage_area(primary, rect2) set_fb_collect_crc(... main_fb, 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); > + > +} > + Some explanation would be useful. Here the test should create bigger FBs and makes a damage area outside the visible rect. Then switch FBs with damage area and there should not be any diff. Because FBC dirty update handle line wise, we need to ensure that any damage are update shouldnt trigger any screen update. So it is better to have the second FB in a different color. If the FBC dirty rect programming not working properly then it will update the visible part as well! create_fb(bigger_fb, green, fb1) create_fb(bigger_fb, blue, fb2) create a damage area rect as "rect1" outside visible area but withing the FB dimensions set_damage_area(primary, full_screen) set_fb_collect_crc(fb1, fb1_crc) Green screen now on screen. set_damage_area(primary, rect1) set_fb_collect_crc(fb1, fb2_crc) Now fb1 and fb2 crcs whould match as the damage area was out side the visible area. > +static void fbc_test_outside_region(data_t *data) > +{ > + struct igt_fb main_fb, rect_outside_fb; > + igt_pipe_crc_t *crc = data->pipe_crc; > + igt_plane_t *primary; > + igt_crc_t main_fb_crc, rect_outside_fb_crc; > + struct drm_mode_rect main_rect, rect_outside; > + > + prepare_test(data, data->output); > + > + igt_output_get_mode(data->output); > + igt_output_set_pipe(data->output, data->pipe); > + > + crc = igt_pipe_crc_new(data->drm_fd, data->pipe, IGT_PIPE_CRC_SOURCE_AUTO); > + primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY); > + > + // Set damage area outside the visible region > + set_damage_clip(&main_rect, 0, 0, data->mode->hdisplay - 1, > + data->mode->vdisplay - 1); > + set_damage_clip(&rect_outside, data->mode->hdisplay, data->mode->vdisplay, > + data->mode->hdisplay + SQUARE_OFFSET_OUT, > + data->mode->vdisplay + SQUARE_OFFSET_OUT); > + > + dirty_rect_create_fb(data, &main_fb, 0, NULL); > + dirty_rect_create_fb(data, &rect_outside_fb, 1, &rect_outside); > + > + set_and_check_crc(data, primary, crc, &main_fb, &main_rect, > + sizeof(main_rect), &main_fb_crc); > + set_and_check_crc(data, primary, crc, &rect_outside_fb, &rect_outside, > + sizeof(rect_outside), &rect_outside_fb_crc); > + > + // Verify that the CRC remains unchanged > + igt_assert_crc_equal(&main_fb_crc, &rect_outside_fb_crc); > + > + igt_plane_set_fb(primary, NULL); > + igt_remove_fb(data->drm_fd, &main_fb); > + igt_remove_fb(data->drm_fd, &rect_outside_fb); > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > +} > + > +static void fbc_dirty_rectangle_basic(data_t *data) > +{ > + prepare_test(data, NULL); > + return fbc_dirty_rectangle_complete_set(data); Probalby fbc_dirty_rectangle_complete_setfbc_dirty_rectangle_complete_set.. doesent make much sense. I guess you can use that as basic BR vinod > +} > + > +igt_main > +{ > + data_t data = {0}; > + int display_ver; > + > + igt_fixture { > + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); > + data.debugfs_fd = igt_debugfs_dir(data.drm_fd); > + data.feature = FEATURE_FBC; > + 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.format = DRM_FORMAT_XRGB8888; > + 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); > + igt_dynamic_f("%s-%s", > + kmstest_pipe_name(data.pipe), > + igt_output_name(data.output)) { > + fbc_dirty_rectangle_basic(&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); > + > + 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("%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(&data); > + } > + } > + } > + } > + } > + > + igt_subtest_with_dynamic("fbc-dirty-rectangle-outside-visible-region") { > + data.feature = FEATURE_FBC; > + data.format = DRM_FORMAT_XRGB8888; > + igt_require_f(display_ver >= 30, "FBC with dirty region is not supported\n"); > + > + 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); > + > + igt_dynamic_f("%s-%s-outside-visible-region", > + kmstest_pipe_name(data.pipe), > + igt_output_name(data.output)) { > + fbc_test_outside_region(&data); > + } > + } > + } > + } > + > + igt_fixture { > + igt_display_fini(&data.display); > + close(data.drm_fd); > + } > +} > diff --git a/tests/meson.build b/tests/meson.build > index 33dffad31..fde1078e3 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -251,6 +251,7 @@ intel_kms_progs = [ > 'kms_dsc', > 'kms_fb_coherency', > 'kms_fbcon_fbt', > + 'kms_fbc_dirty_rect', > 'kms_fence_pin_leak', > 'kms_flip_scaled_crc', > 'kms_flip_tiling', ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v7 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc 2025-02-03 12:12 ` Govindapillai, Vinod @ 2025-02-03 20:48 ` Govindapillai, Vinod 0 siblings, 0 replies; 8+ messages in thread From: Govindapillai, Vinod @ 2025-02-03 20:48 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Reddy Guddati, Santhosh Cc: Joshi, Kunal1, Naladala, Ramanaidu, Sharma, Swati2, B, Jeevan Hi Santhosh, One correction in my comments.. For the test which checks the FBC dirty update outside visible region, I suggested to have FBs with different bg color. But that won't work in CRC comparison. If the damage area is outside the visible region, HAS says we need to set start and end line as same in the FBC dirty rect registers (from the visible region). so this will cause one entire line being fetched from memory. So if you have a different background color, the crc comparison will fail. So instead you can have the same bg color for all the FBs, but paint a rect in a different color outside the visible region and update this region as damaged. Then this should be ok for our test purpose. BR Vinod On Mon, 2025-02-03 at 14:12 +0200, Govindapillai, Vinod wrote: > Hi Santhosh, > > Thanks for the update! But some part of the tests are not accurate now! > Please have a look at the comments inline. > > > On Mon, 2025-02-03 at 08:16 +0530, Santhosh Reddy Guddati wrote: > > - Introduce new test file kms_fbc_dirty_rect.c to verify > > DIRTYFB ioctl functionality with FBC enabled. > > - Added subtests for basic FBC dirty rectangle, different formats, > > and dirtyfb ioctl. > > - Update meson.build to include the new test. > > > > 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. > > > > Signed-off-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > > --- > > tests/intel/kms_fbc_dirty_rect.c | 324 +++++++++++++++++++++++++++++++ > > tests/meson.build | 1 + > > 2 files changed, 325 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..b72c98ed3 > > --- /dev/null > > +++ b/tests/intel/kms_fbc_dirty_rect.c > > @@ -0,0 +1,324 @@ > > +/* 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 "igt.h" > > +#include "i915/intel_fbc.h" > > + > > +/** > > + * SUBTEST: fbc-dirty-rectangle-basic > > + * Description: Sanity test to verify FBC DR by sending multiple damaged areas with non psr > > modes > > + * > > + * SUBTEST: fbc-dirty-rectangle-different-formats > > + * Description: Sanity test to verify FBC DR by sending multiple > > + * damaged areas with different formats. > > + * > > + * SUBTEST: fbc-dirty-rectangle-outside-visible-region > > + * Description: Test that FBC DR works with damage area outside the visible region > > + */ > > + > > +#define SQUARE_SIZE 100 > > +#define SQUARE_OFFSET 100 > > +#define SQUARE_OFFSET_2 600 > > +#define SQUARE_OFFSET_OUT 1000 > > + > > +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; > > + > > + > > +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_and_check_crc(data_t *data, igt_plane_t *primary, > > + igt_pipe_crc_t *pipe_crc, struct igt_fb *fb, > > + struct drm_mode_rect *rect, int rect_size, > > + igt_crc_t *expected_crc) > May be the name of this function should be set_fb_and_collect_crc()? > > > +{ > > + igt_plane_replace_prop_blob(primary, IGT_PLANE_FB_DAMAGE_CLIPS, rect, rect_size); > > Also I think it is better to get this damage clip as a separate function. something like > set_damage_area(plane, rects) and call it from out of this function. > > > + igt_plane_set_fb(primary, fb); > > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > > + igt_assert_f(intel_fbc_is_enabled(data->drm_fd, data->pipe, > > + IGT_LOG_WARN), "FBC is not enabled\n"); > > + igt_pipe_crc_collect_crc(pipe_crc, expected_crc); > > +} > > + > > +static void dirty_rect_create_fb(data_t *data, struct igt_fb *fb, int nrects, > > + struct drm_mode_rect *rect) > > +{ > > + cairo_t *cr; > > + > > + igt_info("Creating framebuffer with %d damaged areas format %s\n", > > + nrects, igt_format_str(data->format)); > > + igt_create_color_fb(data->drm_fd, data->mode->hdisplay, data->mode->vdisplay, > > + data->format, DRM_FORMAT_MOD_LINEAR, > > + 0.0, 0.0, 1.0, fb); > Wonder if you can pass color as a parameter and create the fb with color passed and not always > blue. > This would be handy in the case where we check the damage area outside the visible rect wont cause > any crc mismatches. more details as part of that test. > > Also we need to a create a big FB. So need to pass FB width and height as parameter. > > > + > > + 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); > > +} > > + > > Some explanation of what this test does should be good. > > First a series of screens are drawn as full screen updates and crc's are collected. These crc's > act > as reference crcs. Then screens are updated using the FBC dirty rect feature and compared with > these > reference crcs. If the crcs match, the test is successful. > > 1. Full blue screen - main_fb, main_fb_crc > 2. A white square on upper left on blue screen as full screen update - rect1_fb, > rect_fb_rect1_fb_crc > 3. A second white square at bit lower of the first rect on blue screen as a full screen update - > rect2_fb, rect2_fb_crc > 4. Both the rects are drawn on the blue screen as full screen update - rect_combined_fb, > rect_combined_fb_crc > > These above are all full screen updates to collect reference crcs. Now we attempt updating the > screen with FBC dirty rect. > > 1. Full blue screen > 2. Set rect_combine_fb with damage area update - damage area are provided as rects. After this the > crc should match with crc collected before rect_combined_fb-crc. > 3. Now clear the area of the first rect as a dirty rect update. Use the main_fb and damage area as > the rect1 coordinates. After this the crc should match rect2_fb_crc > 4. Now clear the area of the second rect as a dirty rect update. Use main_fb and damage area as > the > rect2 coordinates. After this crc should match main_fb_crc > > This is just a basic explanation of what this does. So some better explanation would be useful . > > > +static void fbc_dirty_rectangle_complete_set(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_1_fb, rect_2_fb, rect_combined_fb; > > + struct drm_mode_rect rect1, rect2, rect_combined[2], 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); > > + rect_combined[0] = rect1; > > + rect_combined[1] = rect2; > > + > > + dirty_rect_create_fb(data, &main_fb, 0, NULL); > > + dirty_rect_create_fb(data, &rect_1_fb, 1, &rect1); > > + dirty_rect_create_fb(data, &rect_2_fb, 1, &rect2); > > + dirty_rect_create_fb(data, &rect_combined_fb, 2, rect_combined); > > + > > + /* main_fb blank blue screen - get and store crc */ > > + set_and_check_crc(data, primary, pipe_crc, &main_fb, &full_rect, > > + sizeof(full_rect), &main_fb_crc); > set_damage_area(primary, full_rect) > set_fb_collect_crc(...) > > > + > > + /* Whole blue screen with one white rect and collect crc */ > > + set_and_check_crc(data, primary, pipe_crc, &rect_1_fb, &full_rect, > > + sizeof(full_rect), &rect_1_fb_crc); > > + > > + /* Second white rect and collect crc */ > > + set_and_check_crc(data, primary, pipe_crc, &rect_2_fb, &full_rect, > > + sizeof(full_rect), &rect_2_fb_crc); > > + > > + /* Both rects and collect crc */ > > + set_and_check_crc(data, primary, pipe_crc, &rect_combined_fb, &full_rect, > > + sizeof(full_rect), &rect_combined_fb_crc); > > + > > + /* Put full blank screen back */ > > + set_and_check_crc(data, primary, pipe_crc, &main_fb, &full_rect, > > + sizeof(full_rect), &crc); > > + igt_assert_crc_equal(&crc, &main_fb_crc); > > + > > + /* Set combined rect - draw two white rects using damage area */ > > + set_and_check_crc(data, primary, pipe_crc, &rect_combined_fb, rect_combined, > > + sizeof(rect_combined), &crc); > > + igt_assert_crc_equal(&crc, &rect_combined_fb_crc); > set_damage_area(primary, combined_rect) > set_fb_and_collect_crc(.. rect_combine_fb) > > > + > > + /* Clear first rect. Only the second rect should be visible here! */ > > + igt_plane_set_fb(primary, &rect_2_fb); > > + igt_display_commit2(display, COMMIT_ATOMIC); > This is not correct. This basically becomes a full screen update for rect2_fb and make this > damage > area check useless. > > > + set_and_check_crc(data, primary, pipe_crc, &rect_2_fb, &rect1, > > + sizeof(rect1), &crc); > > + igt_assert_crc_equal(&crc, &rect_2_fb_crc); > Better to clear using the main fb. > > This should be something like this... > set_damage_area(primary, rect1) > set_fb_collect_crc(... main_fb, crc) > igt_assert_crc_equal(&crc, &rect_2_fb_crc); > > > > + > > + /* Clear the second rect as well. Only the first rect should be visible here */ > Not correct. The first rect is already gone as part of the previous case. No rects after this. > > > + igt_plane_set_fb(primary, &rect_1_fb); > > + igt_display_commit2(display, COMMIT_ATOMIC); > same as before.. not correct. This basically becomes a full screen update for rect_1_fb and make > this damage area check useless. > > > + set_and_check_crc(data, primary, pipe_crc, &rect_1_fb, &rect2, > > + sizeof(rect2), &crc); > > + igt_assert_crc_equal(&crc, &rect_1_fb_crc); > > both rects are gone. same comments are before! > > set_damage_area(primary, rect2) > set_fb_collect_crc(... main_fb, 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); > > + > > +} > > + > > Some explanation would be useful. Here the test should create bigger FBs and makes a damage area > outside the visible rect. Then switch FBs with damage area and there should not be any diff. > Because > FBC dirty update handle line wise, we need to ensure that any damage are update shouldnt trigger > any > screen update. So it is better to have the second FB in a different color. If the FBC dirty rect > programming not working properly then it will update the visible part as well! > > create_fb(bigger_fb, green, fb1) > create_fb(bigger_fb, blue, fb2) > create a damage area rect as "rect1" outside visible area but withing the FB dimensions > > set_damage_area(primary, full_screen) > set_fb_collect_crc(fb1, fb1_crc) > > Green screen now on screen. > > set_damage_area(primary, rect1) > set_fb_collect_crc(fb1, fb2_crc) > > Now fb1 and fb2 crcs whould match as the damage area was out side the visible area. > > > +static void fbc_test_outside_region(data_t *data) > > +{ > > + struct igt_fb main_fb, rect_outside_fb; > > + igt_pipe_crc_t *crc = data->pipe_crc; > > + igt_plane_t *primary; > > + igt_crc_t main_fb_crc, rect_outside_fb_crc; > > + struct drm_mode_rect main_rect, rect_outside; > > + > > + prepare_test(data, data->output); > > + > > + igt_output_get_mode(data->output); > > + igt_output_set_pipe(data->output, data->pipe); > > + > > + crc = igt_pipe_crc_new(data->drm_fd, data->pipe, IGT_PIPE_CRC_SOURCE_AUTO); > > + primary = igt_output_get_plane_type(data->output, DRM_PLANE_TYPE_PRIMARY); > > + > > + // Set damage area outside the visible region > > + set_damage_clip(&main_rect, 0, 0, data->mode->hdisplay - 1, > > + data->mode->vdisplay - 1); > > + set_damage_clip(&rect_outside, data->mode->hdisplay, data->mode->vdisplay, > > + data->mode->hdisplay + SQUARE_OFFSET_OUT, > > + data->mode->vdisplay + SQUARE_OFFSET_OUT); > > + > > + dirty_rect_create_fb(data, &main_fb, 0, NULL); > > + dirty_rect_create_fb(data, &rect_outside_fb, 1, &rect_outside); > > + > > + set_and_check_crc(data, primary, crc, &main_fb, &main_rect, > > + sizeof(main_rect), &main_fb_crc); > > + set_and_check_crc(data, primary, crc, &rect_outside_fb, &rect_outside, > > + sizeof(rect_outside), &rect_outside_fb_crc); > > + > > + // Verify that the CRC remains unchanged > > + igt_assert_crc_equal(&main_fb_crc, &rect_outside_fb_crc); > > + > > + igt_plane_set_fb(primary, NULL); > > + igt_remove_fb(data->drm_fd, &main_fb); > > + igt_remove_fb(data->drm_fd, &rect_outside_fb); > > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > > +} > > + > > +static void fbc_dirty_rectangle_basic(data_t *data) > > +{ > > + prepare_test(data, NULL); > > + return fbc_dirty_rectangle_complete_set(data); > Probalby fbc_dirty_rectangle_complete_setfbc_dirty_rectangle_complete_set.. doesent make much > sense. > I guess you can use that as basic > > BR > vinod > > +} > > + > > +igt_main > > +{ > > + data_t data = {0}; > > + int display_ver; > > + > > + igt_fixture { > > + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); > > + data.debugfs_fd = igt_debugfs_dir(data.drm_fd); > > + data.feature = FEATURE_FBC; > > + 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.format = DRM_FORMAT_XRGB8888; > > + 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); > > + igt_dynamic_f("%s-%s", > > + kmstest_pipe_name(data.pipe), > > + igt_output_name(data.output)) { > > + fbc_dirty_rectangle_basic(&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); > > + > > + 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("%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(&data); > > + } > > + } > > + } > > + } > > + } > > + > > + igt_subtest_with_dynamic("fbc-dirty-rectangle-outside-visible-region") { > > + data.feature = FEATURE_FBC; > > + data.format = DRM_FORMAT_XRGB8888; > > + igt_require_f(display_ver >= 30, "FBC with dirty region is not supported\n"); > > + > > + 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); > > + > > + igt_dynamic_f("%s-%s-outside-visible-region", > > + kmstest_pipe_name(data.pipe), > > + igt_output_name(data.output)) { > > + fbc_test_outside_region(&data); > > + } > > + } > > + } > > + } > > + > > + igt_fixture { > > + igt_display_fini(&data.display); > > + close(data.drm_fd); > > + } > > +} > > diff --git a/tests/meson.build b/tests/meson.build > > index 33dffad31..fde1078e3 100644 > > --- a/tests/meson.build > > +++ b/tests/meson.build > > @@ -251,6 +251,7 @@ intel_kms_progs = [ > > 'kms_dsc', > > 'kms_fb_coherency', > > 'kms_fbcon_fbt', > > + 'kms_fbc_dirty_rect', > > 'kms_fence_pin_leak', > > 'kms_flip_scaled_crc', > > 'kms_flip_tiling', > ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev7) 2025-02-03 2:46 [PATCH i-g-t v7 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test Santhosh Reddy Guddati 2025-02-03 2:46 ` [PATCH i-g-t v7 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc Santhosh Reddy Guddati @ 2025-02-03 3:36 ` Patchwork 2025-02-03 3:49 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-02-03 3:36 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 804 bytes --] == Series Details == Series: RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev7) URL : https://patchwork.freedesktop.org/series/138218/ State : success == Summary == CI Bug Log - changes from XEIGT_8220_BAT -> XEIGTPW_12532_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8220 -> IGTPW_12532 IGTPW_12532: 12532 IGT_8220: 8220 xe-2584-01f54d1da1ffffff78047186f62b5916dfd43939: 01f54d1da1ffffff78047186f62b5916dfd43939 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/index.html [-- Attachment #2: Type: text/html, Size: 1349 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev7) 2025-02-03 2:46 [PATCH i-g-t v7 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test Santhosh Reddy Guddati 2025-02-03 2:46 ` [PATCH i-g-t v7 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc Santhosh Reddy Guddati 2025-02-03 3:36 ` ✓ Xe.CI.BAT: success for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev7) Patchwork @ 2025-02-03 3:49 ` Patchwork 2025-02-03 4:40 ` ✗ Xe.CI.Full: failure " Patchwork 2025-02-03 5:27 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-02-03 3:49 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6863 bytes --] == Series Details == Series: RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev7) URL : https://patchwork.freedesktop.org/series/138218/ State : success == Summary == CI Bug Log - changes from IGT_8220 -> IGTPW_12532 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): bat-adlp-9 Missing (2): bat-jsl-1 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12532: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@guc_hang: - {bat-mtlp-9}: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-mtlp-9/igt@i915_selftest@live@guc_hang.html New tests --------- New tests have been introduced between IGT_8220 and IGTPW_12532: ### New IGT tests (1) ### * igt@i915_selftest@live@gt_tlb: - Statuses : 37 pass(s) - Exec time: [1.62, 11.83] s Known issues ------------ Here are the changes found in IGTPW_12532 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adlp-9: NOTRUN -> [SKIP][2] ([i915#9318]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-adlp-9/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adlp-9: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-adlp-9/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - bat-adlp-9: NOTRUN -> [SKIP][4] ([i915#3282]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-adlp-9/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-adlp-9: NOTRUN -> [SKIP][5] ([i915#6621]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-adlp-9/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live: - bat-twl-1: [PASS][6] -> [ABORT][7] ([i915#12919] / [i915#13503]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/bat-twl-1/igt@i915_selftest@live.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-twl-1/igt@i915_selftest@live.html * igt@i915_selftest@live@requests: - bat-twl-1: [PASS][8] -> [ABORT][9] ([i915#12919]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/bat-twl-1/igt@i915_selftest@live@requests.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-twl-1/igt@i915_selftest@live@requests.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adlp-9: NOTRUN -> [SKIP][10] ([i915#4103]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-adlp-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-adlp-9: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-adlp-9/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adlp-9: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-adlp-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-adlp-9: NOTRUN -> [SKIP][13] ([i915#9812]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-adlp-9/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - bat-adlp-9: NOTRUN -> [SKIP][14] ([i915#1072] / [i915#9732]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-adlp-9/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlp-9: NOTRUN -> [SKIP][15] ([i915#3555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-adlp-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-adlp-9: NOTRUN -> [SKIP][16] ([i915#3291] / [i915#3708]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-adlp-9/igt@prime_vgem@basic-fence-read.html * igt@runner@aborted: - fi-pnv-d510: NOTRUN -> [FAIL][17] ([i915#13350]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/fi-pnv-d510/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live: - bat-adlp-6: [ABORT][18] ([i915#13399]) -> [PASS][19] +1 other test pass [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/bat-adlp-6/igt@i915_selftest@live.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/bat-adlp-6/igt@i915_selftest@live.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13350 [i915#13399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13399 [i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503 [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#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8220 -> IGTPW_12532 CI-20190529: 20190529 CI_DRM_16053: 01f54d1da1ffffff78047186f62b5916dfd43939 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12532: 12532 IGT_8220: 8220 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/index.html [-- Attachment #2: Type: text/html, Size: 7968 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev7) 2025-02-03 2:46 [PATCH i-g-t v7 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test Santhosh Reddy Guddati ` (2 preceding siblings ...) 2025-02-03 3:49 ` ✓ i915.CI.BAT: " Patchwork @ 2025-02-03 4:40 ` Patchwork 2025-02-03 5:27 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-02-03 4:40 UTC (permalink / raw) To: Santhosh Reddy Guddati; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 76250 bytes --] == Series Details == Series: RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev7) URL : https://patchwork.freedesktop.org/series/138218/ State : failure == Summary == CI Bug Log - changes from XEIGT_8220_full -> XEIGTPW_12532_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12532_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12532_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_12532_full: ### IGT changes ### #### Possible regressions #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-4: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-4.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * {igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][5] +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic.html - shard-lnl: NOTRUN -> [SKIP][6] +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic.html * {igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-outside-visible-region} (NEW): - shard-bmg: NOTRUN -> [SKIP][7] +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-outside-visible-region.html * igt@kms_flip@2x-wf_vblank-ts-check@ad-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][8] +2 other tests fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@kms_flip@2x-wf_vblank-ts-check@ad-hdmi-a2-dp2.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-dg2-set2: [PASS][9] -> [FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-434/igt@kms_pm_rpm@basic-pci-d3-state.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [PASS][11] -> [ABORT][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-463/igt@xe_module_load@reload-no-display.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-434/igt@xe_module_load@reload-no-display.html * igt@xe_query@query-cs-cycles: - shard-bmg: [PASS][13] -> [FAIL][14] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-8/igt@xe_query@query-cs-cycles.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@xe_query@query-cs-cycles.html #### Warnings #### * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg2-set2: [DMESG-WARN][15] ([Intel XE#1033]) -> [FAIL][16] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-463/igt@kms_flip@2x-wf_vblank-ts-check.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@kms_flip@2x-wf_vblank-ts-check.html New tests --------- New tests have been introduced between XEIGT_8220_full and XEIGTPW_12532_full: ### New IGT tests (3) ### * 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 : 3 skip(s) - Exec time: [0.0] s * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-outside-visible-region: - Statuses : 3 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_12532_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [PASS][17] -> [FAIL][18] ([Intel XE#911]) +3 other tests fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#3768]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3279]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-2: - shard-bmg: [PASS][21] -> [FAIL][22] ([Intel XE#3908]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-2.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-2.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#316]) +7 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2327]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1407]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180: - shard-bmg: NOTRUN -> [DMESG-WARN][26] ([Intel XE#4172]) +4 other tests dmesg-warn [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +5 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#607]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +20 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1477]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#610]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2314] / [Intel XE#2894]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#2191]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2314] / [Intel XE#2894]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#367]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +8 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-5/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#455] / [Intel XE#787]) +56 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#2907]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-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][42] ([Intel XE#787]) +237 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/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-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2652] / [Intel XE#787]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#306]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-434/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@gamma: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2325]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-2/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#373]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-4/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2252]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#373]) +15 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#307]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-dg2-set2: NOTRUN -> [FAIL][50] ([Intel XE#1178]) +1 other test fail [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][51] ([Intel XE#4132]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@srm: - shard-bmg: NOTRUN -> [FAIL][52] ([Intel XE#1178]) +4 other tests fail [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-2/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2320]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1424]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-7/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2321]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#308]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#309]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-1/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][58] -> [SKIP][59] ([Intel XE#2291]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#323]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1508]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1508]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic@pipe-b-hdmi-a-3-pipe-c-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][63] ([Intel XE#877]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-2/igt@kms_display_modes@extended-mode-basic@pipe-b-hdmi-a-3-pipe-c-dp-2.html * igt@kms_fbcon_fbt@fbc: - shard-dg2-set2: [PASS][64] -> [DMESG-FAIL][65] ([Intel XE#1033]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-466/igt@kms_fbcon_fbt@fbc.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#776]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#776]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2372]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_feature_discovery@chamelium.html - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#701]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#703]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-8/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1138]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1135]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-dpms: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2316]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][74] ([Intel XE#3321]) +2 other tests fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][75] ([Intel XE#301]) +3 other tests fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][76] ([Intel XE#1033]) +1 other test dmesg-fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1421]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-7/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-suspend: - shard-dg2-set2: [PASS][78] -> [ABORT][79] ([Intel XE#2625]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-434/igt@kms_flip@2x-flip-vs-suspend.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [ABORT][80] ([Intel XE#2625]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend@cd-hdmi-a2-dp2.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][81] -> [SKIP][82] ([Intel XE#2316]) +8 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@dpms-off-confusion-interruptible@d-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][83] ([Intel XE#1033]) +9 other tests dmesg-warn [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_flip@dpms-off-confusion-interruptible@d-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6: - shard-dg2-set2: [PASS][84] -> [FAIL][85] ([Intel XE#301]) +2 other tests fail [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3: - shard-bmg: [PASS][86] -> [FAIL][87] ([Intel XE#3321]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2: - shard-bmg: [PASS][88] -> [FAIL][89] ([Intel XE#2882]) +5 other tests fail [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#886]) +6 other tests fail [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_flip@wf_vblank-ts-check: - shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#3149] / [Intel XE#886]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-lnl-2/igt@kms_flip@wf_vblank-ts-check.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1401]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2293]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#455]) +31 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2311]) +12 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#651]) +53 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#4141]) +5 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc: - shard-dg2-set2: [PASS][102] -> [DMESG-WARN][103] ([Intel XE#1033]) +23 other tests dmesg-warn [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#656]) +17 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#651]) +4 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#653]) +47 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2313]) +13 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1158]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-lnl: [PASS][109] -> [INCOMPLETE][110] ([Intel XE#2050]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2312]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_getfb@getfb2-accept-ccs: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2340]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-2/igt@kms_getfb@getfb2-accept-ccs.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#4090]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#356]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][115] ([Intel XE#616]) +2 other tests fail [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][116] -> [FAIL][117] ([Intel XE#616]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-436/igt@kms_plane_cursor@viewport.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_plane_cursor@viewport.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][118] ([Intel XE#4212]) +2 other tests dmesg-warn [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/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][120] ([Intel XE#2763]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2763]) +9 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#870]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1129]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#3309]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#908]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2499]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1439] / [Intel XE#836]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#1489]) +13 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#2893]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#1489]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#1122]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2850] / [Intel XE#929]) +27 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1406]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-8/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2939]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1127]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#3414]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2413]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [PASS][140] -> [FAIL][141] ([Intel XE#2883]) +2 other tests fail [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@basic@pipe-b-hdmi-a-2-pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][142] ([Intel XE#2883]) +6 other tests fail [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@kms_setmode@basic@pipe-b-hdmi-a-2-pipe-a-dp-2.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#1500]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#330]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [PASS][145] -> [FAIL][146] ([Intel XE#899]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vrr@max-min: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#1499]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-5/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-invalid-parameters: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#756]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-7/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#756]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-434/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1091] / [Intel XE#2849]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-8/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#1091] / [Intel XE#2849]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#1123]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#1126]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2504]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-7/igt@xe_create@multigpu-create-massive-size.html * igt@xe_drm_fdinfo@utilization-single-full-load-isolation: - shard-bmg: [PASS][155] -> [DMESG-WARN][156] ([Intel XE#4172]) +42 other tests dmesg-warn [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-8/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html * igt@xe_eudebug@basic-vm-bind-ufence-sigint-client: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#3889]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html * igt@xe_eudebug@discovery-race-vmbind: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2905]) +5 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@xe_eudebug@discovery-race-vmbind.html * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#2905]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-3/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#688]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-6/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1392]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html * igt@xe_exec_basic@multigpu-no-exec-null: - shard-dg2-set2: [PASS][162] -> [SKIP][163] ([Intel XE#1392]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-null.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null.html * igt@xe_exec_basic@multigpu-once-basic-defer-bind: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2322]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#1392]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html * igt@xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#288]) +40 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#2360]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_exec_sip_eudebug@breakpoint-waitsip: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#2905]) +16 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2229]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-5/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][170] -> [SKIP][171] ([Intel XE#1192]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-7/igt@xe_live_ktest@xe_dma_buf.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_mmap@pci-membarrier: - shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#4045]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-2/igt@xe_mmap@pci-membarrier.html * igt@xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#512]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@xe_mmap@small-bar.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#2541] / [Intel XE#3573]) +13 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#1420]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@xe_pat@pat-index-xehpc.html - shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#2838] / [Intel XE#979]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#979]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][178] ([Intel XE#1173]) +1 other test fail [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#2284] / [Intel XE#366]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-6/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#2284]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@xe_pm@s2idle-d3cold-basic-exec.html - shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s2idle-d3hot-basic-exec: - shard-dg2-set2: [PASS][182] -> [ABORT][183] ([Intel XE#1358]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-466/igt@xe_pm@s2idle-d3hot-basic-exec.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@xe_pm@s2idle-d3hot-basic-exec.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-bmg: [PASS][184] -> [DMESG-WARN][185] ([Intel XE#4172] / [Intel XE#569]) +2 other tests dmesg-warn [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-4/igt@xe_pm@s3-d3hot-basic-exec.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@xe_pm@s3-d3hot-basic-exec.html - shard-dg2-set2: NOTRUN -> [ABORT][186] ([Intel XE#1033] / [Intel XE#1358] / [Intel XE#1794]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@s3-exec-after: - shard-bmg: NOTRUN -> [DMESG-WARN][187] ([Intel XE#4172] / [Intel XE#569]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@xe_pm@s3-exec-after.html * igt@xe_pm@s3-vm-bind-userptr: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][188] ([Intel XE#1033] / [Intel XE#569]) +1 other test dmesg-warn [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@xe_pm@s3-vm-bind-userptr.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#579]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-oa-units: - shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#944]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@xe_query@multigpu-query-oa-units.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#944]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-4/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#4130]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-2/igt@xe_sriov_auto_provisioning@fair-allocation.html - shard-dg2-set2: NOTRUN -> [SKIP][193] ([Intel XE#4130]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][194] ([Intel XE#3342]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: NOTRUN -> [ABORT][195] ([Intel XE#3075] / [Intel XE#3084]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][196] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_cursor_crc@cursor-suspend: - shard-dg2-set2: [ABORT][198] ([Intel XE#1033] / [Intel XE#2625] / [Intel XE#4083]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-432/igt@kms_cursor_crc@cursor-suspend.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-434/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-bmg: [SKIP][200] ([Intel XE#2291]) -> [PASS][201] +3 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-bmg: [DMESG-WARN][202] ([Intel XE#4172]) -> [PASS][203] +18 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3: - shard-bmg: [FAIL][204] ([Intel XE#2882]) -> [PASS][205] +2 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-7/igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-7/igt@kms_flip@2x-blocking-wf_vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [SKIP][206] ([Intel XE#2316]) -> [PASS][207] +3 other tests pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][208] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-1/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@c-edp1: - shard-lnl: [FAIL][210] ([Intel XE#886]) -> [PASS][211] +2 other tests pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-lnl-5/igt@kms_flip@blocking-wf_vblank@c-edp1.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-1/igt@kms_flip@blocking-wf_vblank@c-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: - shard-bmg: [FAIL][212] ([Intel XE#3321]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html * igt@kms_flip@flip-vs-expired-vblank@b-dp4: - shard-dg2-set2: [FAIL][214] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@b-dp4.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6: - shard-dg2-set2: [FAIL][216] ([Intel XE#301]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3: - shard-bmg: [INCOMPLETE][218] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][220] ([Intel XE#2571]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][222] ([Intel XE#718]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [SKIP][224] ([Intel XE#1435]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][226] ([Intel XE#2159]) -> [PASS][227] +1 other test pass [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-dg2-set2: [SKIP][228] ([Intel XE#1392]) -> [PASS][229] +2 other tests pass [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt@xe_pm@s2idle-exec-after: - shard-dg2-set2: [ABORT][230] ([Intel XE#1358]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-432/igt@xe_pm@s2idle-exec-after.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][232] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-466/igt@xe_pm@s3-basic-exec.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-bmg: [DMESG-WARN][234] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][235] +1 other test pass [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-5/igt@xe_pm@s3-vm-bind-prefetch.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_copy: - shard-dg2-set2: [DMESG-WARN][236] ([Intel XE#1033]) -> [PASS][237] +27 other tests pass [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-463/igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_copy.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@xe_pm_residency@idle-residency-on-exec@gt0-engine-drm_xe_engine_class_copy.html #### Warnings #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-bmg: [DMESG-WARN][238] ([Intel XE#4172]) -> [FAIL][239] ([Intel XE#3908]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_content_protection@legacy: - shard-bmg: [SKIP][240] ([Intel XE#2341]) -> [FAIL][241] ([Intel XE#1178]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-6/igt@kms_content_protection@legacy.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][242] ([Intel XE#1178]) -> [SKIP][243] ([Intel XE#2341]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-8/igt@kms_content_protection@lic-type-0.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@uevent: - shard-bmg: [FAIL][244] ([Intel XE#1188]) -> [SKIP][245] ([Intel XE#2341]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-4/igt@kms_content_protection@uevent.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_content_protection@uevent.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][246] ([Intel XE#877]) -> [SKIP][247] ([Intel XE#2291]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][248] ([Intel XE#2425]) -> [DMESG-WARN][249] ([Intel XE#877]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2-set2: [INCOMPLETE][250] ([Intel XE#1033]) -> [DMESG-FAIL][251] ([Intel XE#1033]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-463/igt@kms_fbcon_fbt@fbc-suspend.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [SKIP][252] ([Intel XE#2316]) -> [DMESG-FAIL][253] ([Intel XE#4172]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4: - shard-dg2-set2: [DMESG-FAIL][254] ([Intel XE#1033]) -> [FAIL][255] ([Intel XE#301]) +1 other test fail [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][256] ([Intel XE#2049] / [Intel XE#2597]) -> [DMESG-WARN][257] ([Intel XE#4172]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][258] ([Intel XE#2312]) -> [SKIP][259] ([Intel XE#2311]) +15 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][260] ([Intel XE#2311]) -> [SKIP][261] ([Intel XE#2312]) +13 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][262] ([Intel XE#4141]) -> [SKIP][263] ([Intel XE#2312]) +5 other tests skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][264] ([Intel XE#2312]) -> [SKIP][265] ([Intel XE#4141]) +12 other tests skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2-set2: [ABORT][266] ([Intel XE#2625]) -> [DMESG-WARN][267] ([Intel XE#1033]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-suspend.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][268] ([Intel XE#2312]) -> [SKIP][269] ([Intel XE#2313]) +11 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][270] ([Intel XE#2313]) -> [SKIP][271] ([Intel XE#2312]) +12 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][272] ([Intel XE#3544]) -> [SKIP][273] ([Intel XE#3374] / [Intel XE#3544]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html * igt@testdisplay: - shard-dg2-set2: [DMESG-WARN][274] ([Intel XE#2705] / [Intel XE#4212]) -> [DMESG-WARN][275] ([Intel XE#1033] / [Intel XE#2705] / [Intel XE#4212]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-434/igt@testdisplay.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-436/igt@testdisplay.html * igt@xe_peer2peer@write: - shard-dg2-set2: [FAIL][276] ([Intel XE#1173]) -> [SKIP][277] ([Intel XE#1061]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-436/igt@xe_peer2peer@write.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@xe_peer2peer@write.html * igt@xe_pm@s4-exec-after: - shard-dg2-set2: [DMESG-WARN][278] ([Intel XE#1033]) -> [ABORT][279] ([Intel XE#1358]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8220/shard-dg2-466/igt@xe_pm@s4-exec-after.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/shard-dg2-432/igt@xe_pm@s4-exec-after.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#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#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [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#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [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#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [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#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [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#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#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [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#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#4045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4045 [Intel XE#4083]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4083 [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4132]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4132 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8220 -> IGTPW_12532 IGTPW_12532: 12532 IGT_8220: 8220 xe-2584-01f54d1da1ffffff78047186f62b5916dfd43939: 01f54d1da1ffffff78047186f62b5916dfd43939 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12532/index.html [-- Attachment #2: Type: text/html, Size: 89392 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev7) 2025-02-03 2:46 [PATCH i-g-t v7 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test Santhosh Reddy Guddati ` (3 preceding siblings ...) 2025-02-03 4:40 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-02-03 5:27 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2025-02-03 5:27 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 (rev7) URL : https://patchwork.freedesktop.org/series/138218/ State : failure == Summary == CI Bug Log - changes from IGT_8220_full -> IGTPW_12532_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12532_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12532_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_12532/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12532_full: ### IGT changes ### #### Possible regressions #### * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic (NEW): - shard-mtlp: NOTRUN -> [SKIP][1] +2 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats (NEW): - shard-tglu: NOTRUN -> [SKIP][2] +2 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html - {shard-dg2-9}: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * {igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-outside-visible-region} (NEW): - shard-rkl: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-outside-visible-region.html - shard-dg1: NOTRUN -> [SKIP][5] +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-17/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-outside-visible-region.html New tests --------- New tests have been introduced between IGT_8220_full and IGTPW_12532_full: ### New IGT tests (4) ### * igt@i915_selftest@live@gt_tlb: - Statuses : 6 pass(s) - Exec time: [1.55, 10.11] s * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-basic: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-outside-visible-region: - Statuses : 5 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_12532_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#6230]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-12/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-7/igt@api_intel_bb@object-reloc-keep-cache.html * igt@debugfs_test@basic-hwmon: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#9318]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-6/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#11078]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-2/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][13] ([i915#11814] / [i915#11815] / [i915#9413]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +9 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@virtual-busy-idle: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8414]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-8/igt@drm_fdinfo@virtual-busy-idle.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#8414]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@drm_read@short-buffer-block: - shard-dg1: [PASS][17] -> [DMESG-WARN][18] ([i915#4423]) +2 other tests dmesg-warn [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-dg1-18/igt@drm_read@short-buffer-block.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-18/igt@drm_read@short-buffer-block.html * igt@gem_bad_reloc@negative-reloc: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#3281]) +9 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@gem_bad_reloc@negative-reloc.html * igt@gem_caching@writes: - shard-rkl: [PASS][20] -> [DMESG-WARN][21] ([i915#12917] / [i915#12964]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-rkl-3/igt@gem_caching@writes.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-3/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-7/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#13008]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@gem_ccs@large-ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#13008]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-12/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#7697]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@gem_close_race@multigpu-basic-threads.html - shard-rkl: NOTRUN -> [SKIP][27] ([i915#7697]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#6335]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-8/igt@gem_create@create-ext-cpu-access-big.html - shard-rkl: NOTRUN -> [SKIP][29] ([i915#6335]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_cs_tlb@engines@rcs0: - shard-rkl: [PASS][30] -> [DMESG-WARN][31] ([i915#12964]) +48 other tests dmesg-warn [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-rkl-1/igt@gem_cs_tlb@engines@rcs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-3/igt@gem_cs_tlb@engines@rcs0.html * igt@gem_ctx_freq@sysfs: - shard-dg2: [PASS][32] -> [FAIL][33] ([i915#9561]) +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-dg2-5/igt@gem_ctx_freq@sysfs.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-3/igt@gem_ctx_freq@sysfs.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: [PASS][34] -> [INCOMPLETE][35] ([i915#12353]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-glk7/igt@gem_ctx_isolation@preservation-s3@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][36] ([i915#1099]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-snb7/igt@gem_ctx_persistence@engines-mixed-process.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#8555]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#280]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-4/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#280]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#280]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-8/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-internal-10ms: - shard-mtlp: [PASS][41] -> [ABORT][42] ([i915#13193]) +5 other tests abort [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-mtlp-8/igt@gem_eio@in-flight-internal-10ms.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-7/igt@gem_eio@in-flight-internal-10ms.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][43] ([i915#13390]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk2/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4771]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4525]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4525]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@gem_exec_balancer@parallel-out-fence.html - shard-tglu: NOTRUN -> [SKIP][47] ([i915#4525]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-7/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][48] ([i915#11965]) +1 other test fail [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-4/igt@gem_exec_capture@capture.html * igt@gem_exec_capture@capture-invisible: - shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#6334]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_fence@concurrent: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-1/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-3/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-17/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_parallel@userptr@vecs0: - shard-rkl: NOTRUN -> [DMESG-WARN][53] ([i915#12964]) +11 other tests dmesg-warn [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-7/igt@gem_exec_parallel@userptr@vecs0.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-scanout: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3281]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-6/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#3281]) +12 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_schedule@reorder-wide: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4812]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-18/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-7/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-8/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#2190]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-4/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-2/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#4613]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-4/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#4613]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][66] ([i915#4613]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk7/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-6/igt@gem_madvise@dontneed-before-exec.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#284]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +8 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@gem_mmap@bad-object.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-3/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4077]) +8 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-5/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-7/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-2/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#3282]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-18/igt@gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk3/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) +6 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@gem_pwrite@basic-self.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][77] ([i915#12964]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][78] ([i915#12917] / [i915#12964]) +1 other test timeout [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html - shard-tglu-1: NOTRUN -> [SKIP][79] ([i915#13398]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +5 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190] / [i915#8428]) +6 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4079]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-8/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4079]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-7/igt@gem_set_tiling_vs_pwrite.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4077]) +10 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4079]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-18/igt@gem_tiled_pread_pwrite.html * igt@gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][88] ([i915#13263] / [i915#13449]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-snb5/igt@gem_tiled_swapping@non-threaded.html - shard-tglu: [PASS][89] -> [FAIL][90] ([i915#12941]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-tglu-8/igt@gem_tiled_swapping@non-threaded.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-7/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@coherency-sync: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#3297]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-12/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#3297]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4880]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#3281] / [i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-7/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#3297]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-2/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#3297]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-context: - shard-rkl: [PASS][99] -> [DMESG-FAIL][100] ([i915#12964]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#2527]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-12/igt@gen9_exec_parse@bb-large.html - shard-tglu: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-2/igt@gen9_exec_parse@bb-large.html - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#2856]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-6/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#2527]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-out: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#2527] / [i915#2856]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#2856]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-7/igt@gen9_exec_parse@bb-start-param.html * igt@i915_module_load@resize-bar: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#6412]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#8399]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-10/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#8399]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][110] -> [INCOMPLETE][111] ([i915#12455]) +1 other test incomplete [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [WARN][112] ([i915#2681]) +4 other tests warn [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle.html - shard-dg1: NOTRUN -> [FAIL][113] ([i915#3591]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-dg1: NOTRUN -> [FAIL][114] ([i915#12739] / [i915#3591]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][115] ([i915#12797]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk7/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#11681] / [i915#6621]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][117] ([i915#8346]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-6/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle-park: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#11681]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#11681]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-3/igt@i915_pm_rps@thresholds-park.html - shard-dg1: NOTRUN -> [SKIP][120] ([i915#11681]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@i915_pm_rps@thresholds-park.html * igt@i915_pm_sseu@full-enable: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#4387]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-6/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#6188]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-6/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#5723]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-8/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][124] ([i915#9311]) +1 other test dmesg-warn [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-3/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][125] ([i915#4817]) +1 other test incomplete [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk7/igt@i915_suspend@forcewake.html * igt@i915_suspend@sysfs-reader: - shard-rkl: NOTRUN -> [INCOMPLETE][126] ([i915#4817]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-5/igt@i915_suspend@sysfs-reader.html * igt@intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#7707]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-4/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4212]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4212]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][130] ([i915#12761]) +1 other test incomplete [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk9/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#8709]) +7 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#8709]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#12967]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#9531]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][135] ([i915#1769]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-snb: NOTRUN -> [SKIP][136] ([i915#1769]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg1: NOTRUN -> [FAIL][137] ([i915#5956]) +1 other test fail [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-12/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#5286]) +8 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#5286]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html - shard-dg1: NOTRUN -> [SKIP][140] ([i915#5286]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#5286]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-2/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5286]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][143] +13 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-8/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#3638]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5190]) +9 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#6187]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#5190]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#4538]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#6095]) +169 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#6095]) +84 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-4/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#12313]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#6095]) +44 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#12313]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#6095]) +156 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#12313]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#12313]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#6095]) +87 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#6095]) +12 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-4.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][160] ([i915#12796]) +1 other test incomplete [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6095]) +24 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-7/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html * igt@kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#11616] / [i915#7213]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-3/igt@kms_cdclk@mode-transition.html - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#3742]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#7213]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#4087]) +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +10 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-6/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][167] +11 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-3/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-read: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#7828]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-4/igt@kms_chamelium_edid@dp-edid-read.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +6 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-17/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +11 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-3/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +5 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-5/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#3116] / [i915#3299]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3116] / [i915#3299]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3299]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-4/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][176] ([i915#7173]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#9424]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#9424]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#7118]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-3/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#7118] / [i915#9424]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-4/igt@kms_content_protection@type1.html - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#7116] / [i915#9424]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-17/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][183] ([i915#1339] / [i915#7173]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#13049]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#13049]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#8814]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][187] -> [FAIL][188] ([i915#13566]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [PASS][189] -> [FAIL][190] ([i915#13566]) +3 other tests fail [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#13049]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#3555]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#13049]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8814]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3555]) +12 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#13049]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#13049]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-rkl: NOTRUN -> [FAIL][198] ([i915#13566]) +2 other tests fail [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#13046] / [i915#5354]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#9809]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-4/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#4103]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg1: NOTRUN -> [SKIP][202] ([i915#4103] / [i915#4213]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2: NOTRUN -> [SKIP][203] ([i915#4103] / [i915#4213]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic: - shard-glk: NOTRUN -> [FAIL][204] ([i915#2346]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk8/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#4103]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#9723]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][207] ([i915#9723]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#3555]) +4 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#8588]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#1769] / [i915#3555] / [i915#3804]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3804]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3804]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3555]) +5 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-2/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#8812]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#3840]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#3840]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#3840] / [i915#9053]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][220] ([i915#3840] / [i915#9053]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-10/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#3955]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html - shard-tglu: NOTRUN -> [SKIP][222] ([i915#3469]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-9/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#4854]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-18/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#1839]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-7/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#1839]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-8/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#9337]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-7/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#658]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-8/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#658]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#658]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-4/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3637]) +4 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-8/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [PASS][231] -> [FAIL][232] ([i915#11989]) +3 other tests fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-snb5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#3637]) +6 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-8/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][234] ([i915#12745] / [i915#4839]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][235] ([i915#4839]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#9934]) +6 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#9934]) +6 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-12/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#9934]) +5 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-8/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#3637]) +5 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-tglu: [PASS][240] -> [FAIL][241] ([i915#11989]) +5 other tests fail [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-tglu-10/igt@kms_flip@basic-flip-vs-wf_vblank.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-7/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#8381]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-8/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@plain-flip-fb-recreate: - shard-rkl: [PASS][243] -> [FAIL][244] ([i915#11989]) +1 other test fail [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#2672]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#2587] / [i915#2672] / [i915#3555]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][250] ([i915#2587] / [i915#2672] / [i915#3555]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#8813]) +5 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555] / [i915#5190]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-tglu: NOTRUN -> [SKIP][253] ([i915#2587] / [i915#2672] / [i915#3555]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555]) +6 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#2672] / [i915#3555]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#2587] / [i915#2672]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][258] ([i915#2587] / [i915#2672]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/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-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#2672]) +6 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8810] / [i915#8813]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8810]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555] / [i915#8813]) +7 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#1825]) +17 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#5354]) +23 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg2: [PASS][265] -> [FAIL][266] ([i915#6880]) +1 other test fail [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#8708]) +25 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][268] ([i915#10056] / [i915#13353]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#5439]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#3458]) +13 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][271] +28 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#1825]) +45 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#8708]) +21 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][274] +46 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][275] +89 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#10433] / [i915#3458]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#10055]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#9766]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-17/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][279] +49 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#8708]) +5 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#3023]) +29 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#3458]) +20 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#6118]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-4/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8228]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#8228]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8228]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-9/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [PASS][287] -> [SKIP][288] ([i915#3555] / [i915#8228]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-12/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#10656]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#12388]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-8/igt@kms_joiner@basic-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][292] ([i915#12388]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#12394]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-4/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#12339]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#12339]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#12339]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][297] ([i915#12339]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#13522]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#13522]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][300] ([i915#13522]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#6301]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#6301]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][303] ([i915#6301]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][304] ([i915#12756] / [i915#13409] / [i915#13476]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][305] ([i915#13409] / [i915#13476]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][306] ([i915#12178]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk6/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][307] ([i915#7862]) +1 other test fail [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk6/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#3555]) +7 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-5/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#3555] / [i915#8821]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-6/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#6953]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#12247]) +13 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#12247] / [i915#9423]) +2 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation: - shard-glk: NOTRUN -> [SKIP][313] +438 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#12247]) +7 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html - shard-dg1: NOTRUN -> [SKIP][315] ([i915#12247]) +14 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-18/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#12247]) +18 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#12247] / [i915#6953]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#12247]) +3 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#12247] / [i915#6953] / [i915#9423]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-4/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][320] ([i915#12247]) +15 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#12247] / [i915#3555] / [i915#6953]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#12247] / [i915#6953]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][323] ([i915#12247] / [i915#6953]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#5354]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-18/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#12343]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#5354]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#9685]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#3828]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#9340]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][330] ([i915#8430]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#9519]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#9519]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-10/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][333] -> [SKIP][334] ([i915#9519]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][335] -> [SKIP][336] ([i915#9519]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@pm-caching: - shard-dg1: NOTRUN -> [SKIP][337] ([i915#4077]) +17 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@kms_pm_rpm@pm-caching.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#6524]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#6524]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html - shard-dg2: NOTRUN -> [SKIP][340] ([i915#6524] / [i915#6805]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-2/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][341] ([i915#6524]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-4/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk: NOTRUN -> [SKIP][342] ([i915#11520]) +13 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][343] ([i915#11520]) +8 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-snb2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#11520]) +5 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][345] ([i915#9808]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][346] ([i915#11520]) +5 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#12316]) +5 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#11520]) +8 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#11520]) +6 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-2/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html - shard-rkl: NOTRUN -> [SKIP][350] ([i915#11520]) +10 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][351] ([i915#9683]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][352] ([i915#9683]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#9683]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][354] ([i915#9683]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-17/igt@kms_psr2_su@page_flip-p010.html - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#4348]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-7/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#9732]) +14 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][357] ([i915#9732]) +23 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-7/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@pr-sprite-blt: - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#9688]) +4 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-5/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#1072] / [i915#9732]) +28 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][360] ([i915#1072] / [i915#9732]) +16 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-2/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +23 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@kms_psr@psr2-primary-mmap-cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][362] ([i915#9685]) +1 other test skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][363] ([i915#9685]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][364] ([i915#12755]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-8/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#12755]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-5/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][366] ([i915#5289]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][367] ([i915#5289]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-tglu: NOTRUN -> [SKIP][368] ([i915#5289]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#5289]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#5289]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][371] ([i915#5465]) +2 other tests fail [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-snb5/igt@kms_setmode@basic.html - shard-tglu: [PASS][372] -> [FAIL][373] ([i915#5465]) +2 other tests fail [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-tglu-8/igt@kms_setmode@basic.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-7/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [FAIL][374] ([i915#5465]) +5 other tests fail [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk4/igt@kms_setmode@basic@pipe-a-hdmi-a-2.html * igt@kms_sysfs_edid_timing: - shard-snb: NOTRUN -> [FAIL][375] ([IGT#160] / [i915#6493]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-snb5/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][376] ([i915#10959]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][377] ([i915#8623]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][378] ([i915#3555] / [i915#8808]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-3/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][379] ([i915#9906]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-dg1: NOTRUN -> [SKIP][380] ([i915#11920]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][381] ([i915#3555] / [i915#9906]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-13/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-mtlp: NOTRUN -> [SKIP][382] ([i915#8808] / [i915#9906]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][383] ([i915#9906]) +1 other test skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-5/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][384] ([i915#2437]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-6/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][385] ([i915#2437] / [i915#9412]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#2437]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-2/igt@kms_writeback@writeback-fb-id.html - shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#2437]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][388] ([i915#2437] / [i915#9412]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-10/igt@kms_writeback@writeback-pixel-formats.html - shard-glk: NOTRUN -> [SKIP][389] ([i915#2437]) +1 other test skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-glk8/igt@kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][390] ([i915#2437] / [i915#9412]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-12/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][391] ([i915#7387]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-8/igt@perf@global-sseu-config-invalid.html * igt@perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][392] ([i915#9100]) +1 other test fail [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-4/igt@perf@non-zero-reason.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][393] -> [FAIL][394] ([i915#11943]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-dg2-4/igt@perf_pmu@all-busy-idle-check-all.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@perf_pmu@all-busy-idle-check-all.html - shard-dg1: [PASS][395] -> [FAIL][396] ([i915#11943]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-17/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][397] +499 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-snb5/igt@perf_pmu@busy-accuracy-98.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][398] ([i915#3708]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-17/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][399] ([i915#3708]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-4/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][400] ([i915#3708]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-7/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][401] ([i915#9917]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][402] ([i915#9917]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][403] ([i915#9917]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][404] ([i915#12910]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][405] ([i915#12543] / [i915#5784]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-dg1-18/igt@gem_eio@reset-stress.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-18/igt@gem_eio@reset-stress.html * igt@gem_eio@wait-1us: - shard-mtlp: [ABORT][407] ([i915#13193]) -> [PASS][408] +2 other tests pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-mtlp-7/igt@gem_eio@wait-1us.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-3/igt@gem_eio@wait-1us.html * igt@i915_pm_freq_api@freq-suspend: - shard-dg1: [ABORT][409] -> [PASS][410] +1 other test pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-dg1-17/igt@i915_pm_freq_api@freq-suspend.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg1-14/igt@i915_pm_freq_api@freq-suspend.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][411] ([i915#5138]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2: - shard-rkl: [FAIL][413] ([i915#13566]) -> [PASS][414] +3 other tests pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: [FAIL][415] ([i915#13566]) -> [PASS][416] +1 other test pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-128x42.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][417] ([i915#1257]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-dg2-4/igt@kms_dp_aux_dev.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-dg2-10/igt@kms_dp_aux_dev.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [DMESG-WARN][419] ([i915#12917] / [i915#12964]) -> [PASS][420] +1 other test pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8220/shard-rkl-6/igt@kms_flip@absolute-wf_vblank-interruptible.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/shard-rkl-4/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@absolute-wf_vblank@a-vga1: - shard-snb: [INCOMPLETE][421] -> [PASS][422] +1 other tes == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12532/index.html [-- Attachment #2: Type: text/html, Size: 110447 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-02-03 20:48 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-03 2:46 [PATCH i-g-t v7 0/1] RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test Santhosh Reddy Guddati 2025-02-03 2:46 ` [PATCH i-g-t v7 1/1] tests/intel/kms_dirty_fbc: Add kms_dirty_fbc test for DIRTYFB ioctl with fbc Santhosh Reddy Guddati 2025-02-03 12:12 ` Govindapillai, Vinod 2025-02-03 20:48 ` Govindapillai, Vinod 2025-02-03 3:36 ` ✓ Xe.CI.BAT: success for RFC tests/intel/kms_frontbuffer_tracking: Introduce plane-fbc-dr test (rev7) Patchwork 2025-02-03 3:49 ` ✓ i915.CI.BAT: " Patchwork 2025-02-03 4:40 ` ✗ Xe.CI.Full: failure " Patchwork 2025-02-03 5:27 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox